Hello everyone,
I need help I can’t get my Binary Sensors to show as entities on my integrations. Can you help.
I can see the sensor when looking on the device logs in the ESPHome.
My Config:
esphome:
name: kitchen-sensors
esp8266:
board: esp01_1m
# Enable logging
logger:
# Enable Home Assistant API
api:
ota:
password: ""
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: ""
password: ""
captive_portal:
binary_sensor:
- platform: gpio
pin:
number: GPIO12
inverted: false
mode:
input: true
name: KitchenSensor
device_class: motion
- platform: gpio
pin:
number: GPIO13
inverted: false
mode:
input: true
name: BathroomSensor
device_class: motion
i2c:
sda: GPIO4
scl: GPIO5
scan: true
id: bus_a
sensor:
- platform: am2320
temperature:
name: "Kitchen Temperature"
humidity:
name: "Kitchen Humidity"
update_interval: 10s