Created
February 28, 2023 13:48
-
-
Save ikizoglu/58142b407d2825e43d43eeabeaf28649 to your computer and use it in GitHub Desktop.
Temel NodeMCU - Blynk Uygulama Kullanımı
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NodeMCU - Blynk IoT Uygulama Geliştirme | |
// **************************************** | |
#define BLYNK_PRINT Serial | |
//Device Info içerisinden alınan bilgileri buraya ekleyin | |
#define BLYNK_TEMPLATE_ID " " | |
#define BLYNK_TEMPLATE_NAME " " | |
#define BLYNK_AUTH_TOKEN " " | |
// Tanımlanmış Kütüphaneler | |
#include <ESP8266WiFi.h> | |
#include <BlynkSimpleEsp8266.h> | |
// Bağlantı Kurulacak Ağ Bilgisi | |
char ssid[] = " "; | |
char pass[] = " "; | |
void setup() { | |
Serial.begin(115200); | |
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass); | |
} | |
void loop() { | |
Blynk.run(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment