Paul Webster wrote: 
> You need to set it to run automatically on boot - see the linked posts
> for how to get pCP to do that for you.

I look on the post and create file sbpd-script.sh

Code:
--------------------
    
  #start pigpiod daemon
  sudo pigpiod -t 0 -f -l -s 10
  
  # wait for pigpiod to initialize - indicated by 'pigs t' exit code of zero
  count=10 # approx time limit in seconds
  while ! pigs t >/dev/null 2>&1 ; do
  if [ $((count--)) -le 0 ]; then
  printf "\npigpiod failed to initialize within time limit\n"
  exit 1 # or however you want to deal with failure
  fi
  #       printf "\nWaiting for pigpiod to initialize\n"
  sleep 1
  done
  printf "\npigpiod is running\n"
  
  # load uinput module - required to be able to send keystrokes
  # then set the permission to group writable, so you don't need to run sbpd 
with
  sudo modprobe uinput
  sudo chmod g+w /dev/uinput
  
  # issue the sbpd command
  sbpd -s b,8,PLAY,2,0 -v
  
--------------------


And added on the Tweaks User command #1 /home/tc/sbpd-script.sh

But something more is missing.


------------------------------------------------------------------------
PaulH's Profile: http://forums.slimdevices.com/member.php?userid=72449
View this thread: http://forums.slimdevices.com/showthread.php?t=107001

_______________________________________________
diy mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/diy

Reply via email to