Hi all - first post and i love this thing!
Complete noob but is learning :)

Pi 3B+
5" LCD HDMI waveshare
rotary encoder
480GB SSD

Picoreplayer - latest version
LMS, jivelite etc..

So, everything is working amazing!
I have installed pcp_sbpd.tcz via the web GUI.

The encoder is hooked up and i SSH in to terminal and run this:


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 -f /home/tc/sbpd_commands.cfg e,27,24,VOLU,2 b,22,PLAY,2,0
  
--------------------


The encoder is working just awesome...

But how do imake it permanent?


------------------------------------------------------------------------
Corpze's Profile: http://forums.slimdevices.com/member.php?userid=72536
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