Plante emoji

Les fonctions

"setup" et "loop"

Matrice de leds

Branchement matrice

VVC
GND
DIN
CS
CLK

+5V

GND
12
10
11

Les objets

Importer la biblitohèque "LedControl"

LedControl matrice = LedControl(12, 11, 10, 1);

matrice.shutdown(0, false);

matrice.setLed(0, 4, 2, true);

Dessiner 2 emoji

Capteur d'humidité

Branchement capteur d'humidité

VVC
GND
A0

+5V

GND
A0

Variable

int humidite = analogRead(0);

Serial.println(humidite);

Serial.begin(9600);

Quelle est la condition dans notre cas ?

if (humidite < 500){

 

} else {

 

}

Allumer une led

matrice.setLed(0, colonne, ligne, true);

Eteindre toutes les leds

matrice.clearDisplay(0);

Bravo !!!

Plante emoji (FIOT)

By aghaniyassin

Plante emoji (FIOT)

  • 1,125