python to send a SMS message Posted on October 18, 2015 at June 27, 2016 by Elijah 5164 0 ser.write('AT+CMGF=1\r\n') ser.write('AT+CMGS=') ser.write("555-555-5555") ser.write('\r\n') ser.write("This is a text message") ser.write(ascii.ctrl('z')) ser.close() 1234567 ser.write('AT+CMGF=1\r\n')ser.write('AT+CMGS=')ser.write("555-555-5555")ser.write('\r\n')ser.write("This is a text message")ser.write(ascii.ctrl('z'))ser.close() Keep Reading : Serial Communication with SMS Modem (FONA) GPS RESPONSE CODE ORDER Serial Commands used by our Satellite transciever. GPS AT Commands
Pi Camera Resolution Fix Posted by Elijah - October 24, 2015 0 [crayon-68ae8efb11b03975080086/] Keep Reading : Wire camera to pi while loop Hello World Remote ssh connect from iPad P.C. and laptop…
Raspi-config Posted by Elijah - August 15, 2015 0 First you will need to open terminal. Terminal is located at the top of your raspberry pi screen. Terminal is…
Serial Communication with SMS Modem (FONA) Posted by Elijah - October 18, 2015 0 [crayon-68ae8efb0ee78632566025/] Keep Reading : GPS RESPONSE CODE ORDER Serial Commands used by our Satellite transciever. python to send a SMS…
servoTurn.Py – a simple python script to turn a servo on a raspberry pi 3 Posted by Elijah - March 17, 2017 0 Turn a servo using a Raspberry Pi 3 GPIO using Python. Picks up where the Adafruit servo build instructions stop.…
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…