From 5de420d9083839395353f4135834302f88378521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Tue, 4 Oct 2016 11:16:49 +0200 Subject: [PATCH] document esp8266 --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 7431072..5a0d23e 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,21 @@ Connect the peripherals the following way (STM32F10X signal; STM32F10X pin; peri All pins are configured using `define`s in the corresponding source code. +peripherals +=========== + +ESP8266 +------- + +AT firmware v0.51 from the espressif NONOS SDK 1.5.0 has been used for this project. +Be sure to have configured the module to connect to the right access point beforehand using the following AT commands: + +- set station mode: `AT+CWMODE_DEF=1` +- enable DHCP: `AT+CWDHCP_DEF=1,1` +- set access point to connect to: `AT+CWJAP_DEF="essid","password"` + +When booting the micro-controller will reset the device and wait until the module connects to the access point and gets an IP. + code ====