How to see existing sensors

This should be an easu question . I created two custom binary sensors.by including binary_sensor.yaml in my configuration.yaml. The binary_sensor.yaml is

  • platform: mqtt
    state_topic: “HouseOccupied/state/DOOR”
    name: “House”
    qos: 1
    payload_on: “yes”
    payload_off: “no”
    device_class:
  • platform: mqtt
    state_topic: “General”
    name: “General”
    qos: 1
    payload_on: “yes”
    payload_off: “no”
    device_class: Blockquote

I am would think the sensor show show in entities but naturally I can’t find them

I don’t think you can create a mqtt binary sensor in binary_sensor,yaml, you should be creating a binary sensor under the mqtt integration,

mqtt:
  - binary sensor:
      name:
      ..

perfect. thanks. for others a reference https://www.home-assistant.io/integrations/binary_sensor.mqtt/#payload_off