ESP32 ADC Not working after update

Hello, when I update from 1.18.0 to 1.19.4.
ADC on ESP32 measure almost zero. Before update it works.

  - platform: adc
# 5V a dělič na 1V  
    pin: 34
    name: "D Sklep Tlak Přívod"
    update_interval: 1s    
    filters:
      - calibrate_linear:
      #0.5V=0bar 4.5V=10.3bar delič 3k3 a 820R 4:1 = /5 => 0.1 .. 0.9V 
          - 0.1 -> 0.0
          - 0.9 -> 10.3
      - sliding_window_moving_average:
          window_size: 10
          send_every: 2
      - delta: 0.1
    unit_of_measurement: "bar"
    accuracy_decimals: 1
[D][adc:058]: 'D Sklep Tlak Přívod': Got voltage=0.11V

Do you have same problem or do you know how to fix it?

Sounds like the issue I had. I opened an issue on github. Long story short, something changed in the Arduino IDE. You can specify and older version and it corrected my issue.

1 Like