Question about Fibaro FGK-10X (Door sensor)

Hi,

In Home Assistant how do I get it to say open/closed. I only got a number 22/23.

What does this mean:

 - sensor.fibaro_system_fgk10x_door_opening_sensor_access_control
 - sensor.fibaro_system_fgk10x_door_opening_sensor_burglar
 - sensor.fibaro_system_fgk10x_door_opening_sensor_general
 - sensor.fibaro_system_fgk10x_door_opening_sensor_sourcenodeid
 - sensor.fibaro_system_fgk10x_door_opening_sensor_alarm_type
 - sensor.fibaro_system_fgk10x_door_opening_sensor_alarm_level

The access_control is the number 22/23

Sorry for dumb questions…

Edit: Now it showed up as binary_sensor.fibaro_system_fgk10x_door_opening_sensor_sensor

I maybe was to quick.

I’m having the same issue. I’m thinking I need to create another sensor and map the 22/23 values to on/off or open/close.

This is what I’ve come up with:

binary_sensor:
  - platform: template
    sensors:
      front_door_open:
        friendly_name: Front Door Open
        entity_id: sensor.fibaro_door_fibaro_door_open
        device_class: opening
        value_template: >
          {{ states('sensor.fibaro_door_fibaro_door_open')|float == 22 }}

It seems to report open/close properly (so far).

I didn’t need to do anything. After a while it showed up as binary_sensor.

Interesting. I’ve had mine for less than a day, so I guess I’ll wait and see.

How it’s going?

Still working, but the sensors didn’t change. Oddly the one that should have been the open/close sensor didn’t report back so I went off of the state 22/23 to determine open/close with my template sensor. I installed another (different brand) door sensor and its binary sensor worked fine (though I had to customize its type to opening).