Modifications

Sauter à la navigation Sauter à la recherche
134 octets ajoutés ,  21 février 2022 à 00:39
Ligne 17 : Ligne 17 :     
== Input Reading ==
 
== Input Reading ==
The onboard LED is tied to the GPIO 25. Here how to control it.
+
The following code will read the state of the GP15 configured as input pin.
    
<syntaxhighlight lang="python">
 
<syntaxhighlight lang="python">
from machine import Pin
+
>>> from machine import Pin
x
+
>>> in = Pin( 15, Pin.IN )
x
+
>>> in.value()
x
+
0            <--- Pin tied to GND
x
+
>>> in.value()
 +
1            <--- Pin tied to 3.3V
 
</syntaxhighlight>
 
</syntaxhighlight>
  
29 917

modifications

Menu de navigation