Skip to content

Instantly share code, notes, and snippets.

@summermk
Last active May 17, 2016 10:30
Show Gist options
  • Save summermk/7fd18fd28e88e1622daf57fa6dd5ffbb to your computer and use it in GitHub Desktop.
Save summermk/7fd18fd28e88e1622daf57fa6dd5ffbb to your computer and use it in GitHub Desktop.
ESP8266 module setup guide

ESP8266 Module

This guide is not a complete set of instructions. Rather it points to other links and guides that are already out there and works well. It's mainly for my own reference in the future but it might be useful to others too.

Connecting it

I'm using the ESP8266 module with header pins already attached and basic components that came with SparkFun Inventor's Kit + FTDI breakout board with lots of clips.

Useful links:

Notes:

  • Initially I connected the vcc to FTDI breakout but it kept resetting and it wasn't responding etc. Turns out FTDI breakout doesn't provide enough current. Make sure to connect it to Redboard for power.
  • Baudrate was kind of funny but it was just due to not enough current.
  • Mine was set to 115200 by default.

REALLY connecting it

  • To scan for nearby networks: AT+CWLAP
  • To connect to a network: AT+CWJAP="ssid","password"
  • To get IP address and other info: AT+CIFSR
  • Try ping from cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment