source: rtos_arduino/trunk/arduino_lib/libraries/ESP8266/examples/TCPClientSingle/TCPClientSingle.ino@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 2.6 KB
Line 
1/**
2 * @example TCPClientSingle.ino
3 * @brief The TCPClientSingle demo of library WeeESP8266.
4 * @author Wu Pengfei<pengfei.wu@itead.cc>
5 * @date 2015.02
6 *
7 * @par Copyright:
8 * Copyright (c) 2015 ITEAD Intelligent Systems Co., Ltd. \n\n
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version. \n\n
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE.
20 */
21#include "ESP8266.h"
22
23#define SSID "ITEAD"
24#define PASSWORD "12345678"
25#define HOST_NAME "172.16.5.12"
26#define HOST_PORT (8090)
27
28ESP8266 wifi(Serial1);
29
30void setup(void)
31{
32 Serial.begin(9600);
33 Serial.print("setup begin\r\n");
34
35 Serial.print("FW Version:");
36 Serial.println(wifi.getVersion().c_str());
37
38 if (wifi.setOprToStationSoftAP()) {
39 Serial.print("to station + softap ok\r\n");
40 } else {
41 Serial.print("to station + softap err\r\n");
42 }
43
44 if (wifi.joinAP(SSID, PASSWORD)) {
45 Serial.print("Join AP success\r\n");
46 Serial.print("IP:");
47 Serial.println( wifi.getLocalIP().c_str());
48 } else {
49 Serial.print("Join AP failure\r\n");
50 }
51
52 if (wifi.disableMUX()) {
53 Serial.print("single ok\r\n");
54 } else {
55 Serial.print("single err\r\n");
56 }
57
58 Serial.print("setup end\r\n");
59}
60
61void loop(void)
62{
63 uint8_t buffer[128] = {0};
64
65 if (wifi.createTCP(HOST_NAME, HOST_PORT)) {
66 Serial.print("create tcp ok\r\n");
67 } else {
68 Serial.print("create tcp err\r\n");
69 }
70
71 char *hello = "Hello, this is client!";
72 wifi.send((const uint8_t*)hello, strlen(hello));
73
74 uint32_t len = wifi.recv(buffer, sizeof(buffer), 10000);
75 if (len > 0) {
76 Serial.print("Received:[");
77 for(uint32_t i = 0; i < len; i++) {
78 Serial.print((char)buffer[i]);
79 }
80 Serial.print("]\r\n");
81 }
82
83 if (wifi.releaseTCP()) {
84 Serial.print("release tcp ok\r\n");
85 } else {
86 Serial.print("release tcp err\r\n");
87 }
88 delay(5000);
89}
90
Note: See TracBrowser for help on using the repository browser.