Last active 1718980134

Revision 93f09b3794e361bffa9a119dc00643abc860fa7e

README.md Raw

Element14 Pi-Desktop scripts for LibreELEC

This gist contains the files needed to make Pi-Desktop's power butoon work in LibreELEC. Due to hardware limitations in the Pi-Desktop this button turns off the Raspberry Pi instead of opening the power menu.

Setup

  1. Install the Raspberry Pi Tools add-on
  • System (settings) -> Add-ons -> Install from repozitory -> LibreELEC Add-ons -> Program add-ons -> Raspberry Pi Tools -> Install
  1. Get SSH access
  • System (settings) -> LibreELEC -> Services -> Enable SSH
    • If you don't setup a password the default is libreelec
    • Keep in mind that the default password should be changed or SSH turned off for better security.
  • System (settings) -> LibreELEC -> Connections -> Address: aaa.bbb.c.ddd
    • Get the IP address of the device by looking at the connection used
  1. SSH to the device: ssh root@aaa.bbb.c.ddd
  2. Run the install script: curl -sSL https://opengist.stefka.eu/jiriks74/element14-libreelec/raw/HEAD/install.sh | bash
  3. The light should blink once to indicate that the power button script started successfully
  • It will blink once on every boot to indicate that the Pi comunicates with the power supply

Manual setup

If you're uncomfortable running a scripts from the internet you can fetch the files yourself and save them like this:

/storage/scripts/pidesktop/powerkey.py
/storage/.config/system.d/pidesktop-powerkey.service

Then you need to run systemctl enable pidesktop-powerkey to start the scripts on boot and systemctl start pidekstop-powerkey to start it now.

The light on the case should blink once to indicate that the script initialized successfully.

Usage

The power key can do 2 things on the Pi Desktop

  • When held for 2 seconds it sends a power off signal to the Pi (only once, more keypresses don't do anything)
  • When held for 5 seconds it cuts off power from the Pi (as if you unplugged if from wall power)
install.sh Raw
1#!/bin/bash
2set -e
3
4mkdir -p /storage/scripts/pidesktop
5
6curl "https://opengist.stefka.eu/jiriks74/element14-libreelec/raw/HEAD/powerkey.py" -o /storage/scripts/pidesktop/powerkey.py
7curl "https://opengist.stefka.eu/jiriks74/element14-libreelec/raw/HEAD/pidesktop-powerkey.service" -o /storage/.config/system.d/pidesktop-powerkey.service
8
9systemctl daemon-reload
10systemctl enable pidesktop-powerkey
11systemctl start pidesktop-powerkey
pidesktop-powerkey.service Raw
1[Unit]
2Description=pidesktop power button service
3After=local-fs.target
4
5[Service]
6Type=simple
7User=root
8ExecStart=/usr/bin/python3.11 /storage/scripts/pidesktop/powerkey.py
9
10[Install]
11WantedBy=multi-user.target
powerkey.py Raw
1#!/usr/bin/env python
2#
3# pd-powerkey.py - monitor GPIO to detect power key press from Power MCU (PCU)
4#
5
6import time,os,sys
7os.chdir('/storage/scripts/pidesktop/')
8sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib') # Import gpiozero from Raspberry Pi Tools add-on
9from gpiozero import Button,LED
10
11print("pidesktop: power button service initializing")
12
13pwrBtn = Button(13) # PCU to Pi - detect power key pressed
14
15pcu = LED(6) # Pi to PCU - start/stop shutdown timer
16pcu.off() # tell PCU we are alive
17pcu.on() # cause blink by starting shutdown timer
18time.sleep(0.5)
19pcu.off() # clear timer to stop blinking and prefent forced power off
20
21# callback function
22def powerkey_pressed(channels):
23 print("pidesktop: power button press detected, initiating shutdown")
24 os.system("sync")
25 # os.system("shutdown -h now") # Shutdown the OS directly (forced shutdown)
26 os.system("kodi-send --action=ShutDown") # Tell Kodi to execute it's shutdown procedure (graceful)
27 sys.exit()
28
29pwrBtn.when_released = powerkey_pressed # Setup callback for the power off signal
30print("pidesktop: power button monitor enabled")
31
32while True: # Keep the service running
33 time.sleep(10)