Add temp offset to make faulty weather monitor more usable.

This commit is contained in:
2022-08-15 20:30:01 -07:00
parent b24701a89d
commit c0e52b3d72
4 changed files with 5 additions and 0 deletions

View File

@@ -9,6 +9,8 @@ sensor:
temperature:
name: Temp${sn}
id: bme280_temperature
filters:
- offset: ${temp_offset}
pressure:
name: Press${sn}
id: bme280_pressure

View File

@@ -2,6 +2,7 @@ substitutions:
device_name: weather-in-1
dn: weather_in_1
sn: In1
temp_offset: '0.0'
<<: !include .common.yaml
<<: !include .esp8266.yaml

View File

@@ -2,6 +2,7 @@ substitutions:
device_name: weather-out-n
dn: weather_out_n
sn: OutN
temp_offset: '-6.1'
<<: !include .common.yaml
<<: !include .esp8266.yaml

View File

@@ -2,6 +2,7 @@ substitutions:
device_name: weather-out-s
dn: weather_out_s
sn: OutS
temp_offset: '0.0'
<<: !include .common.yaml
<<: !include .esp8266.yaml