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
127 B
C++

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