WiFi - Connection and Cryptography
WiFi - Connection and Cryptography
void setup()
{
Serial.begin(115200); // Start the Serial communication to send messages
to the computer
delay(10);
Serial.println('\n');
int i = 0;
while (WiFi.status() != WL_CONNECTED)
{ // Wait for the Wi-Fi to connect
delay(1000);
Serial.print(++i);
Serial.print(' ');
}
Serial.println('\n');
Serial.println("Connection established!");
Serial.print("IP address:\t");
Serial.println(WiFi.localIP()); // Send the IP address of the ESP8266 to
the computer
}
void loop()
{
}
using System.IO;
using System.Text;
using System.Security.Cryptography;
using System;