703
edits
mNo edit summary |
mNo edit summary |
||
Line 10: | Line 10: | ||
full reference of all AT commands: http://bbs.espressif.com/download/file.php?id=256 | full reference of all AT commands: http://bbs.espressif.com/download/file.php?id=256 | ||
<source> | <source lang="c"> | ||
AT+RST - resets the board: | AT+RST - resets the board: | ||
ATE1 (verbose) | ATE1 (verbose) | ||
Line 21: | Line 21: | ||
create a simple server: | create a simple server: | ||
<source> | <source lang="c"> | ||
AT+CIPMUX=1 (1: server accepts multiple connection, 0: single connections only) | AT+CIPMUX=1 (1: server accepts multiple connection, 0: single connections only) | ||
AT+CIPSERVER=1,80 (1: create 0:destroy server, 80: listening on port 80) | AT+CIPSERVER=1,80 (1: create 0:destroy server, 80: listening on port 80) | ||
Line 30: | Line 30: | ||
find the ip of the board: | find the ip of the board: | ||
<source> | <source lang="c"> | ||
AT+CIFSR | AT+CIFSR | ||
</source> | </source> |
edits