ตัวบอร์ด ESP8285 จะมี built-in LED ที่เชื่อมต่ออยู่กับขา Digital Pin 16 ดังนั้น Post นี้เราจึงมาลองทำไฟกระพริบ (Blink) โดยไม่ต้องต่ออุปกรณ์เพิ่มเติมอะไรเลย
เมื่อทุกอย่างพร้อมให้ทำการ Upload โค้ดไปยังบอร์ด และเปิด Serial Monitor เพื่อดูค่าที่ได้ จากภาพคือระบบแสดงค่าชื่อเมือง ซึ่งก็คือ Hong Kong (id=5) นั่นเอง
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YOUR-BLYNK-AUTH";
// Your WiFi credentials.
char ssid[] = "WiFi-SSID";
char pass[] = "WiFi-PASSWORD";
void setup()
{
// Debug console
Serial.begin(9600);
//Blynk.begin(auth, ssid, pass);
Blynk.begin(auth, ssid, pass,"blynk.jpnet.co.th",8080);
Blynk.syncAll();
}
void loop()
{
Blynk.run();
}