python to send a SMS message Posted on October 18, 2015 at June 27, 2016 by Elijah 4447 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…
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 ? –…
Remote ssh connect from iPad P.C. and laptop using dynamic ip address Posted by Elijah - October 25, 2015 2 Keep Reading : Add Clock Via i2c Chain connect pressure/temperature module i2c on clock module Hello World LED Blinking
Wire camera to pi Posted by Elijah - October 24, 2015 0 Install camera software & configure pi One picture program One picture per blink cycle Print proto time on picture …
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-67ee7dd34f929742982804/] [crayon-67ee7dd34f930854704248/] [crayon-67ee7dd34f933904865536/] Keep Reading : Serial Communication with…