Long story short, I bought a door sensor that is incompatible with HA, and therefore had to do some magic with an un-used tablet, couple webhooks, and an Input Boolean helper. The helper works exactly as intended, so I created (or attempted to) a Sensor to indicate open/closed status. The Sliding Door Sensor just simply doesn’t appear in my entities. Any help is appreciated. Thanks!
binary_sensor:
- platform: template
sensors:
sliding_door_sendor:
value_template: >
{{ 'open' if is_state('input_boolean.sliding_door', 'on')
else 'closed' }}
friendly_name: Sliding Door Sensor