Serial Communication with SMS Modem (FONA) Posted on October 18, 2015 at June 27, 2016 by Elijah 2957 0 import serial ser = serial.Serial(port='/dev/ttyAMA0', baudrate=115200, timeout=1) cmd="AT\r" ser.write(cmd.encode()) msg=ser.read(64) print(msg) 123456 import serialser = serial.Serial(port='/dev/ttyAMA0', baudrate=115200, timeout=1)cmd="AT\r"ser.write(cmd.encode())msg=ser.read(64)print(msg) Keep Reading : GPS RESPONSE CODE ORDER Serial Commands used by our Satellite transciever. python to send a SMS message GPS AT Commands
Hello World Posted by Elijah - August 15, 2015 0 We use python to write all of our scripts. On our raspberry pi every python script starts with a shebang…
GPS RESPONSE CODE ORDER Posted by Elijah - October 18, 2015 0 in response to AT+CGPSINF=0 0 longitude 1 latitude 2 altitude 3 UTC Broadcast Time 4 TTFF Time To First Fix…
maserCycle.py – Cycle through lasers on servos and draw lines Posted by Elijah - March 17, 2017 0 This is the third of five articles on my 2017 laser science project "Rock, Paper, Lasers." This one was just…
Identify USB device and discover its name and port Posted by Elijah - October 17, 2015 0 Download latest PyUSB from : http://sourceforge.net/projects/pyusb/files/PyUSB%201.0/1.0.0-beta-2/pyusb-1.0.0b2.tar.gz/download Place file “pyusb-1.0.0b2.tar.gz” on your desktop gunzip <pyusb-1.0.0b2.tar.gz |tar xvfp - cd pyusb-1.0.0b2 sudo ./setup.py…
Wire camera to pi Posted by Elijah - October 24, 2015 0 Install camera software & configure pi One picture program One picture per blink cycle Print proto time on picture …