Skip to content

Commit

Permalink
Change type of altitude
Browse files Browse the repository at this point in the history
  • Loading branch information
wero1414 committed Jan 30, 2019
1 parent e2d6b9c commit 1dbe6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware_Arduino/CatSat1/CatSat1.ino
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void gpsread(void){
Todo += ",";
Todo += String(fix.longitude(), 6);
Todo += ",";
Todo += String(fix.alt.whole, 6);
Todo += String(fix.altitude(), 6);
Todo += ",";
Todo += String(fix.speed_kph(), 6);
Serial.print(fix.latitude(), 6);
Expand Down

0 comments on commit 1dbe6a6

Please sign in to comment.