查看“HttpGet”的源代码
←
HttpGet
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''HTTPGET'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 本示例会实现一个HTTP请求和接收的例子 <br> 需要调用<code style="color: #E87E05">#include <ESP8266.h></code>头文件。 <br> <p style="color: #E87E05;font-size:135%">所用方法</p> *wifi.createTCP(HOST_NAME, HOST_PORT)创建TCP Socket连接 *wifi.send(data, len)发送TCP数据 *wifi.recv(buffer, sizeof(buffer), timeout)接收TCP数据 <p style="color: #E87E05;font-size:135%">实例</p> * <source lang="c++"> #include <ESP8266.h> #ifdef ESP32 #error "This code is not recommended to run on the ESP32 platform! Please check your Tools->Board setting." #endif /** **CoreUSB UART Port: [Serial1] [D0,D1] **Core+ UART Port: [Serial1] [D2,D3] **/ #if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega1284P__) || defined (__AVR_ATmega644P__) || defined(__AVR_ATmega128RFA1__) #define EspSerial Serial1 #define UARTSPEED 115200 #endif /** **Core UART Port: [SoftSerial] [D2,D3] **/ #if defined (__AVR_ATmega168__) || defined (__AVR_ATmega328__) || defined (__AVR_ATmega328P__) #include <SoftwareSerial.h> SoftwareSerial mySerial(2, 3); /* RX:D2, TX:D3 */ #define EspSerial mySerial #define UARTSPEED 9600 #endif #define SSID F("Makermodule") #define PASSWORD F("microduino") #define HOST_NAME F("www.adafruit.com") #define HOST_PORT (80) static const byte GETDATA[] PROGMEM = { "GET /testwifi/index.html HTTP/1.0\r\nHost: www.adafruit.com\r\nConnection: close\r\n\r\n" }; ESP8266 wifi(&EspSerial); void setup(void) { Serial.begin(115200); while (!Serial); // wait for Leonardo enumeration, others continue immediately Serial.print(F("setup begin\r\n")); delay(100); WifiInit(EspSerial, UARTSPEED); Serial.print(F("FW Version:")); Serial.println(wifi.getVersion().c_str()); if (wifi.setOprToStationSoftAP()) { Serial.print(F("to station + softap ok\r\n")); } else { Serial.print(F("to station + softap err\r\n")); } if (wifi.joinAP(SSID, PASSWORD)) { Serial.print(F("Join AP success\r\n")); Serial.print(F("IP:")); Serial.println( wifi.getLocalIP().c_str()); } else { Serial.print(F("Join AP failure\r\n")); } if (wifi.disableMUX()) { Serial.print(F("single ok\r\n")); } else { Serial.print(F("single err\r\n")); } Serial.print(F("setup end\r\n")); } void loop(void) { if (wifi.createTCP(HOST_NAME, HOST_PORT)) { Serial.print(F("create tcp ok\r\n")); } else { Serial.print(F("create tcp err\r\n")); } //char *hello = "GET /testwifi/index.html HTTP/1.0\r\nHost: www.adafruit.com\r\nConnection: close\r\n\r\n"; //wifi.send((const uint8_t*)hello, strlen(hello)); //直接发送 wifi.sendFromFlash(GETDATA, sizeof(GETDATA)); //从Flash读取发送内容,节约内存 uint8_t buffer[512] = {0}; uint32_t len = wifi.recv(buffer, sizeof(buffer), 20000); if (len > 0) { Serial.print(F("Received:[")); for (uint32_t i = 0; i < len; i++) { Serial.print((char)buffer[i]); } Serial.print(F("]\r\n")); } if (wifi.releaseTCP()) { Serial.print(F("release tcp ok\r\n")); } else { Serial.print(F("release tcp err\r\n")); } //while (1); delay(5000); } </source> |} <br> <br> <p style="font-size:115%">[[MCookie-WiFi/zh|返回mCookie-WiFi界面]]</p>
返回至
HttpGet
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息