2025-01-21 09:46:11 +00:00

10 lines
387 B
JavaScript

(function() { // by @allObjects
return {
read: function() { return !!global["\xff"].LED1; },
set: function() { this.write(1); },
reset: function() { this.write(0); },
write: function(v) { g.setColor((global["\xff"].LED1=!!v)?"#f00":g.theme.bg).fillCircle((g.getWidth()-20)/2,5,5);Bangle.setLCDPower(1); },
toggle: function() { this.write(!this.read()); }
};
})