Thor Watanabe
Thor Watanabe
$ sudo systemctl stop webiopi $ # takes a while... $ sudo systemctl status webiopi systemd[1]: webiopi.service: State 'stop-sigterm' timed out. Killing. systemd[1]: webiopi.service: Killing Process 12035 (python3) with signal...
There might be modification(s) about hardware PWMs (or analog audio) on newer Raspbian kernel. PWM functions don't work on newer kernel version with RPi3. dtoverlay=pwm-2chan,pin=12,pin2=13,func=4,func2=4 is needed on /boot/config.txt? or...
If /etc/systemd/system/webiopi.service file is updated by dpkg, daemon reload is recommended in jessie: ``` sudo systemctl daemno-reload webiopi ``` "postinst" file should include above sequence to reload daemon automatically.
Posted by andreas.riegg As the title says ... Problem/discussion/patch is here: https://groups.google.com/d/msg/webiopi/-GqmiJdPo2g/5AibryoT\_A8J Workaround: .../python/webiopi/clients/**init**.py change line 43 from : self.auth = "Basic " + encodeCredentials(login, password) to : self.auth =...