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 15: Line 15:
 
= 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
 
 
from machine import Pin, ADC
 
from machine import Pin, ADC
 
from time import sleep
 
from time import sleep
Line 26: Line 25:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
<syntaxhighlight lang="python" line='line'>
+
Here the voltage of Pin 34 is manipulable with the poti:
#Raspberry Pi Pico
 
from machine import Pin, ADC
 
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>
 
 
 
 
 
Here the voltage of Pin 34 (for the ESP) or on Pin GP26 (for the Pico) is manipulable with the poti:
 
  
 
[[File:PotiConnection2.jpg|300px]]
 
[[File:PotiConnection2.jpg|300px]]
 
  
 
Schematic drawing:
 
Schematic drawing:
  
 
[[File:PotiConnection1.png|300px]]
 
[[File:PotiConnection1.png|300px]]
 +
 +
  
 
= Related Tutorial Videos =
 
= Related Tutorial Videos =
  
 
<youtube>gjj5KyK2qGI</youtube>
 
<youtube>gjj5KyK2qGI</youtube>

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)