Editing Potentiometer

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
 
= Description =
 
= Description =
A potentiometer is a resistor that can be mechanically changed. Typically form factors are knobs (turn to change) or sliders. The change of resistance is either linear (resistance changes linear with the angle or distance) or logarithmic.
+
Text
  
Potentiometer
+
Image(s)
  
[[File:Poti.PNG|x150px]]
 
  
Slider
+
= How to connect it electrically =
 
+
Text
[[File:Slider.PNG|x150px]]
 
  
= How to connect it electrically =
+
Image(s)
[[File:PotiConnection1.png|300px]]
 
  
 
= How to control it in MicroPython =
 
= How to control it in MicroPython =
 
<syntaxhighlight lang="python" line='line'>
 
<syntaxhighlight lang="python" line='line'>
#ESP32 or ESP8266
+
# todo
from machine import Pin, ADC
+
# code goes here
from time import sleep
 
pot = ADC(Pin(34))
 
pot.atten(ADC.ATTN_11DB)
 
while True:
 
  pot_value = pot.read()
 
  print(pot_value)
 
  sleep(0.5)
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
= A small Program in MicroPython =
 
<syntaxhighlight lang="python" line='line'>
 
<syntaxhighlight lang="python" line='line'>
#Raspberry Pi Pico
+
# todo
from machine import Pin, ADC
+
# code goes here
from time import sleep
 
pot = ADC(Pin(26))
 
conversion_factor = 3.3 / (65535)
 
while True:
 
  pot_value = pot.read_u16() * conversion_factor
 
  print(pot_value)
 
  sleep(0.5)
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
text
  
Here the voltage of Pin 34 (for the ESP) or on Pin GP26 (for the Pico) is manipulable with the poti:
+
image(s)
  
[[File:PotiConnection2.jpg|300px]]
+
= Related Tutorial Videos =
  
 +
<youtube>gjj5KyK2qGI</youtube>
  
Schematic drawing:
 
 
[[File:PotiConnection1.png|300px]]
 
  
= Related Tutorial Videos =
+
= Background =
 +
text
  
<youtube>gjj5KyK2qGI</youtube>
+
image(s)

Please note that all contributions to Sketching with Hardware at LMU Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see My wiki:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)