KNX 1 bit entity

I’ve KNX devices reporting status information (on/off) by 1 bit datatypes (1.0xx). The list of datatypes in HA KNX documentation (KNX - Home Assistant) starts with 5. I’ve tried to use

number:
  - name: "status"
    address: "13/3/3"
    type: 1byte_unsigned

without success.

Any suggestions?

My suggestion: binary_sensor

number is for bidirectional numeric values. sensor for read-only values.

Thanks, works as expected.