Is there a way to turn off the RGB LEDs on the board? They are very bright and do not signal anything useful afaik. Would be nice to use them in some way or turn them off altogether.
Edit: I use Arch, so I’m searching for some terminal command or config in some file, maybe. Or is it a bootrom thing?
Thx!
Is there a howto for the GPIO handling on the W2? I tried by installing RPi.GPIO but when I then import RPi.GPIO in a python script it gives me the error:
This module can only be run on a Raspberry Pi!
and I have not figured out yet how else the GPIO is handled.
The path from script1 in this R2-GPIO-Howto is not present on my system and script2 gives me the error
i’m not sure i’ve seen an explicit howto on accessing the gpio pins on the BPI-W2. i’m pretty sure it’s the same as generic process of accessing gpio pins in linux? what we do is:
export the pin addresses in /sys/class/gpio/export
change the direction in /sys/class/gpio/gpio97, /gpio98, /gpio128 to “out”
change the value in /sys/class/gpio/gpio97, /gpio98, /gpio128 to “1”
you can make a little baby script to do all that, or do it from the command line, any way you want, really.