The globe LED can be controlled from the router part/ the main board.
Example in Lua code:
-- lights the globe led
local function led_globe_on()
os.execute("gpioctl clear 5 > /dev/null")
end
-- switches the led off
local function led_globe_off()
os.execute("gpioctl set 5 > /dev/null")
end
Regards,
Jan-Willem