-
-
Notifications
You must be signed in to change notification settings - Fork 0
usage
Alco edited this page Dec 24, 2024
·
1 revision
You can monitor the status of your Jura coffee machine and ESPHOME configuration using the sensors defined in the configuration:
binary_sensor:
- platform: status
name: "${friendly_name} Status"
entity_category: diagnostic
It's also possible to restart the device from the webserver page. therefore is this button defined:
button:
- platform: restart
name: "${devicename} Jura ESP restart"
entity_category: config
The interface has also buttons for every discoverd function. an example is this button for accessing the Jura menu:
- platform: template
name: 'jura_menu'
icon: "mdi:MicrosoftXboxControllerMenu"
entity_category: config
id: jura_FA03
on_press:
- uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':'
- delay: 8ms
- uart.write: [0xDB, 0xDB, 0xFF, 0xDB] ## '0'
- delay: 8ms
- uart.write: [0xFF, 0xDB, 0xFF, 0xDB] ## '3'
- delay: 8ms
- uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n'