Knob volume on RPI (via GPIO)

  • The rpi-tools addon includes the RPi.GPIO library.

    then you would have to prepend the code with something like

    Code
    import sys
    sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib')
    
    
    import RPi.GPIO as GPIO

  • The rpi-tools addon includes the RPi.GPIO library.

    then you would have to prepend the code with something like

    Code
    import sys
    sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib')
    
    
    import RPi.GPIO as GPIO

    Thanks, I'll try to use it.