1
0
This repository has been archived on 2025-11-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
contaminus/hardware/include/GPS.hpp

12 lines
129 B
C++

#include "TinyGPSPlus.h"
#define RX 26
#define TX 14
struct GPSData_t
{
float lat;
float lon;
};
GPSData_t GPS_Read();