Search found 2 matches
- Sun Aug 02, 2015 4:27 am
- Forum: FAQs
- Topic: Q: ESP8266 支持 HTTP 协议吗?如何实现?
- Replies: 1
- Views: 7923
Re: Q: Does the chip support HTTP posting? How do we do that?
ESP8266 supports HTTP protocol. POSTing data: [Non-OS SDK] Use espconn_sent (struct espconn * espconn, uint8 * psent, uint16 length) to POST data. The structure espconn (TCP communications) specifies the server's IP and Port. Psent: Buffer address of the http-encoded data to send Length: Length of t...
- Sun Aug 02, 2015 4:19 am
- Forum: FAQs
- Topic: Q: What is the difference between RTOS and the non-OS SDK?
- Replies: 1
- Views: 39355
Re: Q: What is the difference between RTOS and the non-OS SDK?
(for the rest of us ;-) ) The main points of difference are as follows: [Non-OS SDK] The Non-OS SDK uses timers and callbacks as the main way to perform the various functions - nested events, functions triggered by certain conditions. The Non-OS SDK uses the espconn network interface; the user needs...