So I’ve noticed an error that I’m getting once every few days. I’m pretty sure it is a bug because I didn’t spark the event. It’s a input_select, and I don’t have it hooked to any automation. I put it in the config a while back for future use when I get everything set up. Anyways this is the event:
INFO:homeassistant.core:Bus:Handling <Event call_service[L]: service=select_option, domain=input_select, service_call_id=1978016848-1, service_data=entity_id=input_select.house_sitting, option=sleeping>
and my configuration is:
petro_status:
name: Sleep Status
options:
- awake
- sleeping
initial: awake
lambo_status:
name: Sleep Status
options:
- awake
- sleeping
initial: awake
company:
name: Company Status
options:
- enabled
- disabled
initial: disabled
icon: mdi:account-multiple
house_sitting:
name: House Sitting Status
options:
- enabled
- disabled
initial: disabled
icon: mdi:home
The error is:
17-02-14 21:56:48 WARNING (MainThread) [homeassistant.components.input_select] Invalid option: sleeping (possible options: enabled, disabled)
Which is odd because the only automation I have is for the input_selects for petro_status and lambo_status. Both of those automations are tied to a aeotec minimote and neither was pressed. Those automations are the only automations that contain ‘sleeping’ aside from the input selects. I think something odd is going on?
This is my minimote automation if anyone is curious:
#AWAKE
- alias: Petros Button 1 Tap Awake
trigger:
platform: event
event_type: zwave.scene_activated
event_data:
entity_id: remote_master_29
scene_id: 1
condition:
condition: state
entity_id: input_select.petro_status
state: awake
action:
service: homeassistant.turn_on
entity_id: script.petro_is_sleeping
#SLEEPING
- alias: Petros Button 1 Tap Sleeping
trigger:
platform: event
event_type: zwave.scene_activated
event_data:
entity_id: remote_master_29
scene_id: 1
condition:
condition: state
entity_id: input_select.petro_status
state: sleeping
action:
service: homeassistant.turn_on
entity_id: script.petro_is_awake
Scripts:
alias: Petro is Sleeping
sequence:
- service: input_select.select_option
data:
entity_id: input_select.petro_status
option: sleeping
alias: Petro is Awake
sequence:
- service: input_select.select_option
data:
entity_id: input_select.petro_status
option: awake
Any thoughts?