python to send a SMS message Posted on October 18, 2015 at June 27, 2016 by Elijah 5020 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
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…
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…
Read email from a system pipe into python Posted by Elijah - August 15, 2016 0 #!/usr/local/bin/python import sys import email full_msg = “” for line in sys.stdin full_msg += line msg = email.message_from_string(full_msg) to =…
MakeZine ran an article on my 2017 Laser Science Project Posted by Elijah - August 26, 2017 0 On June 9, 2017, My article on everything that went right, wrong, and totally sideways on my laser cutting experiment…
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-6870f27f1c60c888720294/] [crayon-6870f27f1c613002615054/] [crayon-6870f27f1c617227769202/] Keep Reading : Serial Communication with…