Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliseomartelli/esp8266_bridge
A simple bridge sketch made to send AT commands to the ESP8266 in an easy way.
https://github.com/eliseomartelli/esp8266_bridge
Last synced: 30 days ago
JSON representation
A simple bridge sketch made to send AT commands to the ESP8266 in an easy way.
- Host: GitHub
- URL: https://github.com/eliseomartelli/esp8266_bridge
- Owner: eliseomartelli
- License: mit
- Created: 2016-04-09T14:41:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-09T14:47:36.000Z (almost 9 years ago)
- Last Synced: 2024-10-30T04:10:06.711Z (2 months ago)
- Language: Arduino
- Homepage:
- Size: 280 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESP8266 Bridge
A simple bridge sketch made to send AT commands to the **ESP8266** in an easy way.
## How to use
* Clone this [repo](https://github.com/eliseomartelli/ESP8266_Bridge/archive/master.zip)
* Upload the sketch to the Arduino
* Connect the ESP8266 to the Arduino
* Open the Serial Monitor
* Enjoy! :blush:## Wiring Diagram
Use the following diagram to connect the ESP8266 to your Arduino!
![Wiring Diagram](https://raw.githubusercontent.com/eliseomartelli/ESP8266_Bridge/master/schematic.png)
## Baud Rates
If you have some problems reading the output of your ESP8266 try tweaking the baud rate.
The stock baud rates are:
* 9600
* 57600
* 115200The most used is 115200 but I recommend using 9600.
#### Change the Baud Rate
To change the baud rate first figure out what's your baud rate, change it in the Arduino sketch and then issue this AT command:
```
AT+CIOBAUD=
```For other commands refer to [this cheat sheet](http://www.pridopia.co.uk/pi-doc/ESP8266ATCommandsSet.pdf)!