Stap 2: Upload Code
Als u niet hoe weet te installeren LinkIt één code Klik hier
Dit is de code die ik heb voor dit project gemaakt:
-------------------------------------------------------------------->
Gemaakt door FunguyPro code www.funguypro.tk
#defineARDUINO150
#define BLYNK_PRINT seriële //Uncomment voor seriële Data
#include < LWiFi.h >
#include < LWiFiClient.h >
#include < BlynkSimpleLinkItONE.h >
In de Blynk-App moet je Auth-Token.
Ga naar de projectinstellingen (moer pictogram).
[charauth] = "YOURAUTHCODE";
#defineWIFI_SSID "YOURSSID" / / Your network SSID (naam)
#defineWIFI_PASS "YOURPASS" / / het netwerkwachtwoord van uw (gebruik voor WPA) of gebruik als sleutel voor WEP
#defineWIFI_AUTHLWIFI_WPA / / Kies uit LWIFI_OPEN, LWIFI_WPA, of LWIFI_WEP
voidsetup() {}
Seriële.begin(9600);
Blynk.begin(auth,WIFI_SSID,WIFI_PASS,WIFI_AUTH);
delay(500);}
voidloop() {}
Blynk.run();
}