**** BEGIN LOGGING AT Thu Oct 19 03:00:02 2017 Oct 19 03:12:09 config-pin P8_XX uart Oct 19 03:12:39 Then, in the software, call on your specific UART, e.g. UART1, UART2, or whatever. Oct 19 03:12:47 mm, that could work too but I got it working through more boot/uEnv.txt changes. Oct 19 03:12:54 Oh. Oct 19 03:12:55 Okay. Oct 19 03:13:12 Oh...change the cape overlay. Oct 19 03:18:26 What UART are you using? Oct 19 03:18:56 Let me see some software and the UART you are using in this software. I can probably pick one out of the lineup in our cape overlay sections. Oct 19 03:24:28 Kitlith: Look here: https://github.com/beagleboard/bb.org-overlays Oct 19 03:24:38 Yes, I've got it working. Oct 19 03:24:43 Cool! Oct 19 03:24:56 " mm, that could work too but I got it working through more boot/uEnv.txt changes." Oct 19 03:30:06 did you change that section to uncomment and to add BB-UARTx? Oct 19 03:31:04 the bone_capemgr section? Oct 19 03:32:30 set_, bone_capemgr isn't working at all because uboot overlays are enabled. Oct 19 03:32:41 so instead I did a uboot overlay. Oct 19 03:32:46 otherwise identical. Oct 19 03:32:59 Oh...okay. I thought you could have taken another route. Oct 19 03:33:21 So, do you use overlays a lot? Oct 19 03:41:57 I finally figured out how to tell the damn temp. in Python on the BBB. It took one more line. I was out of a "one-more-line" software package. Oct 19 03:42:02 Yea and boo! Oct 19 03:58:00 dudes and dudets... Oct 19 03:59:18 How would I go about saving my data outside of pusher or another IoT site w/ Python software? I tried to write to a file but came up empty. Oct 19 04:07:47 ... Oct 19 04:08:03 I have nothing to go on except some older software. I cannot find this junk in the Python Doc. yet. Oct 19 04:18:22 ... Oct 19 04:18:45 Luckily! The Python doc. has some "search" query. Boy! Oct 19 04:41:41 ... Oct 19 06:04:47 I got that...yea! Oct 19 06:04:53 read me a file, mookey! Oct 19 06:04:58 BBB! Oct 19 06:19:25 lol Oct 19 06:19:52 Hey bg: Do you know how to write files in Python on our Linux Distro? Oct 19 06:20:19 what distro? Oct 19 06:20:25 Sorry...w/ software, i.e. to read over the file for later. Oct 19 06:20:27 Debian! Oct 19 06:21:01 Get this pastebin.com. Please hold! Oct 19 06:21:21 i can, but i'm at work right now. Oct 19 06:22:18 Oh. Damn it, man. Oct 19 06:22:44 Well, look at this software and let me know what you think: https://pastebin.com/TgDLZxHr. Oct 19 06:23:40 ok let me check, and what are you trying to achieve with this? Oct 19 06:23:44 ... Oct 19 06:23:45 give me a lead man Oct 19 06:24:04 This is to read a temp. sensor and record the info. Oct 19 06:24:48 I got the software, well part of this software, from various sources: Monk, Richardson, and Adafruit. Oct 19 06:25:01 Oh and some page that I forgot to mention. Oct 19 06:25:09 and what's the problem with your current code? Oct 19 06:25:26 Nothing. It records! I just wanted to get your feedback. Oct 19 06:25:49 ah ok... haha waits Oct 19 06:25:56 Cool beans. Waiting! Oct 19 06:27:51 what's with this if('w'): ? it will result to always true Oct 19 06:28:14 Oh, I thought it would be nice. I am not perfect. Oct 19 06:28:20 What should it be? Oct 19 06:28:29 just commenting here, :D Oct 19 06:28:32 Oh. Oct 19 06:29:09 I tried out a bunch of scenarios. Nothing would read my file and then spitoon, the damn if('w'): came to mind because... Oct 19 06:29:18 Because of other software I have written. Oct 19 06:29:25 what version of python are you using? Oct 19 06:29:31 2.7.x Oct 19 06:29:48 I can change it. Oct 19 06:30:00 i.e. the software. Oct 19 06:31:24 Hell, it could be an error. I can check real quickly. Oct 19 06:31:47 it would be nice if you can check if the file exists then append otherwise create Oct 19 06:32:20 I do not know how to do that yet. Oct 19 06:33:24 See here...I get my reading(s) in the file set so far. That file, loveAndTemp.py, writes and it shows what has been written. Oct 19 06:33:41 sorry. loveAndTemp.txt. Oct 19 06:33:50 ... Oct 19 06:34:13 I tested it out w/out the 'w' and, you guessed it, it works just fine. Oct 19 06:34:43 ISSUE #1: I get only a couple of readings instead of each read, every time. Oct 19 06:34:47 ohkey, sorry i can't comment your code right now, need to go to work. but you can take a look at this https://stackoverflow.com/questions/20432912/writing-to-a-new-file-if-it-doesnt-exist-and-appending-to-a-file-if-it-does Oct 19 06:35:02 bg: Thank you! Oct 19 06:35:30 you need to remove the f.write Oct 19 06:35:32 one Oct 19 06:35:43 because you're having two of them Oct 19 06:35:56 Oh? I read something from 2014, i.e you are probably right. Oct 19 06:35:57 Oh. Oct 19 06:36:16 I have three readings per line. Oct 19 06:36:49 The millivolts, the celsius, and the fahrenheit are all read on one line at a time. Oct 19 06:37:09 ... Oct 19 06:37:17 Thank you, anyway. Sorry to harass you at work. Oct 19 06:37:19 just add a new line \n in your f.write Oct 19 06:37:53 Otay...will do. Oh, so that will bring the lines from one line to three lines. Cool! Oct 19 06:38:17 f.write('mv=%d C=%d F=%d \n' % (millivolts, temp_c, temp_f)) Oct 19 06:38:28 Oh. Oct 19 06:38:35 Okay. i will do it and see what happens. Oct 19 06:38:44 okey, i'm out. Oct 19 06:38:48 ...many lined Temp. reading on the way. Oct 19 06:38:50 Later! Oct 19 07:23:17 hi guys, i have a couple of questions Oct 19 07:25:03 1) when i "halt" the BBB the state of pins remains fixed. I was expecting they shut all down when the BBB goes down. Is there a way to achieve that ? I mean, a way, to reset all pin states on shutdown ? Oct 19 07:27:58 2) For a project (the first project!) unfortunately i need to cover USR leds, in such a way I can not understand well when the BBB is running. So I would like to show heartbeat on an external LED. But, where does the USR0 ( i that is the heartbeat led) takes its data from ? Oct 19 07:44:41 nmingott: /sys/class/led Oct 19 07:45:15 there is a trigger file Oct 19 07:45:27 inside each led folder Oct 19 07:49:21 Humpelstilzchen: I also was looking for that Oct 19 07:49:42 let me i second, to check again Oct 19 07:52:31 I don't have it:gpio50/ Oct 19 07:52:31 gpio50/edge Oct 19 07:52:31 gpio50/power Oct 19 07:52:31 gpio50/power/control Oct 19 07:52:36 gpio50/power/async Oct 19 07:52:39 gpio50/power/runtime_enabled Oct 19 07:52:42 gpio50/power/runtime_active_kids Oct 19 07:52:46 gpio50/power/runtime_active_time Oct 19 07:52:49 gpio50/power/autosuspend_delay_ms Oct 19 07:52:52 gpio50/power/runtime_status Oct 19 07:52:52 gpio50/power/runtime_usage Oct 19 07:52:57 gpio50/power/runtime_suspended_time Oct 19 07:53:00 gpio50/value Oct 19 07:53:03 gpio50/active_low Oct 19 07:53:06 gpio50/device Oct 19 07:53:08 nmingott: plaste don't paste in irc, use a pastebin service Oct 19 07:53:09 gpio50/subsystem Oct 19 07:53:12 gpio50/uevent Oct 19 07:53:16 gpio50/direction Oct 19 07:53:19 Oct 19 07:53:22 sorry for the long list Oct 19 07:53:27 also this looks like gpio subsystem not led Oct 19 07:54:01 sorry, i am not used to IRC, i will get info about "pastebin" Oct 19 07:54:10 If you want to configure a led on a gpio as led you need to add it to the devicetree Oct 19 07:54:48 umm Oct 19 07:57:40 interesting ... now i have a reason to study the .dto thing ;) Oct 19 08:27:58 I solved point (1), all pins go down if I run "shutdown -t now". I was using "halt", before, in that case they do not go down. Oct 19 10:30:27 hi, i can't find the bone_capemgr slots Oct 19 10:30:45 debian 9.2 iot Oct 19 10:31:25 not in /sys/devices/platform/bone_capemgr/ Oct 19 10:51:12 Morning Oct 19 10:51:38 Helping grandson with BB blue and EduMic robot Oct 19 10:51:57 getting this error Oct 19 10:52:00 Your code is running at http://localhost. Important: use os.getenv(PORT, 8080) as the port and os.getenv(IP, 0.0.0.0) as the host in your scripts! Oct 19 10:52:57 How do i resolve the host/port issue please Oct 19 10:53:15 all help and abuse appreciate Oct 19 12:06:49 rc_test_motors -s 1 sweeps the motors back and forth as it should but balance.py still gives host error Oct 19 16:14:37 Hi all - just learning about the BBBlue. In comparing the board visual layout ( https://www.element14.com/community/dtss-images/uploads/devtool/diagram/large/BeagleBone_Blue.png ) to the pinout ( https://github.com/beagleboard/beaglebone-blue/blob/master/BeagleBone_Blue_brd.pdf ) . Are the "4 quadrature encoder inputs" on the image the same as eQEP encoder Plugs in the pinout? Oct 19 17:00:01 sounds plausible, lemme see Oct 19 17:02:46 you probably meant to link something different Oct 19 17:03:16 that's not the pinout but the board files :) Oct 19 17:05:26 yeah, E1-E4 ... based on schematic those are apparently the three eQEP instances and two PRU pins (to make another quadrature input using PRU firmware) Oct 19 17:11:11 Thanks zmatt! Oct 19 17:54:59 Hello , I just bought the Beaglebone black and I am using Rbeaglebone blackos Indigo using ubunto 14.04. I would like know how to set up the Oct 19 17:55:53 Hello , I just bought the Beaglebone black and I am Indigo using ubunto 14.04. I would like know how to set up the* Oct 19 21:34:38 Are there any people in here w/ resources on AT commands for XBee and the BBB? Oct 19 21:34:52 <<<< still researching Oct 19 22:20:30 I just found a new cape. The NimbeLink Cape. That sucker is bad. Oct 20 01:08:42 For that idea on XBee and AT Commands, I found a book. "Forget about it!" **** ENDING LOGGING AT Fri Oct 20 03:00:01 2017