If you add --noled to the end of the sudo ./install-service.sh --on-threshold 55 --off-threshold 40 --delay 2 when you run it the LED will be off.
`sudo ./install-service.sh --on-threshold 55 --off-threshold 40 --delay 2 --noled"
To find out if the fan is on its
fanshim.get_fan() # returns 1 for ‘on’, 0 for ‘off’
then set the LED accordingly
Fan Shim includes one RGB APA-102 LED.
Set it to any color with:
fanshim.set_light(r, g, b)
Arguments r, g and b should be numbers between 0 and 255 that describe the color you want.
For example, full red:
fanshim.set_light(255, 0, 0)