SKU_TEL0092_WiFi_Bee ESP8266_Wirelss_module - jimaobian/DFRobotWiki GitHub Wiki

WiFi Bee-ESP8266 SKU:TEL0092

Introduction

Wifi Bee-ESP8266 is a Serial-to-WIFI module using XBEE design in a compact size, compatible with XBEE expansion base, applicable to a variety of 3.3V single-chip system. It can be used for Arduino, wireless data transfer, remote control. On-board switch can be used to easily select the Startup module or Upgrade firmware. ESP8266 has a powerful on-chip processing and storage capacity, built-in 32-bit processor, built-in Lwip protocol stack. Support AP+STA mode co-exist. And you could configure various parameters via AT commands.

Specifications

  1. Wi-Fi Direct (P2P),soft-AP
  2. Built-in TCP/IP protocol stack
  3. Built-in low-power 32-bit CPU: can work as an application processor
  4. Support WPA WPA2/WPA2-PSK encryption
  5. Support UART interface
  6. Support for TTL serial port to wireless application
  7. Working voltage: 3.3V power <240Ma
  8. Wireless standard: IEEE802.11b/g/n
  9. Frequency: 2.4 GHz

Pin out

500px

Tutorials

These stuffs are needed: 1 Software

  1. ESP_Flasher
  2. Arduino IDE 1.0.6
  3. CoolTerm
  4. NetAssist

2 Hardware

  1. DFRduino UNO R3
  2. Xbee USB adapter (FTDI ready)
  3. IO Expansion Shield for Arduino (V6)
  4. USB Cable A-B for Arduino
  5. Mini USB cable

How to Use ?

1 Connect AP

1 Download the ESP8266 library, and unzip it to "C:\Users\***\Documents\Arduino\libraries" 2 Insert the expansion shield on UNO, and plug ESP8266 in the socket on the expansion shield. 3 Note the switch: “RUN/Prog” at “Prog” side; “BOOT/UART” at "BOOT" side; 4 Wire adapter to the expansion shield: TX- PIN10, RX- PIN11, GND - GND; 500px 5 Open the sketch "Connect AP", and modify the wifi AP ssid and password of yours; 500px 6 Upload the sketch; 7 Trun the switch of the expansion shield “RUN/Prog” to “Run” side; 8 Use software "CoolTerm" to monitor if the AP connection is done.(Configure as the follow picture) 500px 500px

2 TCP_Client_Single

1 Pull the switch"RUN/Prog" to "Prog"; 2 Check the Ip address of your computer, we will use it as the Server Ip address;

500px

3 Open sample sketch "TCP_Client_Single", write your wifi's ssid, password , Server Ip address, port;

500px

4 Open the software"TCP/IP Net Assistant V3.8", configure as follow, and click Connect to monitor the PC doing as Server; 500px

5 Upload the modified sketch, and then pull the switch"RUN/Prog" to "RUN"; 6 Open "CoolTerm" and monitor the if the AP connection was good; 500px 7 send a message from "tcp/ip net assistant v3.8", you could see "new message" appear on "coolterm" . 500px 500px

3 TCP_Client_multi

1 Pull the switch"RUN/Prog" to "Prog"; 2 Open sample sketch "TCP_Client_multi", write your wifi's ssid, password , Server Ip address, port; 500px

3 Open another "TCP/IP Net Assistant V3.8", configure as follow, and click Connect;

500px 4 Upload the modified sketch, and then pull the switch"RUN/Prog" to "RUN"; 6 Watch**"CoolTerm"** to see if the AP connection was good; 500px 7 send a message from different "tcp/ip net assistant v3.8", you could see new message appear on "coolterm" from different server . 500px 500px

**Note:**ESP8266 can connect to 5 servers simultaneously.

4 TCP_Pure_Data_Mode

1 Pull the switch"RUN/Prog" to "Prog"; 2 Open sample sketch "TCP_Pure_Data_Mode", write your wifi's ssid, password , Server Ip address, port; 500px

3 Open the software"TCP/IP Net Assistant V3.8", configure as follow, and click Connect to monitor the PC doing as Server; 500px

4 Upload the modified sketch, and then pull the switch"RUN/Prog" to "RUN"; 5 Open "CoolTerm" and monitor the if the AP connection was good; 500px 6 send a message from "tcp/ip net assistant v3.8", you could see new message appear on "coolterm". 500px 500px

Note: When the symbol">" appeared, it means ESP8266 entered into Transparent Mode which transfer data faster than normal mode.

5 Server mode

Note:Since now, the STA mode which support the Server mode is not stable, we are working on that you could refer to the ESP8266 manual book to try.

* Problem Shooting

If the monitor print"Connect failed!" Please try/check these steps:

  • Unplug the USB cable from Arduino to power off, and plug it again to restart module.
  • The wifi you are using is good, and the code ssid and password is correct.
  • Whether the button on expansion shield was push to the left side"RUN" but not"PROG".
  • Whether the botton on the ESP8266 is also on the left side"BOOT".
  • It's might for the wrong wire.
  • The wifiBee socket on expansion shield has a loose connection to the wifi Bee.

If everything is ok, but still failed connection. You may have a try "Update Firmware"

Update Firmware

Please download the Firmware and Tools first. then Like in AT mode, but pull the swith of ESP8266 to "UART" side.Don't forget to pull it back to "BOOT" after updating firmware. 1 Open software "ESP_Flasher"; 2 Choose Firmware; 500px  address at 0x00000  address at 0x40000 3 choose serial port of esp8266, click flash to burn firmware; 500px 500px 500px 4 wait for done. 500px

Application

This is a little application which is built on the 4.1.2 2 TCP_Client_Single trail, if you have finished that part, you could upload the sketch below, and send commands "H","L" to open up or turn off it on your computer. And since that almost every Arduino card has a LED built on board, connected with D13, so in the sketch, I will use it as the target LED.


// this example use esp8266 to connect to an Access Point and connect to SINGLE TCP Server which is at the same subnet
// such as the esp8266 is is 192.168.1.3, and the server ip is 192.168.1.1 ,then esp8266 can connect to the server

//Then connect a LED on Digital pin13, and open the software on PC_TCP server, send command to control the LED state:
//send "H" to turn ON LED; send "L" to turn OFF LED

#include "esp8266.h"
#include "SoftwareSerial.h"

#define ssid        "test"      // you need to change it
#define password    "12345678"

#define serverIP    "192.168.1.1"
#define serverPort  "8081"
int ledPin = 13;
String incomingData = "";

Esp8266 wifi;
SoftwareSerial mySerial(10, 11); // RX, TX

void setup() {
  pinMode(ledPin, OUTPUT);
  delay(2000);              // it will be better to delay 2s to wait esp8266 module OK
  Serial.begin(115200);
  mySerial.begin(115200);
  wifi.begin(&Serial, &mySerial);       //Serial is used to communicate with esp8266 module, mySerial is used to debug
  if (wifi.connectAP(ssid, password)) {
    wifi.debugPrintln("connect ap sucessful !");
  } else {
    while (true);
  }
  wifi.setSingleConnect();
  if (wifi.connectTCPServer(serverIP, serverPort)) {
    wifi.debugPrintln("connect to TCP server successful !");
  }
  String ip_addr;
  ip_addr = wifi.getIP();
  wifi.debugPrintln("esp8266 ip:" + ip_addr);
}

void loop() {
  int state = wifi.getState();
  switch (state) {
    case WIFI_NEW_MESSAGE:
      wifi.debugPrintln("new message!");
      incomingData = wifi.getMessage();
      wifi.sendMessage(incomingData);       //send the message to TCP server what it has received
      wifi.setState(WIFI_IDLE);
      break;
    case WIFI_CLOSED :                          //reconnet to the TCP server
      wifi.debugPrintln("server is closed! and trying to reconnect it!");
      if (wifi.connectTCPServer(serverIP, serverPort)) {
        wifi.debugPrintln("reconnect OK!");
        wifi.setState(WIFI_IDLE);
      }
      else {
        wifi.debugPrintln("reconnect fail");
        wifi.setState(WIFI_CLOSED);
      }
      break;
    case WIFI_IDLE :
      int sta = wifi.checkMessage();
      wifi.setState(sta);
      break;
  }
  if (incomingData == "H")  {
    digitalWrite(13, HIGH);
    incomingData = "";
  }
  else if (incomingData == "L")  {
    digitalWrite(13, LOW);
    incomingData = "";
  }
}

File:TEL0092 control LED13.png|Send command H File:TEL0092 control LED13PIC.png|The LED turn ON

AT command

How to enter AT mode

You can setup and control the module completely with AT command through Serial. 1 Insert ESP8266 onto the USB-Serial adapter 300px 2 Open the Monitor in Arduino IDE. Choosing "Both NL & CR" "115200"

image:ESP8266_atMode_1.jpg|choosing image:ESP8266_atMode_2.jpg|open monitor

3 Send "AT" to enter into the AT mode once reveived OK. 450px AT Command Instruction

Related link

ESP8266 Support Forums

More

link=http://www.dfrobot.com/ get it from wifi bee-esp8266 wirelss module or dfrobot distributor.