Difference between revisions of "Switch"

From Sketching with Hardware at LMU Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by one other user not shown)
Line 5: Line 5:
  
 
= How to connect it electrically =
 
= How to connect it electrically =
Text
+
[[File:Switch02.PNG]]
 
 
Image(s)
 
  
 
= How to control it in MicroPython =
 
= How to control it in MicroPython =
Line 16: Line 14:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
= A small Program in MicroPython =
 
<syntaxhighlight lang="python" line='line'>
 
# todo
 
# code goes here
 
</syntaxhighlight>
 
 
text
 
 
image(s)
 
  
 
= Related Tutorial Videos =
 
= Related Tutorial Videos =
Line 31: Line 20:
 
<youtube>va1beT6sxLs</youtube>
 
<youtube>va1beT6sxLs</youtube>
  
= Background =
+
[[Category:Sensor]]
text
 
 
 
image(s)
 

Latest revision as of 08:50, 11 June 2024

Description[edit]

With this switch we can select which of the two sides are connected to the middle. If we move the switch right then the right pin is connected to the middle. If we move the switch left then the left pin is connected to the middle,

Switch01.PNG

How to connect it electrically[edit]

Switch02.PNG

How to control it in MicroPython[edit]

1 from machine import Pin
2 in26 = Pin(26, Pin.IN)
3 print(in26.value())


Related Tutorial Videos[edit]

Digital Input