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

10 lines
117 B
C++

#include "TinyGPSPlus.h"
struct GPSData_t
{
float lat;
float lon;
};
void GPS_Init();
GPSData_t GPS_Read();