From 86aa9e26182ee4b8c0e5332c3bdfb634e0cdb000 Mon Sep 17 00:00:00 2001 From: VynxxZ <86349208+VynxxZ@users.noreply.github.com> Date: Wed, 23 Jun 2021 17:00:57 +0800 Subject: [PATCH] Update TinyGPS.h I cannot proceed to my project with the errors. --- src/TinyGPS.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/TinyGPS.h b/src/TinyGPS.h index 0711907..819ecb7 100644 --- a/src/TinyGPS.h +++ b/src/TinyGPS.h @@ -56,6 +56,14 @@ class TinyGPS TinyGPS(); bool encode(char c); // process one character received from GPS TinyGPS &operator << (char c) {encode(c); return *this;} + TinyGPSLocation location; + TinyGPSDate date; + TinyGPSTime time; + TinyGPSSpeed speed; + TinyGPSCourse course; + TinyGPSAltitude altitude; + TinyGPSInteger satellites; + TinyGPSDecimal hdop; // lat/long in MILLIONTHs of a degree and age of fix in milliseconds // (note: versions 12 and earlier gave lat/long in 100,000ths of a degree.