python to send a SMS message Posted on October 18, 2015 at June 27, 2016 by Elijah 4443 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
Boot and install Raspbian Posted by Elijah - August 15, 2015 0 Ok lets do this! After you see a rainbow this is the first screen you will see. Its called the…
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.
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…
SMS on PI Posted by Elijah - November 22, 2015 0 SMS on your Raspberry Pi… Adapted from : http://www.smssolutions.net/tutorials/gsm/receivesmsat/ This assumes you have set up your sim card, wired your…
Serial Communication with SMS Modem (FONA) Posted by Elijah - October 18, 2015 0 [crayon-67ed59c4677fe473685730/] Keep Reading : GPS RESPONSE CODE ORDER Serial Commands used by our Satellite transciever. python to send a SMS…