Modifications

Sauter à la navigation Sauter à la recherche
174 octets ajoutés ,  24 mai 2021 à 23:12
Ligne 7 : Ligne 7 :     
[[Fichier:MicroPython-esp32-evb-relais.png]]
 
[[Fichier:MicroPython-esp32-evb-relais.png]]
 +
 +
 +
<syntaxhighlight lang="python">
 +
from machine import Pin
 +
 +
rel1 = Pin( 32, Pin.OUT )
 +
rel2 = Pin( 33, Pin.OUT )
 +
 +
rel1.on()
 +
rel1.off()
 +
 +
rel2.on()
 +
rel2.off()
 +
</syntaxhighlight>
    
== Où acheter ==
 
== Où acheter ==
 
* [https://shop.mchobby.be/product.php?id_product=1306 ESP32-EVB] @ MCHobby
 
* [https://shop.mchobby.be/product.php?id_product=1306 ESP32-EVB] @ MCHobby
 
* [https://www.olimex.com/Products/IoT/ESP32/ESP32-EVB/open-source-hardware ESP32-EVB] @ Olimex
 
* [https://www.olimex.com/Products/IoT/ESP32/ESP32-EVB/open-source-hardware ESP32-EVB] @ Olimex
29 918

modifications

Menu de navigation