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 13:17] – [Test capteur Gaz] 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 | ||
- | *I2C 0x27 => Afficheur | + | |
+ | *GPIO 26 => LED Neopixel (4 leds RVB) | ||
+ | *GPIO 27 => Bouton Droit | ||
+ | *GPIO 34 => Capteur Humidite | ||
+ | | ||
+ | *I2C 0x28 => RFID MFRC522 , Carte = 131233147231 , Badge = 243636633 | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | [[start: | ||
==== Test Variation LED ==== | ==== Test Variation LED ==== | ||
Ligne 590: | 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 719: | Ligne 732: | ||
</ | </ | ||
- | ==== Test _Capteur_DHT11_Temperature | + | ==== Test Capteur_Temp |
<code c Test_Capteur_Temp_DHT11.ino> | <code c Test_Capteur_Temp_DHT11.ino> | ||
Ligne 767: | Ligne 780: | ||
+ | ==== Test Capteur RFID ==== | ||
+ | |||
+ | <code c test_RFID.ino> | ||
+ | // | ||
+ | / | ||
+ | * Filename | ||
+ | * Description : RFID reader UID | ||
+ | * Auther | ||
+ | */ | ||
+ | #include < | ||
+ | #include < | ||
+ | LiquidCrystal_I2C mylcd(0x27, | ||
+ | #include < | ||
+ | Servo myservo; | ||
+ | #include < | ||
+ | #include " | ||
+ | // IIC pins default to GPIO21 and GPIO22 of ESP32 | ||
+ | // 0x28 is the i2c address of SDA, if doesn' | ||
+ | MFRC522 mfrc522(0x28); | ||
+ | #define servoPin | ||
+ | #define btnPin 16 | ||
+ | boolean btnFlag = 0; | ||
+ | |||
+ | String password = ""; | ||
+ | |||
+ | void setup() { | ||
+ | Serial.begin(115200); | ||
+ | mylcd.init(); | ||
+ | mylcd.backlight(); | ||
+ | Wire.begin(); | ||
+ | mfrc522.PCD_Init(); | ||
+ | ShowReaderDetails(); | ||
+ | Serial.println(F(" | ||
+ | myservo.attach(servoPin, | ||
+ | pinMode(btnPin, | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // | ||
+ | if ( ! mfrc522.PICC_IsNewCardPresent() || ! mfrc522.PICC_ReadCardSerial() ) { | ||
+ | delay(50); | ||
+ | password = ""; | ||
+ | if(btnFlag == 1) | ||
+ | { | ||
+ | boolean btnVal = digitalRead(btnPin); | ||
+ | if(btnVal == 0) //Swipe the card to open the door and click button 1 to close the door | ||
+ | { | ||
+ | Serial.println(" | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | myservo.write(0); | ||
+ | btnFlag = 0; | ||
+ | } | ||
+ | } | ||
+ | return; | ||
+ | } | ||
+ | | ||
+ | // select one of door cards. UID and SAK are mfrc522.uid. | ||
+ | | ||
+ | // save UID | ||
+ | Serial.print(F(" | ||
+ | for (byte i = 0; i < mfrc522.uid.size; | ||
+ | Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "); | ||
+ | // | ||
+ | Serial.print(mfrc522.uid.uidByte[i]); | ||
+ | password = password + String(mfrc522.uid.uidByte[i]); | ||
+ | } | ||
+ | // | ||
+ | if(password == " | ||
+ | { | ||
+ | Serial.println(" | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.clear(); | ||
+ | mylcd.print(" | ||
+ | myservo.write(180); | ||
+ | password = ""; | ||
+ | btnFlag = 1; | ||
+ | } | ||
+ | else //The card number is wrong,LCD displays error | ||
+ | { | ||
+ | password = ""; | ||
+ | mylcd.setCursor(0, | ||
+ | mylcd.print(" | ||
+ | } | ||
+ | // | ||
+ | } | ||
+ | |||
+ | void ShowReaderDetails() { | ||
+ | // attain the MFRC522 software | ||
+ | byte v = mfrc522.PCD_ReadRegister(mfrc522.VersionReg); | ||
+ | Serial.print(F(" | ||
+ | Serial.print(v, | ||
+ | if (v == 0x91) | ||
+ | Serial.print(F(" | ||
+ | else if (v == 0x92) | ||
+ | Serial.print(F(" | ||
+ | else | ||
+ | Serial.print(F(" | ||
+ | Serial.println("" | ||
+ | // when returning to 0x00 or 0xFF, may fail to transmit communication signals | ||
+ | if ((v == 0x00) || (v == 0xFF)) { | ||
+ | Serial.println(F(" | ||
+ | } | ||
+ | } | ||
+ | // | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ==== 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.1682680678.txt.gz · Dernière modification : 2023/04/28 13:17 de gerardadmin