Hi my name is amirul, i want to ask about arduino coding, i want to make a pet food dispenser but i am still trying by replacing led as output, this project works in a way able to control via phone via blynk and ultrasonic sensor able to detect the presence and turn on led lights , the coding I'm trying to create I want it to work like:
- when blynk is pressed, the led light will come on
- when the ultrasonic detects the presence, it will turn on the led and the led will turn off for 5 min before functioning again as usual.
I'm stuck and don't know how to turn off the led for 5 minutes.
Ask the master for help to deal with my problem, sorry to bother
#define BLYNK_TEMPLATE_ID "TMPLlYOcF71F"
#define BLYNK_DEVICE_NAME "SHIBAL"
#define BLYNK_FIRMWARE_VERSION "0.1.0"
#define BLYNK_PRINT Serial
#define APP_DEBUG
// Uncomment your board, or configure a custom board in Settings.h
#define USE_ESP32_DEV_MODULE
#define TRIG_PIN 26 // ESP32 pin GIOP26 connected to Ultrasonic Sensor's TRIG pin
#define ECHO_PIN 25 // ESP32 pin GIOP25 connected to Ultrasonic Sensor's ECHO pin
#define LED_PIN 17 // ESP32 pin GIOP17 connected to LED's pin
#define DISTANCE_THRESHOLD 50 // centimeters
#include "BlynkEdgent.h"
BLYNK_WRITE(V0)
{
int pinValue = param.asInt();
// digitalWrite(17,pinValue);
digitalWrite(LED_PIN,OUTPUT);
delay(1000);
}
// The below are variables, which can be changed
float duration_us, distance_cm;
void setup() {
Serial.begin(115200); // initialize serial port
pinMode(TRIG_PIN, OUTPUT); // set ESP32 pin to output mode
pinMode(ECHO_PIN, INPUT); // set ESP32 pin to input mode
pinMode(LED_PIN, OUTPUT); // set ESP32 pin to output mode
delay(1000);
BlynkEdgent.begin();
}
void loop() {
// generate 10-microsecond pulse to TRIG pin
digitalWrite(TRIG_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIG_PIN, LOW);
// measure duration of pulse from ECHO pin
duration_us = pulseIn(ECHO_PIN, HIGH);
// calculate the distance
distance_cm = 0.017 * duration_us;
if (distance_cm < DISTANCE_THRESHOLD)
digitalWrite(LED_PIN, HIGH); // turn on LED
else
digitalWrite(LED_PIN, LOW); // turn off LED
// print the value to Serial Monitor
Serial.print("distance: ");
Serial.print(distance_cm);
Serial.println(" cm");
delay(500);
BlynkEdgent.run();
}