-
CommentStreams:B66166545674e0b29f40e8ba4bb190b4
Jump to navigation
Jump to search
For anyone installing the script on Raspian who found that after installation the fan runs at 100% and is very noisy here is my solution.
cd x-c1/ cp fan.py fan.py.original vi fan.py
Change the following line...
pwm = pigpio.pi()
To...
pwm = pigpio.pi('::1', 8888)
Save changes and reboot your Raspberry Pi.
Hope this helps someone!