Skip to content

Instantly share code, notes, and snippets.

@ikizoglu
Created February 28, 2023 13:48
Show Gist options
  • Save ikizoglu/58142b407d2825e43d43eeabeaf28649 to your computer and use it in GitHub Desktop.
Save ikizoglu/58142b407d2825e43d43eeabeaf28649 to your computer and use it in GitHub Desktop.
Temel NodeMCU - Blynk Uygulama Kullanımı
// 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