Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 18, 2020 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/575a43cb771edb5145b4ea95eb88ed8d to your computer and use it in GitHub Desktop.
Save parzibyte/575a43cb771edb5145b4ea95eb88ed8d to your computer and use it in GitHub Desktop.
// Conexión WiFi
WiFi.begin(NOMBRE_RED, PASSWORD_RED);
Serial.print("\nConectando a WiFi...");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println("Conectado");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment