Search found 5 matches

by Bionaught
Mon Apr 30, 2018 2:32 am
Forum: General Discussion and Questions
Topic: Help uart.read() with \r\n
Replies: 6
Views: 5986

Re: Help uart.read() with \r\n

I thought as much. Thanks for the quick response, confirming this. I guess the code I end up with is gonna be really long and messy before I'm any where even close to done reaching my goal. I'm glad this is just my hobby and not my job, with deadlines.
by Bionaught
Sun Apr 29, 2018 8:16 pm
Forum: General Discussion and Questions
Topic: Help uart.read() with \r\n
Replies: 6
Views: 5986

Help uart.read() with \r\n

I'm getting the serial data I want from a medical device, but uart.readline is returning on \newline & \carriage return, as shown here. I'd like it to just do this on new lines and not for \n & \r. I've tried every combination of parameters in uart.readline('\n\r'), uart.readline('\n) uart.readline(...
by Bionaught
Sun Apr 22, 2018 6:59 am
Forum: General Discussion and Questions
Topic: Problem using upip and micropip.py
Replies: 5
Views: 7987

Re: Problem using upip and micropip.py

Awesome, I'm able to drag myself a little further up my steep learning curve again. You are right......python --version returns ->Python 2.7.6 Explicitly pointing at python3 and using micropip works. (python3 -m micropip install -p ~/esp/micropip/uasyncio/ micropython-uasyncio) Thankyou again python...
by Bionaught
Thu Apr 19, 2018 8:15 am
Forum: General Discussion and Questions
Topic: Problem using upip and micropip.py
Replies: 5
Views: 7987

Re: Problem using upip and micropip.py

Hope they get it sorted soon! I tried using your micropip in the mean time and am getting this error shown below graham@graham-SonyVaio ~/esp/images $ sudo python ./micropip.py install -p ~/ micropython-uasyncio File "./micropip.py", line 211 pkg_spec, e), file=sys.stderr) ^ SyntaxError: invalid syn...
by Bionaught
Sun Apr 08, 2018 5:11 pm
Forum: ESP32 boards
Topic: GPS parsing using UART
Replies: 11
Views: 14408

Re: GPS parsing using UART

Actual managed to get this working. One more step closer, to capturing data from Nutricial Enteral Nutrician pumps at work in the hospital I work at. Thanks Peter