mhwlng
October 3, 2022, 8:31am
1
note that the kiosk software works with any kind of display.
This application can also be used to transfer system status data (e.g. temperature, disk space etc.) to home assistant using a built-in REST api endpoint.
There is also a REST api endpoint to shut down the raspberry pi when the pc is powered off.
more details
mhwlng
December 25, 2022, 9:37am
2
This application can also be used to transfer system status data to home assistant using a built-in REST api endpoint :
sensor:
- platform: rest
name: kiosk_sensors
scan_interval: 60
resource: http://192.168.2.38:5000/api/status
json_attributes:
- disk
- temperature
- memory
- cpu
value_template: "OK"
- platform: template
sensors:
kiosk_temperature:
unique_id: kiosk_temperature
friendly_name: "CPU Temperature"
value_template: "{{ state_attr('sensor.kiosk_sensors', 'temperature')['cpuTemperature'] | round(1) }}"
device_class: temperature
unit_of_measurement: "°C"
kiosk_cpu_percent:
unique_id: kiosk_cpu_percent
friendly_name: "CPU Usage"
value_template: "{{ state_attr('sensor.kiosk_sensors', 'cpu')['cpuUsage'] | round(1)}}"
unit_of_measurement: "%"
There is also a REST api endpoint to shut down the raspberry pi when the pc is powered off :
rest_command:
kiosk_off:
url: "http://192.168.2.38:5000/api/shutdown"
method: POST
binary_sensor:
- platform: ping
host: 192.168.2.35
name: dev5_ping
scan_interval: 60
- platform: template
sensors:
dev5_online:
unique_id: dev5_online
friendly_name: "DEV5 Online"
delay_off:
minutes: 2
value_template: "{{ states('binary_sensor.dev5_ping')}}"
automation
- id: '...........'
alias: kiosk off when DEV5 off
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.dev5_online
from: 'on'
to: 'off'
condition: []
action:
- service: rest_command.kiosk_off
data: {}
mode: single
mhwlng
December 25, 2022, 2:42pm
3
combined HWINFO / media player (Touch Display 1920x515 12.6 inch)
1 Like
vertical orientation (Touch Display 1920x480 8.8 inch)
Darkmx-6
(Darkmx 6)
May 27, 2024, 8:35pm
5
I really like what you got going there!
does this work with the kiosk-mode integration?
How much does the screen cost? What other touchscreen options are there?
click on the github link. all your questions are answered there