GPS RESPONSE CODE ORDER Posted on October 18, 2015 at June 27, 2016 by Elijah 2297 0 in response to AT+CGPSINF=0 0 longitude 1 latitude 2 altitude 3 UTC Broadcast Time 4 TTFF Time To First Fix 5 num Number of satellites 6 speed Speed Over Ground 8 course Heading Over Ground (degrees of compass where 0 = N) Keep Reading : Serial Communication with SMS Modem (FONA) GPS AT Commands Serial Commands used by our Satellite transciever. python to send a SMS message
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
Rotate Raspberry Pi Touchscreen Display 180d Posted by Elijah - July 1, 2016 0 Problem : our 7″ touchscreen is upside-down if you want to rest it on it’s holder. We need to edit…
LED Blinking Posted by Elijah - August 15, 2015 0 You will need the following things: Raspberry pi configured (see previos lessons) 5 Volt LED bulb(s) 2 jumper wires m/f…
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…
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 =…