I have an ESP32-Sensor which I integrated into the system via autodiscover
Even though I defined a unit of measurement it does not make a real graph of it:
esphome:
name: bedsensor
platform: ESP32
board: esp32dev
platformio_options:
platform: espressif32
board: az-delivery-devkit-v4
board_build.mcu: esp32
board_build.f_cpu: 240000000L
wifi:
ssid: ""-------""
password: "-------"
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: ""-------""
password: ""-------""
captive_portal:
# Enable logging
logger:
# Enable Home Assistant API
api:
password: "0000"
ota:
password: "0000"
sensor:
- platform: hx711
name: "HX711 Value"
dout_pin: GPIO21
clk_pin: GPIO22
gain: 128
update_interval: 20s
unit_of_measurement: "kg"
Did I do something wrong?
According to https://www.home-assistant.io/lovelace/history-graph/ the graph should change to lines from bars.