I was wanting to know if doing that is acceptable and not going to brake anything.
I have since found out that after reboot the file is re-attributed and so doesn't work.
To get it working I have to run a script that sets the attributes to allow me to write to the file then echo 0 > filename (I'm not going to write out the whole path)
Ok, the script I run from within Node-red
#!/bin/bash
#-----------------------------------
# Allow turning off of ACTIVITY LED
#-----------------------------------
sudo chmod +666 /sys/class/leds/led1/brightness
sleep 2
echo 0 > /sys/class/leds/led1/brightness
Via an exec node.
Yeah, ok. I could have just done the first line with sudo..... Swings and roundabouts.