Posts: 13
Threads: 2
Joined: Oct 2023
Reputation:
0
10-17-2023, 02:35 PM
(This post was last modified: 10-17-2023, 03:07 PM by igurgo.)
I pasted this into the yaml file:
mqtt:
switch:
- name: output64
state_topic: "KC868_A64/D4D4DAE11DC0/STATE"
command_topic: "KC868_A64/D4D4DAE11DC0/SET"
payload_on: '{"output64":{"value":true}}'
payload_off: '{"output64":{"value":false}}'
state_on: true
state_off: false
After this I can control the output64 from HA.
But I don't see the history and event log in HA.
Уже разобрался. Спасибо!
Posts: 6,193
Threads: 803
Joined: Oct 2020
Reputation:
151
do you means you only can't see output64? output1--63 can be seen? or all output can't see history in HA?
Posts: 2
Threads: 0
Joined: Dec 2023
Reputation:
0
If I may ask, I would like to inquire whether in a future version, the control of the buzzer will also be exposed via MQTT... it would be very useful; currently, I don't see it in MQTT Explorer. At the moment, I have added the sensors. I'm leaving the example code for anyone interested.
sensor:
- name: "ADC-1"
unique_id: a16-kcs-adc-1
state_topic: "KC868_E16S/B8D61A5AA69C/STATE"
value_template: "{{ value_json.adc1.value }}"
unit_of_measurement: "Unità"
- name: "ADC-2"
unique_id: a16-kcs-adc-2
state_topic: "KC868_E16S/B8D61A5AA69C/STATE"
value_template: "{{ value_json.adc2.value }}"
unit_of_measurement: "Unità"
- name: "ADC-3"
unique_id: a16-kcs-adc-3
state_topic: "KC868_E16S/B8D61A5AA69C/STATE"
value_template: "{{ value_json.adc3.value }}"
unit_of_measurement: "Unità"
- name: "ADC-4"
unique_id: a16-kcs-adc-4
state_topic: "KC868_E16S/B8D61A5AA69C/STATE"
value_template: "{{ value_json.adc4.value }}"
unit_of_measurement: "Unità"
- name: "Sensor 1 Temperature"
unique_id: a16-kcs-sensor-1-temperature
state_topic: "KC868_E16S/B8D61A5AA69C/STATE"
value_template: "{{ value_json.sensor1.temperature }}"
unit_of_measurement: "°C"
Posts: 6,193
Threads: 803
Joined: Oct 2020
Reputation:
151
post your yaml file at here.