/*
AT Firmware simulation example
Use the serial monitor to interface with the AT firmware. For instance, to scan for WiFi:
AT+CWMODE=1
AT+CWLAP
Connect to WiFi:
AT+CWJAP="Wokwi-GUEST",
Show the current IP address:
AT+CIFSR
Show firmware version
AT+GMR
To show list list of available commands:
AT+CMD?
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
delay(1000);
Serial.print("AT");
}
void loop() {
// put your main code here, to run repeatedly:
}
Loading
esp-01
esp-01