-
Notifications
You must be signed in to change notification settings - Fork 0
/
geoData.h
27 lines (22 loc) · 1.04 KB
/
geoData.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/******************************************************************************
* *
* Program : TTGO_smart_watch *
* *
* Date : 06 / 06 / 2022 *
* *
* Programmer : Nikita Seliverstov (nikselko) *
* *
* *
******************************************************************************/
#include <TinyGPSPlus.h>
static const int RXPin = 15;
static const int TXPin = 13;
static const uint32_t GPSBaud = 9600;
class GeoData
{
public:
TinyGPSPlus gps;
String displayTimeDate();
String displayGps();
GeoData();
};