python to send a SMS message Posted on October 18, 2015 at June 27, 2016 by Elijah 5232 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…
Serial Communication with SMS Modem (FONA) Posted by Elijah - October 18, 2015 0 [crayon-68cc3013f2890030757946/] Keep Reading : GPS RESPONSE CODE ORDER Serial Commands used by our Satellite transciever. python to send a SMS…
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…
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-68cc3013f2ad4936940690/] [crayon-68cc3013f2adb194949805/] [crayon-68cc3013f2ade442375337/] Keep Reading : Serial Communication with…
GPS AT Commands Posted by Elijah - October 18, 2015 0 AT+CGPSPWR? if off : AT+CGPSPWR=1 Get status : AT+CGPSSTATUS? Get GPS : AT+CGPSINF RESET CODES : What mode ? –…