Just wanted to add my exact lines in my crontab - you can add these to yours in the advanced setting to automatically turn off the LED’s and turn them back on in the morning.

# LEDs off
*/5 15-23 * * * find /sys/devices/platform/leds-gpio/leds \! -path '*usbpow*' -name brightness -exec sh -c 'echo 0 > {}' \;
# LEDs on
0 0 * * * find /sys/devices/platform/leds-gpio/leds \! -path '*usbpow*' -name brightness -exec sh -c 'echo 255 > {}' \; && /etc/init.d/led start

It runs the LED off job every 5 minutes. This is so in case the router reboots it will turn the lights off again, but still give you enough time to make sure everything is connecting right by looking at the LED’s before turning them off again automatically.

The hour is the 2nd number on each uncommented line (no # in front). In my example 15-23 would be 3pm-11pm. My router runs in GMT timezone. Adjust these hours to your needs.

It then turns them back on at midnight (again in GMT).

1 Like