Stap 1: Code
Weet niet hoe om te coderen de linkit een bord? Klik hier
Hier is de code die ik heb gemaakt:
Gemaakt door FunguyPro www.funguypro.tk code
#define ARDUINO 150 //#define BLYNK_PRINT seriële //Uncomment voor seriële Data
#include #include #include #include #include
int i = 0;
SimpleTimer timer;
Moet je Auth Token in de Blynk App. / / Ga naar de projectinstellingen (moer pictogram). char auth [] = "YOURAUTHCODE";
#define WIFI_SSID "YOURSSID" / / Your network SSID (naam) #define WIFI_PASS "YOURPASS" / / het netwerkwachtwoord van uw (gebruik voor WPA) of gebruik als sleutel voor WEP #define WIFI_AUTH LWIFI_WPA / / Kies uit LWIFI_OPEN, LWIFI_WPA, of LWIFI_WEP
void setup {Serial.begin(9600); Blynk.begin (auth, WIFI_SSID, WIFI_PASS, WIFI_AUTH); delay(500); }
void loop {Blynk.run(); i ++; if(i == 1000) {int batt = LBattery.level(); Blynk.virtualWrite (V5, batt); Ik = 0; } delay(1); }