start:arduino:esp32:smarthome
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
start:arduino:esp32:smarthome [2023/04/28 18:24] – [Test Capteur_Temp] gerardadmin | start:arduino:esp32:smarthome [2025/02/26 11:54] (Version actuelle) – [GPIO ESP32 Et Capteurs/Actionneurs] admin | ||
---|---|---|---|
Ligne 16: | Ligne 16: | ||
===== GPIO ESP32 Et Capteurs/ | ===== GPIO ESP32 Et Capteurs/ | ||
+ | *GPIO 05 => SERVO Fenetre | ||
*GPIO 12 => LED | *GPIO 12 => LED | ||
- | *GPIO 16 => Bouton Gauche | + | *GPIO 13 => SERVO Porte Avant |
- | *GPIO 27 => Bouton Droit | + | |
*GPIO 14 => PIR(Detection presence ON=1 OFF=0) | *GPIO 14 => PIR(Detection presence ON=1 OFF=0) | ||
- | *GPIO 25 => BUZZER | + | *GPIO 16 => Bouton Gauche |
- | *GPIO 13 => SERVO Porte Avant | + | *GPIO 17 => DHT11 Temperature |
- | *GPIO 05 => SERVO Fenetre | + | |
- | *GPIO 34 => Capteur Humidite | + | |
- | *GPIO 26 => LED Neopixel (4) | + | |
*GPIO 18 => Ventilateur Sens 1 | *GPIO 18 => Ventilateur Sens 1 | ||
*GPIO 19 => Ventilateur Sens 2 | *GPIO 19 => Ventilateur Sens 2 | ||
+ | *GPIO 21=SDA => I2C(1) | ||
+ | *GPIO 22=SCL => I2C(1) | ||
*GPIO 23 => Gaz | *GPIO 23 => Gaz | ||
- | *GPIO 17 => DHT11 Temperature | + | *GPIO 25 => BUZZER |
- | *I2C 0x27 => Afficheur | + | *GPIO 26 => LED Neopixel (4 leds RVB) |
- | *I2C 0x28 => RFID , Carte = 131233147231 , Badge = 243636633 | + | *GPIO 27 => Bouton Droit |
+ | *GPIO 34 => Capteur Humidite | ||
+ | *I2C 0x27 => Afficheur | ||
+ | *I2C 0x28 => RFID MFRC522 | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | [[start: | ||
==== Test Variation LED ==== | ==== Test Variation LED ==== | ||
Ligne 592: | Ligne 602: | ||
{ | { | ||
boolean btn_val = digitalRead(btn1); | boolean btn_val = digitalRead(btn1); | ||
+ | { | ||
if(btn_val == 1) //If the button is released | if(btn_val == 1) //If the button is released | ||
btn_count++; | btn_count++; | ||
Ligne 878: | Ligne 889: | ||
</ | </ | ||
+ | |||
+ | |||
+ | ==== Test Password avec Bouton ==== | ||
+ | |||
+ | <code c Test_password_bouton.ino> | ||
+ | #include < | ||
+ | #include < | ||
+ | LiquidCrystal_I2C mylcd(0x27, | ||
+ | #include " | ||
+ | // Setup a new OneButton on pin 16. | ||
+ | OneButton button1(16, true); | ||
+ | // Setup a new OneButton on pin 27. | ||
+ | OneButton button2(27, true); | ||
+ | #include < | ||
+ | Servo myservo; | ||
+ | int servoPin = 13; | ||
+ | String password = ""; | ||
+ | String correct_p = " | ||
+ | |||
+ | // setup code here, to run once: | ||
+ | void setup() { | ||
+ | Serial.begin(115200); | ||
+ | mylcd.init(); | ||
+ | mylcd.backlight(); | ||
+ | // link the button 1 functions. | ||
+ | button1.attachClick(click1); | ||
+ | button1.attachLongPressStop(longPressStop1); | ||
+ | // link the button 2 functions. | ||
+ | button2.attachClick(click2); | ||
+ | button2.attachLongPressStop(longPressStop2); | ||
+ | |||
+ | myservo.attach(servoPin); | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // keep watching the push buttons: | ||
+ | button1.tick(); | ||
+ | button2.tick(); | ||
+ | delay(10); | ||
+ | } | ||
+ | |||
+ | // ----- button 1 callback functions | ||
+ | // This function will be called when the button1 was pressed 1 time (and no 2. button press followed). | ||
+ | void click1() { | ||
+ | Serial.print(" | ||
+ | password = password + ' | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(password); | ||
+ | } // click1 | ||
+ | |||
+ | // This function will be called once, when the button1 is released after being pressed for a long time. | ||
+ | void longPressStop1() { | ||
+ | Serial.print(" | ||
+ | password = password + ' | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(password); | ||
+ | } // longPressStop1 | ||
+ | |||
+ | // ... and the same for button 2: | ||
+ | void click2() { | ||
+ | Serial.println(password); | ||
+ | if(password == correct_p) | ||
+ | { | ||
+ | myservo.write(180); | ||
+ | mylcd.clear(); | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | mylcd.clear(); | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | delay(2000); | ||
+ | mylcd.clear(); | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | } | ||
+ | password = ""; | ||
+ | } // click2 | ||
+ | |||
+ | void longPressStop2() { | ||
+ | // | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | } // longPressStop2 | ||
+ | </ | ||
+ | |||
+ | ====== SmartHome MicroPython3 ====== | ||
/home/chanteri/www/fablab37110/data/attic/start/arduino/esp32/smarthome.1682699046.txt.gz · Dernière modification : 2023/04/28 18:24 de gerardadmin