KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
New Blynk IOT Smart Plant Monitoring System
16:54
How to make a plant watering system with the Nodemcu ESP8266 board and the new Blynk update
8:03
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
UFC 308 : Уиттакер VS Чимаев
01:54
У вас там какие таланты ?😂
00:19
MY HEIGHT vs MrBEAST CREW 🙈📏
00:22
Smart Irrigation using ESP8266 and IoT | IoT plant monitoring system | IoT | Esp8266
Рет қаралды 3,125
Facebook
Twitter
Жүктеу
1
Жазылу 118
Elextrolyte
Күн бұрын
Пікірлер: 9
@Elextrolyte
Ай бұрын
Here's the code: #define BLYNK_TEMPLATE_ID "" #define BLYNK_TEMPLATE_NAME "" #define BLYNK_AUTH_TOKEN "" #include #include char auth[] = ""; // Blynk Auth Token char ssid[] = ""; // WiFi Network Name char pass[] = ""; // WiFi Password int sensorPin = A0; // Soil Moisture Sensor Pin int relayPin = D0; // Relay Pin int threshold = 40; // Moisture threshold percentage BLYNK_WRITE(V3) { int buttonState = param.asInt(); Serial.print("Button state: "); Serial.println(buttonState); if (buttonState == 1) { digitalWrite(relayPin, LOW); Serial.println("Water pump turned ON"); } else { digitalWrite(relayPin, HIGH); Serial.println("Water pump turned OFF"); } } void setup() { Serial.begin(115200); Blynk.begin(auth, ssid, pass); pinMode(sensorPin, INPUT); pinMode(relayPin, OUTPUT); digitalWrite(relayPin, HIGH); Serial.println("Setup complete. Connecting to Blynk..."); } void loop() { Blynk.run(); int moistureValue = analogRead(sensorPin); int moisturePercentage = map(moistureValue, 1023, 0, 0, 100); Blynk.virtualWrite(V2, moisturePercentage); Serial.print("Raw Sensor Value: "); Serial.println(moistureValue); Serial.print("Moisture Level: "); Serial.print(moisturePercentage); Serial.println("%"); if (moisturePercentage < threshold) { Blynk.logEvent("lowmoisture", "Low Moisture Detected!"); Serial.println("Low moisture detected, alert sent."); } delay(1000); }
@sgn79qed
3 ай бұрын
Wow super
@bhagyeshgunda9501
Ай бұрын
Even after running the code I am getting an error in the 39th line which is telling me to specify the template ID and name. But I have verified it several times and it's always correct idk why it's showing error
@Dehcjemkeihhehu3709
Ай бұрын
How can we get the code?
@Elextrolyte
Ай бұрын
Here's the code: #define BLYNK_TEMPLATE_ID "" #define BLYNK_TEMPLATE_NAME "" #define BLYNK_AUTH_TOKEN "" #include #include char auth[] = ""; // Blynk Auth Token char ssid[] = ""; // WiFi Network Name char pass[] = ""; // WiFi Password int sensorPin = A0; // Soil Moisture Sensor Pin int relayPin = D0; // Relay Pin int threshold = 40; // Moisture threshold percentage BLYNK_WRITE(V3) { int buttonState = param.asInt(); Serial.print("Button state: "); Serial.println(buttonState); if (buttonState == 1) { digitalWrite(relayPin, LOW); Serial.println("Water pump turned ON"); } else { digitalWrite(relayPin, HIGH); Serial.println("Water pump turned OFF"); } } void setup() { Serial.begin(115200); Blynk.begin(auth, ssid, pass); pinMode(sensorPin, INPUT); pinMode(relayPin, OUTPUT); digitalWrite(relayPin, HIGH); Serial.println("Setup complete. Connecting to Blynk..."); } void loop() { Blynk.run(); int moistureValue = analogRead(sensorPin); int moisturePercentage = map(moistureValue, 1023, 0, 0, 100); Blynk.virtualWrite(V2, moisturePercentage); Serial.print("Raw Sensor Value: "); Serial.println(moistureValue); Serial.print("Moisture Level: "); Serial.print(moisturePercentage); Serial.println("%"); if (moisturePercentage < threshold) { Blynk.logEvent("lowmoisture", "Low Moisture Detected!"); Serial.println("Low moisture detected, alert sent."); } delay(1000); }
@basiltravellifeadventures1477
19 күн бұрын
plz give zip file
@prashanthv197
3 ай бұрын
Where is the code
@Elextrolyte
Ай бұрын
Here's the code: #define BLYNK_TEMPLATE_ID "" #define BLYNK_TEMPLATE_NAME "" #define BLYNK_AUTH_TOKEN "" #include #include char auth[] = ""; // Blynk Auth Token char ssid[] = ""; // WiFi Network Name char pass[] = ""; // WiFi Password int sensorPin = A0; // Soil Moisture Sensor Pin int relayPin = D0; // Relay Pin int threshold = 40; // Moisture threshold percentage BLYNK_WRITE(V3) { int buttonState = param.asInt(); Serial.print("Button state: "); Serial.println(buttonState); if (buttonState == 1) { digitalWrite(relayPin, LOW); Serial.println("Water pump turned ON"); } else { digitalWrite(relayPin, HIGH); Serial.println("Water pump turned OFF"); } } void setup() { Serial.begin(115200); Blynk.begin(auth, ssid, pass); pinMode(sensorPin, INPUT); pinMode(relayPin, OUTPUT); digitalWrite(relayPin, HIGH); Serial.println("Setup complete. Connecting to Blynk..."); } void loop() { Blynk.run(); int moistureValue = analogRead(sensorPin); int moisturePercentage = map(moistureValue, 1023, 0, 0, 100); Blynk.virtualWrite(V2, moisturePercentage); Serial.print("Raw Sensor Value: "); Serial.println(moistureValue); Serial.print("Moisture Level: "); Serial.print(moisturePercentage); Serial.println("%"); if (moisturePercentage < threshold) { Blynk.logEvent("lowmoisture", "Low Moisture Detected!"); Serial.println("Low moisture detected, alert sent."); } delay(1000); }
@mstprova8602
Ай бұрын
@@Elextrolyte In code you set relayPin = D0 but in the vdo, u r showing to connect relay IN with esp8266 D1
16:54
New Blynk IOT Smart Plant Monitoring System
Viral Science - The home of Creativity
Рет қаралды 411 М.
8:03
How to make a plant watering system with the Nodemcu ESP8266 board and the new Blynk update
SriTu Hobby
Рет қаралды 222 М.
00:32
2 MAGIC SECRETS @denismagicshow @roman_magic
MasomkaMagic
Рет қаралды 20 МЛН
01:54
UFC 308 : Уиттакер VS Чимаев
Setanta Sports UFC
Рет қаралды 838 М.
00:19
У вас там какие таланты ?😂
Карина Хафизова
Рет қаралды 13 МЛН
00:22
MY HEIGHT vs MrBEAST CREW 🙈📏
Celine Dept
Рет қаралды 93 МЛН
9:41
12 Useful & Interesting ESP32 Projects for Beginners!
ToP Projects Compilation
Рет қаралды 636 М.
10:52
How To Make Smart Plant Watering System With ESP8266 NodeMCU & New Blynk
Sayan Electronics
Рет қаралды 50 М.
14:11
Step-by-Step Tutorial: TFT Display with ESP8266
Mario's Ideas
Рет қаралды 2,4 М.
9:09
Forget About Raspberry Pi! Use Your Old Phone Instead. (Really???)
Doctor Volt
Рет қаралды 457 М.
8:03
Smart Irrigation System with ESP8266 and Blynk IoT | Smart Agriculture System
Tech Trends Shameer
Рет қаралды 10 М.
11:16
IoT Smart Energy Meter Using ESP32 & Blynk 2.0
Electro Gadget
Рет қаралды 7 М.
10:11
Top 10 Agricultural Engineering Projects 2023 | Modern Farming Projects Ideas
Nevon Projects
Рет қаралды 424 М.
9:39
ESP8266 RFID Attendance System with Google Sheets
Viral Science - The home of Creativity
Рет қаралды 34 М.
19:40
Визитка программиста
Александр Красников
Рет қаралды 102 М.
9:39
I Made The Ultimate Cheating Device
ChromaLock
Рет қаралды 1,3 МЛН
00:32
2 MAGIC SECRETS @denismagicshow @roman_magic
MasomkaMagic
Рет қаралды 20 МЛН