Advertisement
orborbson

true adc

Sep 14th, 2024 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | Source Code | 0 0
  1. from machine import Pin, ADC
  2. import time, gc
  3.  
  4. """
  5. 3.14V = 4095 (ATTN_11DB)
  6. """
  7. def true_adc(v):
  8.     if v < 1 or v > 4095:
  9.         return 0
  10.     return -0.000000000000016 * pow(v, 4) + 0.000000000118171 * pow(v, 3) - 0.000000301211691 * pow(v, 2) + 0.001109019271794 * v + 0.034143524634089
  11.  
  12. adc = ADC(Pin(34, mode=Pin.IN))
  13. adc.atten(ADC.ATTN_11DB)
  14.  
  15. while True:
  16.     gc.collect()
  17.     t = time.localtime()
  18.     volt = true_adc(adc.read())
  19.     print("%.2i-%.2i-%.4i %.2i:%.2i:%.2i ==> %.2fV" % (t[2], t[1], t[0], t[3], t[4], t[5], volt))
  20.     time.sleep(1)
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement