UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


code:gps_php_parser

Differences

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

Link to this comparison view

Next revision
Previous revision
code:gps_php_parser [2009/02/08 22:18] – created joshatkinscode:gps_php_parser [2009/02/08 22:54] (current) – tx, rx joshatkins
Line 1: Line 1:
 +===== Arduino (C-like) - transmission =====
 +<code>
 +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)&&(i>6)) {
 +      Serial.print(incomingByte);
 +    }
 +    i++;
 +  }
 +  // end: gps
 +}
 +</code>
 +
 +===== PHP - receive =====
 +
 <code> <code>
 <script type="text/javascript"> <script type="text/javascript">
code/gps_php_parser.1234131506.txt.gz · Last modified: 2009/02/08 22:18 by joshatkins

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki