Difference between revisions of "Potentiometer"

From Sketching with Hardware at LMU Wiki
Jump to navigation Jump to search
Line 11: Line 11:
  
 
= How to connect it electrically =
 
= How to connect it electrically =
Text
+
[[File:PotiConnection1.png|300px]]
 
 
Image(s)
 
  
 
= How to control it in MicroPython =
 
= How to control it in MicroPython =
Line 32: Line 30:
  
 
Schematic drawing:
 
Schematic drawing:
 +
 
[[File:PotiConnection1.png|300px]]
 
[[File:PotiConnection1.png|300px]]
  
= A small Program in MicroPython =
 
<syntaxhighlight lang="python" line='line'>
 
# todo
 
# code goes here
 
</syntaxhighlight>
 
  
text
 
 
image(s)
 
  
 
= Related Tutorial Videos =
 
= Related Tutorial Videos =
  
 
<youtube>gjj5KyK2qGI</youtube>
 
<youtube>gjj5KyK2qGI</youtube>
 
 
= Background =
 
text
 
 
image(s)
 

Revision as of 00:39, 30 August 2020

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.

Potentiometer

Poti.PNG

Slider

Slider.PNG

How to connect it electrically

PotiConnection1.png

How to control it in MicroPython

1 from machine import Pin, ADC
2 from time import sleep
3 pot = ADC(Pin(34))
4 pot.atten(ADC.ATTN_11DB)
5 while True:
6   pot_value = pot.read()
7   print(pot_value)
8   sleep(0.5)

Here the voltage of Pin 34 is manipulable with the poti:

PotiConnection2.jpg

Schematic drawing:

PotiConnection1.png


Related Tutorial Videos