UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


code:arduino_gps_parser

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

code:arduino_gps_parser [2009/02/07 12:59] – created joshatkinscode:arduino_gps_parser [2009/02/07 13:00] (current) – full code joshatkins
Line 1: Line 1:
-<code>   if(incomingByte==86) {+<code>char incomingByte; 
 +int i; 
 +boolean skip; 
 + 
 +void setup() { 
 +  Serial.begin(4800); 
 +
 + 
 +void loop() { 
 +  if(Serial.available()) { 
 +    incomingByte = Serial.read(); 
 +    if(incomingByte==86) {
       skip = true;       skip = true;
     }     }
Line 65: Line 76:
       }       }
       i++;       i++;
-    }</code>+    } 
 +  } 
 +
 + 
 +</code>
code/arduino_gps_parser.1234011591.txt.gz · Last modified: 2009/02/07 12:59 by joshatkins

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki