mirror of https://github.com/espruino/BangleApps
commit
0e3d69f06a
|
@ -8,3 +8,4 @@
|
||||||
0.09: Fix FIFO_FULL error
|
0.09: Fix FIFO_FULL error
|
||||||
0.10: Show satellites "in view" separated by GNS-system
|
0.10: Show satellites "in view" separated by GNS-system
|
||||||
0.11: Show number of packets received
|
0.11: Show number of packets received
|
||||||
|
0.12: Fix number of packets received
|
||||||
|
|
|
@ -61,6 +61,7 @@ function getMaidenHead(param1,param2){
|
||||||
return U[fLon]+U[fLat]+sqLon+sqLat+L[subLon]+L[subLat]+extLon+extLat;
|
return U[fLon]+U[fLat]+sqLon+sqLat+L[subLon]+L[subLat]+extLon+extLat;
|
||||||
}
|
}
|
||||||
function onGPS(fix) {
|
function onGPS(fix) {
|
||||||
|
dataCounter++;
|
||||||
if (lastFix.fix != fix.fix) {
|
if (lastFix.fix != fix.fix) {
|
||||||
// if fix is different, change the layout
|
// if fix is different, change the layout
|
||||||
if (fix.fix && leaveNofixLayout) {
|
if (fix.fix && leaveNofixLayout) {
|
||||||
|
@ -127,10 +128,10 @@ function onGPS(fix) {
|
||||||
layout.progress.label = "in view GP/BD/GL: " + nofGP + " " + nofBD + " " + nofGL;
|
layout.progress.label = "in view GP/BD/GL: " + nofGP + " " + nofBD + " " + nofGL;
|
||||||
// console.log("in view GP/BD/GL: " + nofGP + " " + nofBD + " " + nofGL);
|
// console.log("in view GP/BD/GL: " + nofGP + " " + nofBD + " " + nofGL);
|
||||||
layout.render(layout.progress);
|
layout.render(layout.progress);
|
||||||
layout.clear(layout.dataCounter);
|
|
||||||
layout.dataCounter.label = ++dataCounter;
|
|
||||||
layout.render(layout.dataCounter);
|
|
||||||
}
|
}
|
||||||
|
layout.clear(layout.dataCounter);
|
||||||
|
layout.dataCounter.label = dataCounter;
|
||||||
|
layout.render(layout.dataCounter);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (listenerGPSraw == 0 && !fix.fix) {
|
if (listenerGPSraw == 0 && !fix.fix) {
|
||||||
|
@ -157,6 +158,7 @@ Bangle.on('GPS', onGPS);
|
||||||
//Bangle.on('GPS-raw', onGPSraw);
|
//Bangle.on('GPS-raw', onGPSraw);
|
||||||
Bangle.setGPSPower(1, "app");
|
Bangle.setGPSPower(1, "app");
|
||||||
|
|
||||||
|
|
||||||
function exitApp() {
|
function exitApp() {
|
||||||
load();
|
load();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "gpsinfo",
|
"id": "gpsinfo",
|
||||||
"name": "GPS Info",
|
"name": "GPS Info",
|
||||||
"version": "0.11",
|
"version": "0.12",
|
||||||
"description": "An application that displays information about latitude, longitude, altitude, speed, satellites and time",
|
"description": "An application that displays information about latitude, longitude, altitude, speed, satellites and time",
|
||||||
"icon": "gps-info.png",
|
"icon": "gps-info.png",
|
||||||
"type": "app",
|
"type": "app",
|
||||||
|
|
Loading…
Reference in New Issue