Serial Communication with SMS Modem (FONA) Posted on October 18, 2015 at June 27, 2016 by Elijah 2906 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
maserFire.py – Fire lasers with transistors and python on a Raspberry Pi 3 Posted by Elijah - March 17, 2017 0 Part two of five, "Rock, Paper, Lasers" 2017 Science Project. This is the basic laser python code.
Phase One Posted by Elijah - August 15, 2015 2 “Phase One” is where we learned basic raspberry pi use. we started with the unboxing of our model 2 B raspberry…
Updated GPS & Battery commands for Sim808 / FONA Shield. Also works for LoNet Sim808 Posted by Elijah - October 23, 2015 0 Enable Charging Function It is recommended to execute this process when first time to use the module. In the Serial…
Unboxing Posted by Elijah - August 15, 2015 5 First I unboxed my raspberry pi and took it out of it’s bag. The first thing I thought when I…
Turn string into array with split Posted by Elijah - October 18, 2015 0 textWithCommas = “bee,apple,pear,dog,carrot,robot” wordList = textWithCommas.split(“,”) print “the second item is : ” + textWithCommas[1] Keep Reading : Identify USB…