This repository was archived by the owner on Jan 28, 2021. It is now read-only.
File tree 2 files changed +31
-6
lines changed
examples/Example13_PVT/Example1_AutoPVT 2 files changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,32 @@ void loop()
78
78
int PDOP = myGPS.getPDOP ();
79
79
Serial.print (F (" PDOP: " ));
80
80
Serial.print (PDOP);
81
- Serial.print (F (" (10^-2)" ));
81
+ Serial.print (F (" (10^-2)" ));
82
+
83
+ int nedNorthVel = myGPS.getNedNorthVel ();
84
+ Serial.print (F (" VelN: " ));
85
+ Serial.print (nedNorthVel);
86
+ Serial.print (F (" (mm/s)" ));
87
+
88
+ int nedEastVel = myGPS.getNedEastVel ();
89
+ Serial.print (F (" VelE: " ));
90
+ Serial.print (nedEastVel);
91
+ Serial.print (F (" (mm/s)" ));
92
+
93
+ int nedDownVel = myGPS.getNedDownVel ();
94
+ Serial.print (F (" VelD: " ));
95
+ Serial.print (nedDownVel);
96
+ Serial.print (F (" (mm/s)" ));
97
+
98
+ int verticalAccEst = myGPS.getVerticalAccEst ();
99
+ Serial.print (F (" VAccEst: " ));
100
+ Serial.print (verticalAccEst);
101
+ Serial.print (F (" (mm)" ));
102
+
103
+ int horizontalAccEst = myGPS.getHorizontalAccEst ();
104
+ Serial.print (F (" HAccEst: " ));
105
+ Serial.print (horizontalAccEst);
106
+ Serial.print (F (" (mm)" ));
82
107
83
108
Serial.println ();
84
109
} else {
Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ getGroundSpeed KEYWORD2
53
53
getHeading KEYWORD2
54
54
getPDOP KEYWORD2
55
55
getTimeOfWeek KEYWORD2
56
- getHorizontalAccEst KEYWORD2
57
- getVerticalAccEst KEYWORD2
58
- getNedNorthVel KEYWORD2
59
- getNedEastVel KEYWORD2
60
- getNedDownVel KEYWORD2
56
+ getHorizontalAccEst KEYWORD2
57
+ getVerticalAccEst KEYWORD2
58
+ getNedNorthVel KEYWORD2
59
+ getNedEastVel KEYWORD2
60
+ getNedDownVel KEYWORD2
61
61
62
62
setPortOutput KEYWORD2
63
63
setPortInput KEYWORD2
You can’t perform that action at this time.
0 commit comments