Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with temperature readings after upgrade to 1.19.x #1962

Closed
keith-gajeski opened this issue Jun 24, 2021 · 1 comment
Closed

Issue with temperature readings after upgrade to 1.19.x #1962

keith-gajeski opened this issue Jun 24, 2021 · 1 comment

Comments

@keith-gajeski
Copy link

Good Afternoon. I have an ESP32 that is monitoring the temperature of my cold and hot water in my home. Since the update the temperature readings have been really off. I have reverted to 1.18 and everything is working fine. I will include my yaml and the logs from both 1.18 version and 1.19.x
I marked the issues in the log in bold print, to make it easier to find. Also, this is my first Github post, so if I did something wrong, please let me know!

Thanks!
Keith

esphome:
name: 618_blueshutters_basement
platform: ESP32
board: esp-wrover-kit

wifi:
ssid:
password:

captive_portal:

switch:

  • platform: gpio
    pin: 16
    inverted: yes
    id: MainWaterOn
    interlock: [MainWaterOff]

  • platform: template
    id: MainWaterOnTP
    turn_on_action:

    • switch.turn_on: MainWaterOn
    • delay: 6 s
    • switch.turn_off: MainWaterOn
  • platform: gpio
    pin: 17
    inverted: yes
    id: MainWaterOff
    interlock: [MainWaterOn]

  • platform: template
    id: MainWaterOffTP
    turn_on_action:

    • switch.turn_on: MainWaterOff
    • delay: 6 s
    • switch.turn_off: MainWaterOff
  • platform: gpio
    pin: 25
    inverted: yes
    id: HydroponicsOn
    interlock: [HydroponicsOff]

  • platform: template
    id: HydroponicsOnTP
    turn_on_action:

    • switch.turn_on: HydroponicsOn
    • delay: 10 s
    • switch.turn_off: HydroponicsOn
  • platform: gpio
    pin: 26
    inverted: yes
    id: HydroponicsOff
    interlock: [HydroponicsOn]

  • platform: template
    id: HydroponicsOffTP
    turn_on_action:

    • switch.turn_on: HydroponicsOff
    • delay: 10 s
    • switch.turn_off: HydroponicsOff

#Water Pump Cycle
binary_sensor:

  • platform: gpio
    device_class: power
    name: "Water Pump Cycle"
    pin:
    number: 2
    mode: INPUT_PULLDOWN

ESP32 Status

  • platform: status
    name: "Basement ESP32 Status"

sensor:

#Cold Water Temp

  • platform: ntc
    sensor: Cold_Water_Temp
    calibration:
    • 170.291kOhm -> 0.56°C
    • 50.0kOhm -> 25°C
    • 6.466kOhm -> 75°C
      name: Cold Water Temperature

#Cold Water Temp - source sensor

  • platform: resistance
    id: Cold_Water_Temp
    sensor: cold_sensor
    configuration: UPSTREAM
    resistor: 10kOhm
    reference_voltage: 3.3
  • platform: adc
    attenuation: 6db
    id: cold_sensor
    pin: 39

#Hot Water Temp

  • platform: ntc
    sensor: Hot_Water_Temp
    calibration:
    • 170.291kOhm -> 0.56°C
    • 50.0kOhm -> 25°C
    • 6.466kOhm -> 75°C
      name: Hot Water Temperature

#Hot Water Temp - source sensor

  • platform: resistance
    id: Hot_Water_Temp
    sensor: hot_sensor
    configuration: UPSTREAM
    resistor: 10kOhm
    reference_voltage: 3.3
  • platform: adc
    attenuation: 6db
    id: hot_sensor
    pin: 36

#Water Pressure - Prefilter

  • platform: adc
    attenuation: 6db
    id: prefilter_sensor
    pin: 34
    name: Prefilter

#Water Pressure - Postfilter

  • platform: adc
    attenuation: 6db
    id: postfilter_sensor
    pin: 35
    name: Postfilter

#Air Temp / Hum

  • platform: dht
    pin: 5
    model: DHT22
    temperature:
    name: "Basement Temperature"
    humidity:
    name: "Basement Humidity"
    update_interval: 60s

#Cold Water GPM

  • platform: pulse_counter
    pin:
    number: 18
    name: "Cold Water Flow"
    icon: mdi:water
    id: cold_water_gpm
    filters:
    • lambda: return (x / 1535.0);
      unit_of_measurement: "GPM"

#Hot Water GPM

  • platform: pulse_counter
    pin:
    number: 19
    name: "Hot Water Flow"
    icon: mdi:water
    id: hot_water_gpm
    filters:
    • lambda: return (x / 1535.0);
      unit_of_measurement: "GPM"

#Water Heater Status

  • platform: pulse_counter
    pin:
    number: 14
    mode: input_pulldown
    name: "Water Heater Status"
    count_mode:
    rising_edge: disable
    falling_edge: increment
    filters:
    debounce: 2.5s

time:

  • platform: homeassistant
    id: homeassistant_time

Enable logging

logger:

Enable Home Assistant API

api:
password:

ota:
password:

1.19 log:
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from 618_blueshutters_basement.local using esphome API
INFO Connecting to 618_blueshutters_basement.local:6053 (192.168.254.52)
INFO Successfully connected to 618_blueshutters_basement.local
[11:59:59][I][app:105]: ESPHome version 1.19.4 compiled on Jun 24 2021, 11:59:21
[11:59:59][C][wifi:484]: WiFi:
[11:59:59][C][wifi:344]: SSID: [redacted]
[11:59:59][C][wifi:345]: IP Address: 192.168.254.52
[11:59:59][C][wifi:347]: BSSID: [redacted]
[11:59:59][C][wifi:348]: Hostname: '618_blueshutters_basement'
[11:59:59][C][wifi:352]: Signal strength: -63 dB ▂▄▆█
[11:59:59][C][wifi:356]: Channel: 11
[11:59:59][C][wifi:357]: Subnet: 255.255.255.0
[11:59:59][C][wifi:358]: Gateway: 192.168.254.1
[11:59:59][C][wifi:359]: DNS1: 172.16.1.99
[11:59:59][C][wifi:360]: DNS2: 172.16.1.98
[11:59:59][C][switch.gpio:048]: GPIO Switch 'MainWaterOn'
[11:59:59][C][switch.gpio:048]: Inverted: YES
[11:59:59][C][switch.gpio:049]: Pin: GPIO16 (Mode: OUTPUT)
[11:59:59][C][switch.gpio:071]: Restore Mode: Restore (Defaults to OFF)
[11:59:59][C][switch.gpio:073]: Interlocks:
[11:59:59][C][switch.gpio:077]: MainWaterOff
[11:59:59][C][template.switch:058]: Template Switch 'MainWaterOnTP'
[11:59:59][C][template.switch:059]: Restore State: NO
[11:59:59][C][template.switch:060]: Optimistic: NO
[12:00:00][C][switch.gpio:048]: GPIO Switch 'MainWaterOff'
[12:00:00][C][switch.gpio:048]: Inverted: YES
[12:00:00][C][switch.gpio:049]: Pin: GPIO17 (Mode: OUTPUT)
[12:00:00][C][switch.gpio:071]: Restore Mode: Restore (Defaults to OFF)
[12:00:00][C][switch.gpio:073]: Interlocks:
[12:00:00][C][switch.gpio:077]: MainWaterOn
[12:00:00][C][template.switch:058]: Template Switch 'MainWaterOffTP'
[12:00:00][C][template.switch:059]: Restore State: NO
[12:00:00][C][template.switch:060]: Optimistic: NO
[12:00:00][C][switch.gpio:048]: GPIO Switch 'HydroponicsOn'
[12:00:00][C][switch.gpio:048]: Inverted: YES
[12:00:00][C][switch.gpio:049]: Pin: GPIO25 (Mode: OUTPUT)
[12:00:00][C][switch.gpio:071]: Restore Mode: Restore (Defaults to OFF)
[12:00:00][C][switch.gpio:073]: Interlocks:
[12:00:00][C][switch.gpio:077]: HydroponicsOff
[12:00:00][C][template.switch:058]: Template Switch 'HydroponicsOnTP'
[12:00:00][C][template.switch:059]: Restore State: NO
[12:00:00][C][template.switch:060]: Optimistic: NO
[12:00:00][C][switch.gpio:048]: GPIO Switch 'HydroponicsOff'
[12:00:00][C][switch.gpio:048]: Inverted: YES
[12:00:00][C][switch.gpio:049]: Pin: GPIO26 (Mode: OUTPUT)
[12:00:00][C][switch.gpio:071]: Restore Mode: Restore (Defaults to OFF)
[12:00:00][C][switch.gpio:073]: Interlocks:
[12:00:00][C][switch.gpio:077]: HydroponicsOn
[12:00:00][C][template.switch:058]: Template Switch 'HydroponicsOffTP'
[12:00:00][C][template.switch:059]: Restore State: NO
[12:00:00][C][template.switch:060]: Optimistic: NO
[12:00:00][C][gpio.binary_sensor:015]: GPIO Binary Sensor 'Water Pump Cycle'
[12:00:00][C][gpio.binary_sensor:015]: Device Class: 'power'
[12:00:00][C][gpio.binary_sensor:016]: Pin: GPIO2 (Mode: INPUT_PULLDOWN)
[12:00:00][C][logger:189]: Logger:
[12:00:00][C][logger:190]: Level: DEBUG
[12:00:00][C][logger:191]: Log Baud Rate: 115200
[12:00:00][C][logger:192]: Hardware UART: UART0
[12:00:00][C][status:034]: Status Binary Sensor 'Basement ESP32 Status'
[12:00:00][C][status:034]: Device Class: 'connectivity'
[12:00:00][C][ntc:014]: NTC Sensor 'Cold Water Temperature'
[12:00:00][C][ntc:014]: Device Class: 'temperature'
[12:00:00][C][ntc:014]: State Class: 'measurement'
[12:00:00][C][ntc:014]: Unit of Measurement: '°C'
[12:00:00][C][ntc:014]: Accuracy Decimals: 1
[12:00:00][C][resistance:010]: Resistance Sensor 'Cold_Water_Temp'
[12:00:00][C][resistance:010]: State Class: 'measurement'
[12:00:00][C][resistance:010]: Unit of Measurement: 'Ω'
[12:00:00][C][resistance:010]: Accuracy Decimals: 1
[12:00:00][C][resistance:010]: Icon: 'mdi:flash'
[12:00:00][C][resistance:011]: Configuration: UPSTREAM
[12:00:00][C][resistance:012]: Resistor: 10000.00Ω
[12:00:00][C][resistance:013]: Reference Voltage: 3.3V
[12:00:00][C][adc:028]: ADC Sensor 'cold_sensor'
[12:00:00][C][adc:028]: Device Class: 'voltage'
[12:00:00][C][adc:028]: State Class: 'measurement'
[12:00:00][C][adc:028]: Unit of Measurement: 'V'
[12:00:00][C][adc:028]: Accuracy Decimals: 2
[12:00:00][C][adc:037]: Pin: 39
[12:00:00][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:00:00][C][adc:053]: Update Interval: 60.0s
[12:00:00][C][ntc:014]: NTC Sensor 'Hot Water Temperature'
[12:00:00][C][ntc:014]: Device Class: 'temperature'
[12:00:00][C][ntc:014]: State Class: 'measurement'
[12:00:00][C][ntc:014]: Unit of Measurement: '°C'
[12:00:00][C][ntc:014]: Accuracy Decimals: 1
[12:00:00][C][resistance:010]: Resistance Sensor 'Hot_Water_Temp'
[12:00:00][C][resistance:010]: State Class: 'measurement'
[12:00:00][C][resistance:010]: Unit of Measurement: 'Ω'
[12:00:00][C][resistance:010]: Accuracy Decimals: 1
[12:00:00][C][resistance:010]: Icon: 'mdi:flash'
[12:00:00][C][resistance:011]: Configuration: UPSTREAM
[12:00:00][C][resistance:012]: Resistor: 10000.00Ω
[12:00:00][C][resistance:013]: Reference Voltage: 3.3V
[12:00:00][C][adc:028]: ADC Sensor 'hot_sensor'
[12:00:00][C][adc:028]: Device Class: 'voltage'
[12:00:00][C][adc:028]: State Class: 'measurement'
[12:00:00][C][adc:028]: Unit of Measurement: 'V'
[12:00:00][C][adc:028]: Accuracy Decimals: 2
[12:00:00][C][adc:037]: Pin: 36
[12:00:00][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:00:00][C][adc:053]: Update Interval: 60.0s
[12:00:00][C][adc:028]: ADC Sensor 'Prefilter'
[12:00:00][C][adc:028]: Device Class: 'voltage'
[12:00:00][C][adc:028]: State Class: 'measurement'
[12:00:00][C][adc:028]: Unit of Measurement: 'V'
[12:00:00][C][adc:028]: Accuracy Decimals: 2
[12:00:00][C][adc:037]: Pin: 34
[12:00:00][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:00:00][C][adc:053]: Update Interval: 60.0s
[12:00:00][C][adc:028]: ADC Sensor 'Postfilter'
[12:00:00][C][adc:028]: Device Class: 'voltage'
[12:00:00][C][adc:028]: State Class: 'measurement'
[12:00:00][C][adc:028]: Unit of Measurement: 'V'
[12:00:00][C][adc:028]: Accuracy Decimals: 2
[12:00:00][C][adc:037]: Pin: 35
[12:00:00][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:00:00][C][adc:053]: Update Interval: 60.0s
[12:00:00][C][dht:017]: DHT:
[12:00:00][C][dht:018]: Pin: GPIO5 (Mode: INPUT)
[12:00:00][C][dht:024]: Model: DHT22 (or equivalent)
[12:00:00][C][dht:027]: Update Interval: 60.0s
[12:00:00][C][dht:029]: Temperature 'Basement Temperature'
[12:00:00][C][dht:029]: Device Class: 'temperature'
[12:00:00][C][dht:029]: State Class: 'measurement'
[12:00:00][C][dht:029]: Unit of Measurement: '°C'
[12:00:00][C][dht:029]: Accuracy Decimals: 1
[12:00:00][C][dht:030]: Humidity 'Basement Humidity'
[12:00:00][C][dht:030]: Device Class: 'humidity'
[12:00:00][C][dht:030]: State Class: 'measurement'
[12:00:00][C][dht:030]: Unit of Measurement: '%'
[12:00:00][C][dht:030]: Accuracy Decimals: 0
[12:00:00][C][pulse_counter:147]: Pulse Counter 'Cold Water Flow'
[12:00:00][C][pulse_counter:147]: State Class: 'measurement'
[12:00:00][C][pulse_counter:147]: Unit of Measurement: 'GPM'
[12:00:00][C][pulse_counter:147]: Accuracy Decimals: 2
[12:00:00][C][pulse_counter:147]: Icon: 'mdi:water'
[12:00:00][C][pulse_counter:148]: Pin: GPIO18 (Mode: INPUT)
[12:00:00][C][pulse_counter:149]: Rising Edge: INCREMENT
[12:00:00][C][pulse_counter:150]: Falling Edge: DISABLE
[12:00:00][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:00:00][C][pulse_counter:152]: Update Interval: 60.0s
[12:00:00][C][pulse_counter:147]: Pulse Counter 'Hot Water Flow'
[12:00:00][C][pulse_counter:147]: State Class: 'measurement'
[12:00:00][C][pulse_counter:147]: Unit of Measurement: 'GPM'
[12:00:00][C][pulse_counter:147]: Accuracy Decimals: 2
[12:00:00][C][pulse_counter:147]: Icon: 'mdi:water'
[12:00:00][C][pulse_counter:148]: Pin: GPIO19 (Mode: INPUT)
[12:00:00][C][pulse_counter:149]: Rising Edge: INCREMENT
[12:00:00][C][pulse_counter:150]: Falling Edge: DISABLE
[12:00:00][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:00:00][C][pulse_counter:152]: Update Interval: 60.0s
[12:00:00][C][pulse_counter:147]: Pulse Counter 'Water Heater Status'
[12:00:00][C][pulse_counter:147]: State Class: 'measurement'
[12:00:00][C][pulse_counter:147]: Unit of Measurement: 'pulses/min'
[12:00:00][C][pulse_counter:147]: Accuracy Decimals: 2
[12:00:00][C][pulse_counter:147]: Icon: 'mdi:pulse'
[12:00:00][C][pulse_counter:148]: Pin: GPIO14 (Mode: INPUT_PULLDOWN)
[12:00:00][C][pulse_counter:149]: Rising Edge: DISABLE
[12:00:00][C][pulse_counter:150]: Falling Edge: INCREMENT
[12:00:00][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:00:00][C][pulse_counter:152]: Update Interval: 60.0s
[12:00:01][C][homeassistant.time:010]: Home Assistant Time:
[12:00:01][C][homeassistant.time:011]: Timezone: 'EST5EDT4,M3.2.0/2,M11.1.0/2'
[12:00:01][C][captive_portal:148]: Captive Portal:
[12:00:01][C][ota:029]: Over-The-Air Updates:
[12:00:01][C][ota:030]: Address: 618_blueshutters_basement.local:3232
[12:00:01][C][ota:032]: Using Password.
[12:00:01][C][api:095]: API Server:
[12:00:01][C][api:096]: Address: 618_blueshutters_basement.local:6053
[12:00:30][D][adc:058]: 'Postfilter': Got voltage=0.00V
[12:00:30][D][sensor:117]: 'Postfilter': Sending state 0.00000 V with 2 decimals of accuracy
[12:00:32][D][pulse_counter:159]: 'Water Heater Status': Retrieved counter: 96.00 pulses/min
[12:00:33][D][adc:058]: 'hot_sensor': Got voltage=0.36V
[12:00:33][D][sensor:117]: 'hot_sensor': Sending state 0.35780 V with 2 decimals of accuracy

[12:00:33][D][resistance:037]: 'Hot_Water_Temp' - Resistance 82229.7Ω
[12:00:33][D][sensor:117]: 'Hot_Water_Temp': Sending state 82229.72656 Ω with 1 decimals of accuracy
[12:00:33][D][ntc:026]: 'Hot Water Temperature' - Temperature: 14.7°C

[12:00:33][D][sensor:117]: 'Hot Water Temperature': Sending state 14.65861 °C with 1 decimals of accuracy
[12:00:35][D][sensor:117]: 'Water Heater Status': Sending state 96.00000 pulses/min with 2 decimals of accuracy
[12:00:41][D][dht:048]: Got Temperature=18.6°C Humidity=69.9%
[12:00:41][D][sensor:117]: 'Basement Temperature': Sending state 18.60000 °C with 1 decimals of accuracy
[12:00:41][D][sensor:117]: 'Basement Humidity': Sending state 69.90000 % with 0 decimals of accuracy
[12:00:41][D][adc:058]: 'cold_sensor': Got voltage=0.16V
[12:00:41][D][sensor:117]: 'cold_sensor': Sending state 0.16332 V with 2 decimals of accuracy

[12:00:41][D][resistance:037]: 'Cold_Water_Temp' - Resistance 192055.9Ω
[12:00:41][D][sensor:117]: 'Cold_Water_Temp': Sending state 192055.89062 Ω with 1 decimals of accuracy
[12:00:41][D][ntc:026]: 'Cold Water Temperature' - Temperature: -1.7°C

[12:00:41][D][sensor:117]: 'Cold Water Temperature': Sending state -1.66041 °C with 1 decimals of accuracy
[12:00:48][D][pulse_counter:159]: 'Cold Water Flow': Retrieved counter: 0.00 pulses/min
[12:00:48][D][sensor:117]: 'Cold Water Flow': Sending state 0.00000 GPM with 2 decimals of accuracy
[12:00:48][D][pulse_counter:159]: 'Hot Water Flow': Retrieved counter: 0.00 pulses/min
[12:00:48][D][sensor:117]: 'Hot Water Flow': Sending state 0.00000 GPM with 2 decimals of accuracy
[12:00:50][D][adc:058]: 'Prefilter': Got voltage=0.00V
[12:00:50][D][sensor:117]: 'Prefilter': Sending state 0.00000 V with 2 decimals of accuracy

1.18 Log:
NFO Successfully connected to 618_blueshutters_basement.local
[12:08:18][I][app:105]: ESPHome version 1.18.0 compiled on Jun 24 2021, 12:07:34
[12:08:18][C][wifi:443]: WiFi:
[12:08:18][C][wifi:303]: SSID: [redacted]
[12:08:18][C][wifi:304]: IP Address: 192.168.254.52
[12:08:18][C][wifi:306]: BSSID: [redacted]
[12:08:18][C][wifi:307]: Hostname: '618_blueshutters_basement'
[12:08:18][C][wifi:311]: Signal strength: -60 dB ▂▄▆█
[12:08:18][C][wifi:315]: Channel: 11
[12:08:18][C][wifi:316]: Subnet: 255.255.255.0
[12:08:18][C][wifi:317]: Gateway: 192.168.254.1
[12:08:18][C][wifi:318]: DNS1: 172.16.1.99
[12:08:18][C][wifi:319]: DNS2: 172.16.1.98
[12:08:18][C][switch.gpio:042]: GPIO Switch 'MainWaterOn'
[12:08:18][C][switch.gpio:042]: Inverted: YES
[12:08:18][C][switch.gpio:043]: Pin: GPIO16 (Mode: OUTPUT)
[12:08:18][C][switch.gpio:059]: Restore Mode: Restore (Defaults to OFF)
[12:08:18][C][switch.gpio:061]: Interlocks:
[12:08:18][C][switch.gpio:065]: MainWaterOff
[12:08:18][C][template.switch:058]: Template Switch 'MainWaterOnTP'
[12:08:18][C][template.switch:059]: Restore State: NO
[12:08:18][C][template.switch:060]: Optimistic: NO
[12:08:18][C][switch.gpio:042]: GPIO Switch 'MainWaterOff'
[12:08:18][C][switch.gpio:042]: Inverted: YES
[12:08:18][C][switch.gpio:043]: Pin: GPIO17 (Mode: OUTPUT)
[12:08:18][C][switch.gpio:059]: Restore Mode: Restore (Defaults to OFF)
[12:08:18][C][switch.gpio:061]: Interlocks:
[12:08:18][C][switch.gpio:065]: MainWaterOn
[12:08:18][C][template.switch:058]: Template Switch 'MainWaterOffTP'
[12:08:18][C][template.switch:059]: Restore State: NO
[12:08:18][C][template.switch:060]: Optimistic: NO
[12:08:18][C][switch.gpio:042]: GPIO Switch 'HydroponicsOn'
[12:08:18][C][switch.gpio:042]: Inverted: YES
[12:08:18][C][switch.gpio:043]: Pin: GPIO25 (Mode: OUTPUT)
[12:08:18][C][switch.gpio:059]: Restore Mode: Restore (Defaults to OFF)
[12:08:18][C][switch.gpio:061]: Interlocks:
[12:08:18][C][switch.gpio:065]: HydroponicsOff
[12:08:18][C][template.switch:058]: Template Switch 'HydroponicsOnTP'
[12:08:18][C][template.switch:059]: Restore State: NO
[12:08:18][C][template.switch:060]: Optimistic: NO
[12:08:18][C][switch.gpio:042]: GPIO Switch 'HydroponicsOff'
[12:08:18][C][switch.gpio:042]: Inverted: YES
[12:08:18][C][switch.gpio:043]: Pin: GPIO26 (Mode: OUTPUT)
[12:08:18][C][switch.gpio:059]: Restore Mode: Restore (Defaults to OFF)
[12:08:18][C][switch.gpio:061]: Interlocks:
[12:08:18][C][switch.gpio:065]: HydroponicsOn
[12:08:18][C][template.switch:058]: Template Switch 'HydroponicsOffTP'
[12:08:18][C][template.switch:059]: Restore State: NO
[12:08:18][C][template.switch:060]: Optimistic: NO
[12:08:18][C][gpio.binary_sensor:015]: GPIO Binary Sensor 'Water Pump Cycle'
[12:08:18][C][gpio.binary_sensor:015]: Device Class: 'power'
[12:08:18][C][gpio.binary_sensor:016]: Pin: GPIO2 (Mode: INPUT_PULLDOWN)
[12:08:18][C][logger:189]: Logger:
[12:08:18][C][logger:190]: Level: DEBUG
[12:08:18][C][logger:191]: Log Baud Rate: 115200
[12:08:18][C][logger:192]: Hardware UART: UART0
[12:08:18][C][status:034]: Status Binary Sensor 'Basement ESP32 Status'
[12:08:18][C][status:034]: Device Class: 'connectivity'
[12:08:18][C][ntc:014]: NTC Sensor 'Cold Water Temperature'
[12:08:18][C][ntc:014]: Device Class: 'temperature'
[12:08:18][C][ntc:014]: Unit of Measurement: '°C'
[12:08:18][C][ntc:014]: Accuracy Decimals: 1
[12:08:18][C][resistance:010]: Resistance Sensor 'Cold_Water_Temp'
[12:08:18][C][resistance:010]: Unit of Measurement: 'Ω'
[12:08:18][C][resistance:010]: Accuracy Decimals: 1
[12:08:18][C][resistance:010]: Icon: 'mdi:flash'
[12:08:18][C][resistance:011]: Configuration: UPSTREAM
[12:08:18][C][resistance:012]: Resistor: 10000.00Ω
[12:08:18][C][resistance:013]: Reference Voltage: 3.3V
[12:08:18][C][adc:028]: ADC Sensor 'cold_sensor'
[12:08:18][C][adc:028]: Device Class: 'voltage'
[12:08:18][C][adc:028]: Unit of Measurement: 'V'
[12:08:18][C][adc:028]: Accuracy Decimals: 2
[12:08:18][C][adc:037]: Pin: 39
[12:08:18][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:08:18][C][adc:053]: Update Interval: 60.0s
[12:08:18][C][ntc:014]: NTC Sensor 'Hot Water Temperature'
[12:08:18][C][ntc:014]: Device Class: 'temperature'
[12:08:18][C][ntc:014]: Unit of Measurement: '°C'
[12:08:18][C][ntc:014]: Accuracy Decimals: 1
[12:08:18][C][resistance:010]: Resistance Sensor 'Hot_Water_Temp'
[12:08:18][C][resistance:010]: Unit of Measurement: 'Ω'
[12:08:18][C][resistance:010]: Accuracy Decimals: 1
[12:08:18][C][resistance:010]: Icon: 'mdi:flash'
[12:08:18][C][resistance:011]: Configuration: UPSTREAM
[12:08:18][C][resistance:012]: Resistor: 10000.00Ω
[12:08:18][C][resistance:013]: Reference Voltage: 3.3V
[12:08:18][C][adc:028]: ADC Sensor 'hot_sensor'
[12:08:18][C][adc:028]: Device Class: 'voltage'
[12:08:18][C][adc:028]: Unit of Measurement: 'V'
[12:08:18][C][adc:028]: Accuracy Decimals: 2
[12:08:18][C][adc:037]: Pin: 36
[12:08:18][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:08:18][C][adc:053]: Update Interval: 60.0s
[12:08:18][C][adc:028]: ADC Sensor 'Prefilter'
[12:08:18][C][adc:028]: Device Class: 'voltage'
[12:08:18][C][adc:028]: Unit of Measurement: 'V'
[12:08:18][C][adc:028]: Accuracy Decimals: 2
[12:08:18][C][adc:037]: Pin: 34
[12:08:18][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:08:18][C][adc:053]: Update Interval: 60.0s
[12:08:18][C][adc:028]: ADC Sensor 'Postfilter'
[12:08:18][C][adc:028]: Device Class: 'voltage'
[12:08:18][C][adc:028]: Unit of Measurement: 'V'
[12:08:18][C][adc:028]: Accuracy Decimals: 2
[12:08:18][C][adc:037]: Pin: 35
[12:08:18][C][adc:046]: Attenuation: 6db (max 2.2V)
[12:08:18][C][adc:053]: Update Interval: 60.0s
[12:08:18][C][dht:017]: DHT:
[12:08:18][C][dht:018]: Pin: GPIO5 (Mode: INPUT)
[12:08:18][C][dht:024]: Model: DHT22 (or equivalent)
[12:08:18][C][dht:027]: Update Interval: 60.0s
[12:08:18][C][dht:029]: Temperature 'Basement Temperature'
[12:08:18][C][dht:029]: Device Class: 'temperature'
[12:08:18][C][dht:029]: Unit of Measurement: '°C'
[12:08:18][C][dht:029]: Accuracy Decimals: 1
[12:08:18][C][dht:030]: Humidity 'Basement Humidity'
[12:08:18][C][dht:030]: Device Class: 'humidity'
[12:08:18][C][dht:030]: Unit of Measurement: '%'
[12:08:18][C][dht:030]: Accuracy Decimals: 0
[12:08:18][C][pulse_counter:147]: Pulse Counter 'Cold Water Flow'
[12:08:18][C][pulse_counter:147]: Unit of Measurement: 'GPM'
[12:08:18][C][pulse_counter:147]: Accuracy Decimals: 2
[12:08:19][C][pulse_counter:147]: Icon: 'mdi:water'
[12:08:19][C][pulse_counter:148]: Pin: GPIO18 (Mode: INPUT)
[12:08:19][C][pulse_counter:149]: Rising Edge: INCREMENT
[12:08:19][C][pulse_counter:150]: Falling Edge: DISABLE
[12:08:19][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:08:19][C][pulse_counter:152]: Update Interval: 60.0s
[12:08:19][C][pulse_counter:147]: Pulse Counter 'Hot Water Flow'
[12:08:19][C][pulse_counter:147]: Unit of Measurement: 'GPM'
[12:08:19][C][pulse_counter:147]: Accuracy Decimals: 2
[12:08:19][C][pulse_counter:147]: Icon: 'mdi:water'
[12:08:19][C][pulse_counter:148]: Pin: GPIO19 (Mode: INPUT)
[12:08:19][C][pulse_counter:149]: Rising Edge: INCREMENT
[12:08:19][C][pulse_counter:150]: Falling Edge: DISABLE
[12:08:19][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:08:19][C][pulse_counter:152]: Update Interval: 60.0s
[12:08:19][C][pulse_counter:147]: Pulse Counter 'Water Heater Status'
[12:08:19][C][pulse_counter:147]: Unit of Measurement: 'pulses/min'
[12:08:19][C][pulse_counter:147]: Accuracy Decimals: 2
[12:08:19][C][pulse_counter:147]: Icon: 'mdi:pulse'
[12:08:19][C][pulse_counter:148]: Pin: GPIO14 (Mode: INPUT_PULLDOWN)
[12:08:19][C][pulse_counter:149]: Rising Edge: DISABLE
[12:08:19][C][pulse_counter:150]: Falling Edge: INCREMENT
[12:08:19][C][pulse_counter:151]: Filtering pulses shorter than 13 µs
[12:08:19][C][pulse_counter:152]: Update Interval: 60.0s
[12:08:19][C][homeassistant.time:010]: Home Assistant Time:
[12:08:19][C][homeassistant.time:011]: Timezone: 'EST5EDT4,M3.2.0/2,M11.1.0/2'
[12:08:19][C][captive_portal:169]: Captive Portal:
[12:08:19][C][ota:029]: Over-The-Air Updates:
[12:08:19][C][ota:030]: Address: 618_blueshutters_basement.local:3232
[12:08:19][C][ota:032]: Using Password.
[12:08:19][C][api:095]: API Server:
[12:08:19][C][api:096]: Address: 618_blueshutters_basement.local:6053
[12:08:21][D][api.connection:617]: Client 'Home Assistant 2021.6.6 (172.16.1.18)' connected successfully!
[12:08:21][D][time:040]: Synchronized time: Thu Jun 24 12:08:21 2021
[12:08:49][D][dht:048]: Got Temperature=18.7°C Humidity=69.8%
[12:08:49][D][sensor:099]: 'Basement Temperature': Sending state 18.70000 °C with 1 decimals of accuracy
[12:08:49][D][sensor:099]: 'Basement Humidity': Sending state 69.80000 % with 0 decimals of accuracy
[12:08:50][D][adc:058]: 'cold_sensor': Got voltage=0.35V
[12:08:50][D][sensor:099]: 'cold_sensor': Sending state 0.35350 V with 2 decimals of accuracy

[12:08:50][D][resistance:037]: 'Cold_Water_Temp' - Resistance 83351.0Ω
[12:08:50][D][sensor:099]: 'Cold_Water_Temp': Sending state 83351.04688 Ω with 1 decimals of accuracy
[12:08:50][D][ntc:026]: 'Cold Water Temperature' - Temperature: 14.4°C

[12:08:50][D][sensor:099]: 'Cold Water Temperature': Sending state 14.38544 °C with 1 decimals of accuracy
[12:09:00][D][adc:058]: 'Postfilter': Got voltage=0.07V
[12:09:00][D][sensor:099]: 'Postfilter': Sending state 0.06930 V with 2 decimals of accuracy
[12:09:01][D][adc:058]: 'hot_sensor': Got voltage=0.68V
[12:09:01][D][sensor:099]: 'hot_sensor': Sending state 0.67961 V with 2 decimals of accuracy

[12:09:01][D][resistance:037]: 'Hot_Water_Temp' - Resistance 38557.3Ω
[12:09:01][D][sensor:099]: 'Hot_Water_Temp': Sending state 38557.30859 Ω with 1 decimals of accuracy
[12:09:01][D][ntc:026]: 'Hot Water Temperature' - Temperature: 30.7°C

[12:09:01][D][sensor:099]: 'Hot Water Temperature': Sending state 30.65219 °C with 1 decimals of accuracy
[12:09:07][D][pulse_counter:159]: 'Cold Water Flow': Retrieved counter: 0.00 pulses/min
[12:09:07][D][sensor:099]: 'Cold Water Flow': Sending state 0.00000 GPM with 2 decimals of accuracy
[12:09:10][D][pulse_counter:159]: 'Water Heater Status': Retrieved counter: 144.00 pulses/min
[12:09:11][D][adc:058]: 'Prefilter': Got voltage=0.21V
[12:09:11][D][sensor:099]: 'Prefilter': Sending state 0.20576 V with 2 decimals of accuracy
[12:09:11][D][pulse_counter:159]: 'Hot Water Flow': Retrieved counter: 0.00 pulses/min
[12:09:11][D][sensor:099]: 'Hot Water Flow': Sending state 0.00000 GPM with 2 decimals of accuracy
[12:09:12][D][sensor:099]: 'Water Heater Status': Sending state 144.00000 pulses/min with 2 decimals of accuracy

@close-issue-app
Copy link

#430

@github-actions github-actions bot locked and limited conversation to collaborators Oct 24, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant