├── README.md └── commands.txt /README.md: -------------------------------------------------------------------------------- 1 | at-command-set 2 | ============== 3 | 4 | ESP8266 AT+ Command Set 5 | 6 | Few of the commands Listed below have an Inquiry Mode and Test Mode. 7 | Inquiry Mode will be executed with a ? at the end of the command "AT+CWMODE?" this will return the current status of the Module i.e. CWMODE=3 8 | Test Mode commands will be exicuted with an =? at the end of a command "AT+CWMODE=?" this will return the possible parameters input i.e. 1=Sta, 2=AP, 3=both 9 | 10 | The commands entered has a at end so do not forget to add a or else there will be no output. 11 | 12 | Will add rest Soon ! 13 | -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- 1 | I have aggregated the below list from nurdspace.nl as well as electrodrgon.com. Please visit these links for further information 2 | 3 | Commands Description Type Reply Set/Execute Parameters Examples 4 | 5 | AT generic cmd basic OK - - - 6 | AT+RST Resets the mod basic Module info - - AT+RST 7 | AT+GMR returns the current Fw version basic Fw Version - - - 8 | AT+CWMODE Wifi Mode Set Wifi Mode SET AT+CWMODE= Mode 1=Sta, 2=AP, 3=both AT+CWMODE=2 9 | AT+CWLAP Lists all available AP Wifi list of AP AT+CWLAP - AT+CWLAP 10 | AT+CWJAP Joins an Access Point Wifi OK AT+CWJAP=, Your Wifi SSID and Password AT+CWJAP=,<123456789> 11 | AT+CWQAP Quits the Access Point Wifi AT+CWQAP - AT+CWQAP 12 | AT+CWSAP Set Mod Access Point parameters Wifi AT+CWSAP=,, desired SSID,Password, 13 | , channel, encryption 14 | AT+CWLIF Check join device IP Wifi AT+CWLIF - AT+CWLIF 15 | AT+CIPSTATUS get conn status TCP/IP , AT+CIPSTATUS - 16 | , 17 | 18 | Will add rest Soon ! 19 | ~ 20 | --------------------------------------------------------------------------------