esp32 test

parent 65ea52fc
#include <BlynkSimpleEsp32.h>
// You should get Auth Token in the Blynk App.
char auth[] = "6ikeJYVUS8PQafB-0GB37QZLsU_KosZx";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Lakshan|-_-|";
char pass[] = "641080748v";
int led = 32;
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
pinMode(led, OUTPUT);
}
void loop()
{
Blynk.run();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment