/*************************************************************
This is a simple demo of sending and receiving some data.
Be sure to check out other examples!
*************************************************************/
/* Fill-in information from Blynk Device Info here */
//#define BLYNK_TEMPLATE_ID "TMPL6HvAegI0t"
//#define BLYNK_TEMPLATE_NAME "Quickstart Template"
//#define BLYNK_AUTH_TOKEN "24SHNaeqEeYZ5wDVMUqNXJ2Vy4LFLJmw"
/*#define BLYNK_TEMPLATE_ID "TMPL6IXJcB_L6"
#define BLYNK_TEMPLATE_NAME "pr1 sw"
#define BLYNK_AUTH_TOKEN "R1vXjXKTkllUfMW2KlAEAV4HyM2kKXB9"
*/
#define BLYNK_TEMPLATE_ID "TMPL6gKTcB-Tq"
#define BLYNK_TEMPLATE_NAME "esp8266wifi"
#define BLYNK_AUTH_TOKEN "jlmV4tgswJhTnqB_Y_fdELAFqrO2bTcQ"
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
//BlynkTimer timer;
// This function is called every time the Virtual Pin 0 state changes
BLYNK_WRITE(V0) //รับค่าจาก cloud
{
// Set incoming value from pin V0 to a variable
int value = param.asInt(); //เอาค่าที่ได้จาก cloud มาใส่ใน value
digitalWrite(13,value);
// Update state
// Blynk.virtualWrite(V1, value); //ส่งค่าขึ้นcloud
}
BLYNK_WRITE(V1) //รับค่าจาก cloud
{
// Set incoming value from pin V0 to a variable
int value = param.asInt(); //เอาค่าที่ได้จาก cloud มาใส่ใน value
digitalWrite(12,value);
// Update state
//Blynk.virtualWrite(V1, value); //ส่งค่าขึ้นcloud
}
BLYNK_WRITE(V2) //รับค่าจาก cloud
{
// Set incoming value from pin V0 to a variable
int value = param.asInt(); //เอาค่าที่ได้จาก cloud มาใส่ใน value
digitalWrite(14,value);
// Update state
// Blynk.virtualWrite(V1, value); //ส่งค่าขึ้นcloud
}
BLYNK_WRITE(V3) //รับค่าจาก cloud
{
// Set incoming value from pin V0 to a variable
int value = param.asInt(); //เอาค่าที่ได้จาก cloud มาใส่ใน value
digitalWrite(16,value);
// Update state
// Blynk.virtualWrite(V1, value); //ส่งค่าขึ้นcloud
}
/* // This function is called every time the device is connected to the Blynk.Cloud
BLYNK_CONNECTED()
{
// Change Web Link Button message to "Congratulations!"
Blynk.setProperty(V3, "offImageUrl", "https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations.png");
Blynk.setProperty(V3, "onImageUrl", "https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations_pressed.png");
Blynk.setProperty(V3, "url", "https://docs.blynk.io/en/getting-started/what-do-i-need-to-blynk/how-quickstart-device-was-made");
}
// This function sends Arduino's uptime every second to Virtual Pin 2.
void myTimerEvent()
{
// You can send any value at any time.
// Please don't send more that 10 values per second.
Blynk.virtualWrite(V2, millis() / 1000);
}
*/
void setup()
{
// Debug console
Serial.begin(115200);
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
// You can also specify server:
//Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, "blynk.cloud", 80);
//Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, IPAddress(192,168,1,100), 8080);
// Setup a function to be called every second
/*
timer.setInterval(1000L, myTimerEvent);
*/
}
void loop()
{
Blynk.run();
// timer.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}