You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to display the number of satellites on the "GPS-Data" screen. I can edit the screen.
But I don't have the variable "number of satellites". Do you know the name of the variable "number of satellites"?
Thank you
The text was updated successfully, but these errors were encountered:
So this is not for the sonde’s GPS info, but the local GPS position of the TTGO, right (that is what the GPS-Data screen is good for)?
Currently there is no code to make that available for the screen, one would need to add a view lines to drawGPS in Display.c
Something like
case ‘#’:
snprintf(buf, 3, “%2d”, gpsPos.sat);
drawString(de, bug);
break;
Then in the screen file you can use ‘G#'
Best,
Hansi
I would like to display the number of satellites on the "GPS-Data" screen. I can edit the screen.
But I don't have the variable "number of satellites". Do you know the name of the variable "number of satellites"?
Thank you
The text was updated successfully, but these errors were encountered: