2020-03-05 05:48:50 +00:00
|
|
|
/* jshint esversion: 6 */
|
2020-03-04 19:59:27 +00:00
|
|
|
(() => {
|
2020-05-23 21:32:33 +00:00
|
|
|
function draw() {
|
2021-05-28 13:38:14 +00:00
|
|
|
var id = NRF.getAddress().substr().substr(12).split(":");
|
2021-06-11 10:15:18 +00:00
|
|
|
g.reset().setColor(0, 0.49, 1).setFont("6x8", 1);
|
2020-05-23 21:32:33 +00:00
|
|
|
g.drawString(id[0], this.x+2, this.y+4, true);
|
|
|
|
g.drawString(id[1], this.x+2, this.y+14, true);
|
|
|
|
}
|
|
|
|
WIDGETS["widid"] = { area:"tr", width:16, draw: draw };
|
2020-03-05 05:50:32 +00:00
|
|
|
})();
|