syslog Fix

This commit is contained in:
richonguzman 2024-05-31 15:09:28 -04:00
parent d3ebe43ebb
commit e133d50cd9

View file

@ -76,7 +76,7 @@ namespace GPS_Utils {
String GPSPacket = packet.substring(packet.indexOf(":!")+3);
String encodedLatitude = GPSPacket.substring(0,4);
String encodedLongtitude = GPSPacket.substring(4,8);
String comment = GPSPacket.substring(13);
String comment = GPSPacket.substring(12);
int Y1 = int(encodedLatitude[0]);
int Y2 = int(encodedLatitude[1]);