[Plugin] Touch Display Lite

I am running Volumio 3.569 on my Raspberry Pi 3b and I’ve connected the Official Raspberry Pi 7" display. I have installed the plug-in my following the Readme and the plug-in is visible under Volumio’s plugin manager, however, activating the plug-in does nothing. I’m still stuck in the Volumio terminal. The official touchscreen display works without issues. I have no idea how to start troubleshooting. Any tips?

Hi, maybe Im a bit late to the party. But I would like to use this plugin on my to build rpi5 volumio streamer.
I was just wondering is there any screenshots available of the browse and other screens?
Another question, would it be possible to browse the browse… screen with a rotary encoder button and use that to select tracks sources e.d to play?
I am kind of looking for an old school ipod like control interface…
Or would I be better off with another plugin for this?

There is a actively developed plugin, touch display
Volumio only supports mouse operation, there is a way to navigate using xdotool.
I am using it to mimic a mouse via and Remote Contol.
But you need to spend some time to harvest locations on your screen.

Below a piece of code to handle the buttons to move the cursor around:

#!/usr/bin/python3.11
import lirc
import evdev
import subprocess

def ProcessIRRemote():
    #get IR command
    #keypress format = (hexcode, repeat_num, command_key, remote_id)
    try:
        keypress = conn.readline()
    except:
        keypress=""
             
    if (keypress != "" and keypress != None):
        data = keypress.split()
        sequence = data[1]
        command = data[2]
        
        #---------------------------------------------------------------------------------------------------------------------------------------
        #   Capture command repeats 
        #---------------------------------------------------------------------------------------------------------------------------------------
        if (sequence != "00"):
            # Mouse key Up
            if (command == 'KEY_UP'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative -- 0 -20', shell=True)
            # Mouse key Left
            if (command == 'BTN_LEFT'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative -- -20 0', shell=True)
            # Mouse key Right
            if (command == 'BTN_RIGHT'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative  20 0', shell=True)
            # Mouse key Down
            if (command == 'KEY_DOWN'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative  0 20', shell=True)
                
        #---------------------------------------------------------------------------------------------------------------------------------------
        #   Capture command single 
        #---------------------------------------------------------------------------------------------------------------------------------------
        else:
            # Mouse key Up
            if (command == 'KEY_UP'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative -- 0 -5', shell=True)
                
            # Mouse key Left
            if (command == 'BTN_LEFT'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative -- -5 0', shell=True)
                
            # Mouse key Mouse click
            if (command == 'KEY_OK'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool click 1', shell=True)
                
            # Mouse key Right
            if (command == 'BTN_RIGHT'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative  5 0', shell=True)
                
            # Mouse key Down
            if (command == 'KEY_DOWN'):
                subprocess.call('XAUTHORITY=~volumio/.Xauthority DISPLAY=:0 xdotool mousemove_relative  0 5', shell=True)

#define Global
conn = lirc.LircdConnection()
conn.connect()
print("Starting Up...")
while True:         
      ProcessIRRemote()
1 Like