Modifications

Sauter à la navigation Sauter à la recherche
28 octets ajoutés ,  21 février 2022 à 00:03
aucun résumé de modification
Ligne 4 : Ligne 4 :  
This section of the tutoriel contains small portion of code explaining how to use digital pins, analog pins, buses and all the fundamentals to control the board with Python code.
 
This section of the tutoriel contains small portion of code explaining how to use digital pins, analog pins, buses and all the fundamentals to control the board with Python code.
    +
== Control an output ==
 +
The onboard LED is tied to the GPIO 25. Here how to control it.
 +
 +
<syntaxhighlight lang="python">
 +
from machine import Pin
 +
led = Pin(25, Pin.OUT)
 +
led.value(1) # Switch on the LED
 +
led.value(0) # Switch off the LED
 +
</syntaxhighlight>
 +
 +
This will work the same with any GPIO pins.
 +
 +
== Additional tutorials ==
 
Anyway, the followings are also goods and complete references.
 
Anyway, the followings are also goods and complete references.
   Ligne 33 : Ligne 46 :  
{{ttuto-end}}
 
{{ttuto-end}}
   −
== Control an output ==
  −
The onboard LED is tied to the GPIO 25. Here how to control it.
  −
  −
<syntaxhighlight lang="python">
  −
from machine import Pin
  −
led = Pin(25, Pin.OUT)
  −
led.value(1) # Switch on the LED
  −
led.value(0) # Switch off the LED
  −
</syntaxhighlight>
  −
  −
This will work the same with any GPIO pins.
      
{{ENG-CANSAT-PICO-TRAILER}}
 
{{ENG-CANSAT-PICO-TRAILER}}
29 918

modifications

Menu de navigation