I’ve installed ESPhome on to 2 esp8266s with a DHT22 attached. I see the proper reports when I watch the 8266 logs inside of ESPHome. However, most of the data doesn’t seem to be getting to influxDB. There are no errors reported. I’m sure the network strength is good. Any recommendations?
I have the following in my configuration.yaml:
influxdb:
host: 192.168.1.yyy
port: 8086
database: homeAssistant
username: user001
password: xxxxxxxxx
max_retries: 3
default_measurement: state
And the sensor configuration is:
sensor:
- platform: dht
pin: 04
model: DHT22
temperature:
name: "Living Room Temperature"
humidity:
name: "Living Room Humidity"
update_interval: 10s
[04:41:27][D][sensor:093]: 'Living Room Temperature': Sending state 19.50000 °C with 1 decimals of accuracy
[04:41:27][D][sensor:093]: 'Living Room Humidity': Sending state 72.40000 % with 0 decimals of accuracy
[04:41:37][D][dht:048]: Got Temperature=19.5°C Humidity=72.4%
[04:41:37][D][sensor:093]: 'Living Room Temperature': Sending state 19.50000 °C with 1 decimals of accuracy
[04:41:37][D][sensor:093]: 'Living Room Humidity': Sending state 72.40000 % with 0 decimals of accuracy
[04:41:47][D][dht:048]: Got Temperature=19.5°C Humidity=72.4%