On a non Raspberry Pi (just an ordinary laptop, installed with 17.04) - I'm trying to run a Python script to control Pi's Remote GPIO, with no success.
pigpio module is installed as ordered in pigpio library.Installation was OK, and files are present designated directory.
When trying to load pigpio's daemon - sudo pigpiod, an error message recieved saying "file not found".
This is the first time I'm trying to use this daemon on a non RPi - perhaps I'm doing something wrong.
guy@LG-LAPTOP:~$ sudo pigpiod
[sudo] password for guy:
sudo: pigpiod: command not found
guy@LG-LAPTOP:~$
pigpiodfile/command , is not found. If I'm right- why is that ? it was installed properly. – guyd Aug 23 '17 at 07:48pigpiodrun in order to be controlled remptely. Uptill now, one of the RPis, used to run the control script. All worked OK untill I tried to run that script on PC. Did you mean that on PCpigpiodis not needed, in order to control RPis ? – guyd Aug 23 '17 at 07:58import pigpioand open the remote Pi withpi = pigpio.pi("remote_host_name_or_IP_address")or use the environment variablePIGPIO_ADDR=remote_host_name_or_IP_address– joan Aug 23 '17 at 09:32