I’ve installed the libraries by cloning the Github repo and running install.sh. Then:
root@my-pi4:~/fanshim-python# python
Python 2.7.16 (default, Apr 6 2019, 01:42:57)
[GCC 8.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from fanshim import FanShim
>>> fanshim = FanShim()
>>> fanshim.set_fan(True)
True
>>> fanshim.get_fan()
1
>>> exit()
…but, the fan’s not spinning.
If I give it a gentle manual nudge with my finger, it spins for a couple of seconds (definitely longer than if it was just the momentum from the nudge) and then stops.
LED is glowing bright white constantly.
Anything I can do to test/adjust it?
(FWIW, no difference if I’m running from a Python3 console)