Загрузка страницы

Blynk App ESP32 WLAN Fernsteuerung & Sensoren | Tutorial

Hardware:
- ESP32 Wifi/Bluetooth Module: https://amzn.to/3fpwEXR
- Capacitive Soil Moisture Sensor: https://amzn.to/2L5vTFx
- Breadboard mit LED & Co.: https://amzn.to/2ze77Ac
- microUSB Kabel: https://amzn.to/2LiZvzn
Software:
- https://www.arduino.cc/en/Main/Software
- https://github.com/espressif/arduino-esp32
- https://play.google.com/store/apps/details?id=cc.blynk&hl=de
Hardware auf Aliexpress:
- ESP32 Wifi/Bluetooth Module: https://de.aliexpress.com/item/32864722159.html?spm=a2g0o.productlist.0.0.371e745azYfYLo&algo_pvid=be149da2-09a8-4b2e-b277-3fbf1780229e&algo_expid=be149da2-09a8-4b2e-b277-3fbf1780229e-0&btsid=0ab6f82215950033880078988e4862&ws_ab_test=searchweb0_0,searchweb201602_,searchweb201603_
Programmcode des Tutorials:
#define BLYNK_PRINT Serial
#include WiFi.h (hier fehlen jeweils die Kleiner- und Größerzeichen, diese sind in der Videobeschreibung leider nicht erlaubt, vergleicht mit dem Video dort sind sie vorhanden)
#include WiFiClient.h
#include BlynkSimpleEsp32.h

char auth[] = "ryTPrH3";
BlynkTimer timer;
char ssid[] = "KabelBox";
char pass[] = "3071";

void myTimerEvent()
{
Blynk.virtualWrite(V34, analogRead(34));
}

void setup()
{
Serial.begin(9600);

Blynk.begin(auth, ssid, pass);

timer.setInterval(1000L, myTimerEvent);
}

void loop()
{
Blynk.run();
timer.run();
}

Видео Blynk App ESP32 WLAN Fernsteuerung & Sensoren | Tutorial канала Solar Island
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
7 мая 2020 г. 1:21:58
00:13:25
Яндекс.Метрика