A adapter module for ESP-01 Wi-Fi module. 3.3V voltage regulator circuit and onboard level conversion circuit can make 5V microcontroller easy to use with ESP-01 Wi-Fi module.
Also, the item can be used with For Arduino UNO R3 or compatible board.
Features:
Working voltage: 4.5~5.5V (On-board 3.3V LDO Regulator)
: ESP8266 ESP-10 모듈의 시리얼 통신 속도는 기본적으로 115200 bps 로 설정되어 있어 통신속도의 제한이 있는 소프트웨어 시리얼을 사용할 수 없다. 따라서 보드와 ESP-01 모듈 간의 소프트웨어 시리얼 통신을 위해서 ESP-01 모듈의 기본속도를 9600 bps로 설정하기 위해서 펌웨어를 업데이트 한다.
PS. 하드웨어 시리얼: 보드의 0번(RX), 1번(TX) 기능을 이용한 통신(Serial.명령)
소프트웨어 시리얼: MCU가 0,1번을 제외한 디지털 핀 통신. (13번은 수신동작하지 않음)
PS. 펌웨어 업데이트 할 때 핀설정.
- 펌웨어를 업데이트 할 때는 아래 경로로 펌웨어가 업데이트 됨.
. 아두이노 RX, TX와 ESP8266 RX, TX를 동일 핀으로 연결하면, USB자료가 최종 기기로 펌웨어를 업데이트 할 수 있음.
. PC -> USB -> 아두이노 Rx,TX -> ESP8266 RX, TX -> ESP8266모듈
- . TCP 나 wifi 코딩도 소프트시리얼이 아니라 ESP8266 으로 업데이트 된 펌웨어로 동작이 가능하고, (보드는 ESP8266 선택)
ESP8266 모듈에 기본적인 GIPO0과 GPIO1 2개의 디지털 인터페이스로 사용할 수 있음.
간단한 디지털인터페이스는 아두이노 없이, ESP8266모듈만으로 제어가 가능함.
- 소프트웨어 시리얼을 사용할 때는, RX, TX 제외한 핀으로 ESP8266과 연결하고 ESP8266의 기본 통신 기능만 사용함.
/**
* @example TCPServer.ino
* @brief The TCPServer demo of library WeeESP8266.
* @author Wu Pengfei<pengfei.wu@itead.cc>
* @date 2015.02
*
* @par Copyright:
* Copyright (c) 2015 ITEAD Intelligent Systems Co., Ltd. \n\n
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version. \n\n
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "ESP8266.h"
#define SSID "ITEAD"
#define PASSWORD "12345678"
ESP8266 wifi(Serial1);
void setup(void)
{
Serial.begin(9600);
Serial.print("setup begin\r\n");
Serial.print("FW Version:");
Serial.println(wifi.getVersion().c_str());
if (wifi.setOprToStationSoftAP()) {
Serial.print("to station + softap ok\r\n");
} else {
Serial.print("to station + softap err\r\n");
}
if (wifi.joinAP(SSID, PASSWORD)) {
Serial.print("Join AP success\r\n");
Serial.print("IP: ");
Serial.println(wifi.getLocalIP().c_str());
} else {
Serial.print("Join AP failure\r\n");
}
if (wifi.enableMUX()) {
Serial.print("multiple ok\r\n");
} else {
Serial.print("multiple err\r\n");
}
if (wifi.startTCPServer(8090)) {
Serial.print("start tcp server ok\r\n");
} else {
Serial.print("start tcp server err\r\n");
}
if (wifi.setTCPServerTimeout(10)) {
Serial.print("set tcp server timout 10 seconds\r\n");
} else {
Serial.print("set tcp server timout err\r\n");
}
Serial.print("setup end\r\n");
}
void loop(void)
{
uint8_t buffer[128] = {0};
uint8_t mux_id;
uint32_t len = wifi.recv(&mux_id, buffer, sizeof(buffer), 100);
if (len > 0) {
Serial.print("Status:[");
Serial.print(wifi.getIPStatus().c_str());
Serial.println("]");
Serial.print("Received from :");
Serial.print(mux_id);
Serial.print("[");
for(uint32_t i = 0; i < len; i++) {
Serial.print((char)buffer[i]);
}
Serial.print("]\r\n");
if(wifi.send(mux_id, buffer, len)) {
Serial.print("send back ok\r\n");
} else {
Serial.print("send back err\r\n");
}
if (wifi.releaseTCP(mux_id)) {
Serial.print("release tcp ");
Serial.print(mux_id);
Serial.println(" ok");
} else {
Serial.print("release tcp");
Serial.print(mux_id);
Serial.println(" err");
}
Serial.print("Status:[");
Serial.print(wifi.getIPStatus().c_str());
Serial.println("]");
}
}