Tutorial Analog IN

From Sketching with Hardware at LMU Wiki
Jump to navigation Jump to search

Analog Input with MicroPyton and ESP32/ESP8266

In this part of the tutorial, we demonstrate how to read in an analog value using MicroPyton on ESP32/ESP8266. We also show how we can use the analog input to measure a changing resistor. This includes looking at the voltage range that can be measured the resolution of the analog-digital converter (ADC).

Success criteria

  • you can read in an analog value from the python prompt
  • you understand how to build a voltage divider to read a sensor value from a changing resistor
  • you can connect a Potentiometer, a slider, and a LDR to the ESP32/ESP8266 and read the value


Related Components

The components are related to the LMUBox. For more components, see the [[Hardware List]. Many of the pages on actuators and sensors include additional examples.

Microcontroller

Sensors (and physical controllers)

Instructional Videos

The videos are a first test... the ones marked with ** will be replaced over the next months with new versions.

If you use the ESP8266_D1_Mini have a look at this file about which Pins to use: https://micropython-on-wemos-d1-mini.readthedocs.io/en/latest/basics.html


Analog Input - ADC - connecting a variable resistor **

In this video on youtube (46:23) we show how to connect to read in an analog value with MicroPython. We also show how a sensor that is based on a changing resistance can be connected using a voltage divider: https://youtu.be/gjj5KyK2qGI

Schematics and Code Example

Schematics for connecting to ESP32

This should divide the voltage by half as both resistors are the same - you should read a value of about 2000 (assuming 12Bit resolution with a range of 0-4096)

R2.JPG

Connecting the potentiometer (poti) or slider. The value you read is dependent on where your poti or slider stands.

Rpoti.JPG

Connecting the light dependent resistor (LDR). The value you read is dependent on how bright it is.

Rldr.JPG

Code Example

This makes Pin 34 an analog input and set it to 12 bit. It reads the analog value every second and print it to the console-

 1 #Example usage for ESP32
 2 from machine import Pin, ADC
 3 from time import sleep
 4 
 5 analogPin = ADC(Pin(34))
 6 analogPin.atten(ADC.ATTN_11DB)
 7 
 8 while True:
 9   analogVal = analogPin.read()
10   print(analogVal)
11   sleep(1)