Serial Communication with SMS Modem (FONA) Posted on October 18, 2015 at June 27, 2016 by Elijah 2995 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
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…
Serial Commands used by our Satellite transciever. Posted by Elijah - October 17, 2015 0 We will need the crc16 python code library : http://code.google.com/p/pycrc16/downloads [crayon-681347f96923d737940134/] [crayon-681347f969249593445328/] [crayon-681347f96924c599259238/] Keep Reading : Serial Communication with…
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 …
Rotate Raspberry Pi Touchscreen Display 180d Posted by Elijah - July 1, 2016 0 Problem : our 7″ touchscreen is upside-down if you want to rest it on it’s holder. We need to edit…
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…