1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-25 22:52:20 +01:00

Allow setting custom command_topic for Select and Number components (#2714)

This commit is contained in:
Krzysztof Białek
2021-11-14 14:59:34 +01:00
committed by Jesse Hills
parent 81a36146ef
commit 87e1cdeedb
3 changed files with 22 additions and 2 deletions

View File

@@ -2512,3 +2512,23 @@ teleinfo:
uart_id: uart0
update_interval: 60s
historical_mode: true
number:
- platform: template
id: test_number
state_topic: livingroom/custom_state_topic
command_topic: livingroom/custom_command_topic
min_value: 0
step: 1
max_value: 10
optimistic: true
select:
- platform: template
id: test_select
state_topic: livingroom/custom_state_topic
command_topic: livingroom/custom_command_topic
options:
- one
- two
optimistic: true