Switch
Revision as of 22:54, 29 August 2020 by Skwhadmin (talk | contribs) (→How to connect it electrically)
Contents
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
How to control it in MicroPython
1 from machine import Pin
2 in26 = Pin(26, Pin.IN)
3 print(in26.value())
Related Tutorial Videos
Digital Input