Hi
I have an ESP32 module with 2 HX711 and one BME280. Both the HX711 sensors give some what looks to be zero values about 2 - 3 times a day. Here is one of the configs:
- platform: hx711
name: "Gas 1"
dout_pin: GPIO19
clk_pin: GPIO18
icon: mdi:gas-cylinder
update_interval: 5s
filters:
- filter_out: 0.0
- calibrate_linear:
- 47800 -> 0
- -765700 -> 39
unit_of_measurement: kg
accuracy_decimals: 2
Here is what the data typically looks like:
I have tried various filters to remove the errant data, even lambda function, to no avail.
Does anyone have any ideas?
Thanks!