Serial Communication with SMS Modem (FONA) Posted on October 18, 2015 at June 27, 2016 by Elijah 3338 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
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…
Make Them Blink Posted by Elijah - November 15, 2015 0 You will need: 4 complete sets of LED’s and wires (see last lesson) The first thing you will need to…
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…
Super Simple Google AIY Surveillance Camera Posted by Elijah - August 31, 2018 0 In may 2018, durning the bay area Maker Faire in San Francisco, I bought a google AIY Vision Kit. I…
while loop Posted by Elijah - October 18, 2015 0 [crayon-68f1895bb27a5546404645/] Keep Reading : Pi Camera Resolution Fix Hello World LED Blinking Wire camera to pi