Hello,
I declare a boolean in the configuration.yaml file:
input_boolean:
start_light_show_1:
name: light_show_1
initial: on
icon: mdi:stairs
As I understand, the variable name is: input_boolean.start_light_show_1. Is that true ?
In the front panel, I have:
- entity: input_boolean.start_light_show_1
hold_action:
action: toggle
icon: mdi.stairs
name: Light show_rainbow
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
In the front panel I can see the activity of the button
In the logger I can’t see the activity on the same button, why ? I see only the start and stop of Hass.io
In the automation.yaml I have this sequence:
# déclencher le light show
- id: "Light show rainbow"
alias: "Light show rainbow"
trigger:
- platform: state
entity_id: input_boolean.start_light_show_1
to: 'on'
action:
- service: notify.pushbullet
data:
title: "Light show"
message: "Rainbow1"
- service: mqtt.publish
data:
topic: "cmnd/b0704d58c57d3b4bbacadaf645505c4/color"
payload: "effect: rainbow1"
Any help will be welcome !
best regards and thank you very muche for your work !
Thierry