I develop an integration and I know I can set the SCAN_INTERVAL for each platform, but I want to set each entity separately by using configuration.yaml, if there is no way, at least I hope I can set each platform separately through configuration.yaml. What can I do?
If I add it like below, the docker will crash
lw_gpio:
interval_seconds: 1
binary_sensor:
- model: UP6000
name: Touch_sensor
pin: 16
sensor:
- model: UP6000
type: DHT20
name: DHT20
pin: 3
switch:
- model: UP6000
name: R_switch
pin: 37
- model: UP6000
name: Y_switch
pin: 31
- model: UP6000
name: G_switch
pin: 29
If I add it like below, it doesn’t work
lw_gpio:
binary_sensor:
- model: UP6000
name: Touch_sensor
pin: 16
scan_interval: 1
sensor:
- model: UP6000
type: DHT20
name: DHT20
pin: 3
scan_interval: 3
switch:
- model: UP6000
name: R_switch
pin: 37
- model: UP6000
name: Y_switch
pin: 31
- model: UP6000
name: G_switch
pin: 29