Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
NAV-PVT newly added functions demonstrated in example and keywords.tx…
…t corrected.
  • Loading branch information
balamuruganky committed Nov 4, 2020
commit 436486b84de1f90d62f225d5b90760363a8a6781
27 changes: 26 additions & 1 deletion examples/Example13_PVT/Example1_AutoPVT/Example1_AutoPVT.ino
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,32 @@ void loop()
int PDOP = myGPS.getPDOP();
Serial.print(F(" PDOP: "));
Serial.print(PDOP);
Serial.print(F(" (10^-2)"));
Serial.print(F(" (10^-2)"));

int nedNorthVel = myGPS.getNedNorthVel();
Serial.print(F(" VelN: "));
Serial.print(nedNorthVel);
Serial.print(F(" (mm/s)"));

int nedEastVel = myGPS.getNedEastVel();
Serial.print(F(" VelE: "));
Serial.print(nedEastVel);
Serial.print(F(" (mm/s)"));

int nedDownVel = myGPS.getNedDownVel();
Serial.print(F(" VelD: "));
Serial.print(nedDownVel);
Serial.print(F(" (mm/s)"));

int verticalAccEst = myGPS.getVerticalAccEst();
Serial.print(F(" VAccEst: "));
Serial.print(verticalAccEst);
Serial.print(F(" (mm)"));

int horizontalAccEst = myGPS.getHorizontalAccEst();
Serial.print(F(" HAccEst: "));
Serial.print(horizontalAccEst);
Serial.print(F(" (mm)"));

Serial.println();
} else {
Expand Down
10 changes: 5 additions & 5 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ getGroundSpeed KEYWORD2
getHeading KEYWORD2
getPDOP KEYWORD2
getTimeOfWeek KEYWORD2
getHorizontalAccEst KEYWORD2
getVerticalAccEst KEYWORD2
getNedNorthVel KEYWORD2
getNedEastVel KEYWORD2
getNedDownVel KEYWORD2
getHorizontalAccEst KEYWORD2
getVerticalAccEst KEYWORD2
getNedNorthVel KEYWORD2
getNedEastVel KEYWORD2
getNedDownVel KEYWORD2

setPortOutput KEYWORD2
setPortInput KEYWORD2
Expand Down