Skip to content

Instantly share code, notes, and snippets.

View LuckyIndraEfendi's full-sized avatar
🔥
working from home

Lucky Indra Efendi LuckyIndraEfendi

🔥
working from home
View GitHub Profile
@ajangrahmat
ajangrahmat / ESP32 Arduino WiFi Connect.ino
Created February 6, 2022 03:58
Simple ESP32 Connect to WiFi Network with Arduino IDE
#include<WiFi.h>
const char* ssid = "Wokwi-GUEST";
const char* pass = "";
void setup(){
Serial.begin(115200);
WiFi.begin(ssid, pass);
while(WiFi.status() != WL_CONNECTED){
delay(100);