Switch: Difference between revisions

From Sketching with Hardware at LMU Wiki
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:
</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 30: Line 21:


<youtube>va1beT6sxLs</youtube>
<youtube>va1beT6sxLs</youtube>
= Background =
text
image(s)

Revision as of 23:51, 29 August 2020

Description

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,

How to connect it electrically

Text

Image(s)

How to control it in MicroPython

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


Related Tutorial Videos

Digital Input