You are reading a single comment by @edb and its replies.
Click here to read the full conversation.
-
I've added the global.GB function to handle my type in the lcars app js:
global.GB = (_GB => e => { switch (e.t) { case "bangleOSM": if(e.turnIn || e.turnNow){ turnAlert(e); } else if (e.turnType) { turn = e; drawNavInfo(turn); } else { turn = null; drawPosition0(); } break; default: // pass on other events if (_GB) setTimeout(_GB, 0, e); } })(global.GB);
How did you read the data in Bangle.js LCARS Clock end?