Waveshare ESP32 S3 Pico with SX1278 now works.

This commit is contained in:
Marcel
2025-02-28 15:09:06 +01:00
parent b4526aba3b
commit 089b168a92
3 changed files with 40 additions and 2 deletions

8
src/misc/gps.h Normal file
View File

@@ -0,0 +1,8 @@
#include <TinyGPSPlus.h>
#include <SoftwareSerial.h>
#define GPS_INTERVAL 5000 // ms
unsigned long last_gps = 0;
TinyGPSPlus gps;
SoftwareSerial gps_s(PIN_GPS_RX, PIN_GPS_TX);