API
For Arduino developers
|
TCPClientMultiple.ino
The TCPClientMultiple demo of library WeeESP8266.
- Author
- Wu Pengfeipengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c
- Date
- 2015.02
- Copyright:
- Copyright (c) 2015 ITEAD Intelligent Systems Co., Ltd.
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.
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"
#define HOST_NAME "192.168.1.1"
#define HOST_PORT (8090)
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());
Serial.print("to station + softap ok\r\n");
} else {
Serial.print("to station + softap err\r\n");
}
Serial.print("Join AP success\r\n");
Serial.print("IP: ");
Serial.println(wifi.getLocalIP().c_str());
} else {
Serial.print("Join AP failure\r\n");
}
Serial.print("multiple ok\r\n");
} else {
Serial.print("multiple err\r\n");
}
Serial.print("setup end\r\n");
}
void loop(void)
{
uint8_t buffer[128] = {0};
static uint8_t mux_id = 0;
Serial.print("create tcp ");
Serial.print(mux_id);
Serial.println(" ok");
} else {
Serial.print("create tcp ");
Serial.print(mux_id);
Serial.println(" err");
}
char *hello = "Hello, this is client!";
Serial.println("send ok");
} else {
Serial.println("send err");
}
if (len > 0) {
Serial.print("Received:[");
for(uint32_t i = 0; i < len; i++) {
Serial.print((char)buffer[i]);
}
Serial.print("]\r\n");
}
Serial.print("release tcp ");
Serial.print(mux_id);
Serial.println(" ok");
} else {
Serial.print("release tcp ");
Serial.print(mux_id);
Serial.println(" err");
}
delay(3000);
mux_id++;
if (mux_id >= 5) {
mux_id = 0;
}
}
Generated on Thu Apr 9 2015 13:57:59 for API by 1.8.7