Table des matières:
- Étape 1: Matériaux
- Étape 2: Création
- Étape 3: Configuration de l'IDE Arduino
- Étape 4: Configuration Del Blynk
- Étape 5: Programmation
Vidéo: Nodemcu Esp8266 + PIR + Blynk : 6 étapes
2024 Auteur: John Day | [email protected]. Dernière modifié: 2024-01-30 09:07
Nodemcu Esp8266 + PIR + Blynk
LABSTI - FIA - USMP
Étape 1: Matériaux
-Nodemcu esp8266
- Capteur PIR
- Application mobile Blynk
Étape 2: Création
Étape 3: Configuration de l'IDE Arduino
La "Vitesse de téléchargement" de la configuration du NodeMCU debe ser igual al "baudio" del monitor serie.
Étape 4: Configuration Del Blynk
Conditions requises:
- Descargar el aplicativo móvil "Blynk"
Étapes:
- Seleccionar la opción "+ New Project", pour créer un nouveau projet.
- Seleccionar el dispositivo (ESP8266), agregar un nombre y seleccionar el botón "Créer".
- Ingresar al proyecto recién creado y seleccionar la opción "(+)".
- Seleccionar la opción "Button", pour créer un nouveau bouton en el proyecto.
- Configurar el botón recién creado:- Ingresar un nombre al botón.- Ingresar al "OUTPUT" y seleccionar "V0". - Cambiar la opción "Mode" a "Switch".
- Sélectionnez l'option "Notification".
- Configurer les notifications. Dejar por predeterminado.
- Ingresar a la opción de "tuerca" para validar el dispositivo.
- Verificar el "Auth Token" sea el mismo que se ingreso en el código.
El Auth Token se obtiene al crear un nuevo proyecto la cual lo recibiremos por nuestro correo electrónico asociado.
Étape 5: Programmation
#comprendre
#define BLYNK_PRINT Série
#comprendre
char auth = "Tu jeton d'authentification"; // Auth Token del app móvil Blynk
/* Credenciales de WiFi */
char ssid = "Tu rouge"; // nombre de la red wifi char pass = "Tu contraseña"; // contraseña de la wifi rouge
/* Détecteur de mouvement HC-SR501 */
#define pirPin 5 // Entrée pour HC-S501 int pirValue; int pinValue;
BLYNK_WRITE(V0)
{ pinValue = param.asInt(); }
void setup()
{ Serial.begin(115200); retard(10); Blynk.begin(auth, ssid, pass); pinMode(pirPin, INPUT); }
boucle vide()
{ if (pinValue == HIGH) { getPirValue(); } Blynk.run(); }
void getPirValue(void)
{ pirValue = digitalRead(pirPin); if (pirValue) { Serial.println("Mouvement détecté"); Blynk.notify("Mouvement détecté"); } }