code:gps_php_parser
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
code:gps_php_parser [2009/02/08 22:18] – created joshatkins | code:gps_php_parser [2009/02/08 22:54] (current) – tx, rx joshatkins | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Arduino (C-like) - transmission ===== | ||
+ | < | ||
+ | int i; | ||
+ | char incomingByte; | ||
+ | boolean skip; | ||
+ | |||
+ | void setup() { | ||
+ | Serial.begin(4800); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // start: gps | ||
+ | if(Serial.available()) { | ||
+ | incomingByte = Serial.read(); | ||
+ | if(incomingByte==36) { | ||
+ | i=0; | ||
+ | skip=false; | ||
+ | } | ||
+ | if(incomingByte==86) { | ||
+ | skip=true; | ||
+ | } | ||
+ | if((!skip)&& | ||
+ | Serial.print(incomingByte); | ||
+ | } | ||
+ | i++; | ||
+ | } | ||
+ | // end: gps | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== PHP - receive ===== | ||
+ | |||
< | < | ||
<script type=" | <script type=" |
code/gps_php_parser.1234131506.txt.gz · Last modified: 2009/02/08 22:18 by joshatkins