Reputation: 1158
I'm trying to write a state machine on my processor. I'm using the ESP module to communicate over Wi-Fi. When the module is powered up it connects to an AP which was already specified in its flash memory. I would like to check whether if the connecte AP is the one that my system requires or not. Is there an AT command to get the currently connected SSID name?
Upvotes: 1
Views: 326
Reputation: 3265
AT+<x>?
is an inquiry
AT+<x>=<...>
is a set command
as such:
AT+ CWJAP?
Is the inquiry about the SSID
Upvotes: 3