Skip to content

Instantly share code, notes, and snippets.

@giobyte8
Created October 22, 2017 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giobyte8/ff563afb136a190821be282e50ead886 to your computer and use it in GitHub Desktop.
Save giobyte8/ff563afb136a190821be282e50ead886 to your computer and use it in GitHub Desktop.
Basic AT commands for ESP8266
# Ping message
AT
# Change BAUD range
AT+CIOBAUD=9600
# Check SDK version
AT+GMR
# Check operational mode
AT+CWMODE?
# Set operational mode
# 1 = Station
# 2 = Access point
# 3 = Both
AT+CWMODE=3
# Sniff all WIFI networks
AT+CWLAP
# Connect to wifi network
AT+CWJAP="INFINITUM6964","HBWwXYnKvB"
# Enable multiple connections
AT+CIPMUX=1
# Enable server listener
AT+CIPSERVER=1,80
# Check assigned IP address
AT+CIFSR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment