Hello.
I cannot do
io.setLedColor(io.Led.LTE, io.Color.GREEN);
io.led(io.Led.LTE, true);
But when I execute
io.setLedColor(io.Color.GREEN);
io.led(true);
io.Led.LTE works.
Hello.
I cannot do
io.setLedColor(io.Led.LTE, io.Color.GREEN);
io.led(io.Led.LTE, true);
But when I execute
io.setLedColor(io.Color.GREEN);
io.led(true);
io.Led.LTE works.
It looks like that there is a bug in the firmware. If you want to light up “LTE” segment you may use 0
as workaround:
io.setLedColor(0, io.Color.GREEN);
io.led(0, true);