当前位置:网站首页>ESP8266
ESP8266
2022-06-27 02:49:00 【one billion six hundred and fifteen million five hundred and fo】
Additional development board management website is what to use ?
![]()
This website can let arduino Get the library function of the main chip of the development board . Let's write code that can directly call library functions .
How to test the quality of the development board ?
Use blink example Have a try , have a look led Flashing no ?
Implementation process of web server interaction
8266 The running code sets the path and message type sent by the web page as matching parameters , To call different functions .
esp8266_server.on("/", HTTP_GET, handleRoot);
esp8266_server.on("/LED", HTTP_POST, handleLED);
esp8266_server.onNotFound(handleNotFound); Whenever a client sends to the server HTTP When asked , We can use on Function to set HTTP Request callback function .
adopt HTTP Request callback function , We can get ESP8266 The server generates a response message and sends it to HTTP Requesting client .
server.on(uri, uri_handler);
server.on(uri, method, uri_handler);
– uri: HTTP Request the requested by the client uri( Parameter type :const String*)
– uri_handler: HTTP Request callback function ( Parameter type :THandlerFunction)
– method: This parameter is used to set the... Used when sending response information to the client HTTP Method . The following are the response method keywords to choose from .
HTTP_ANY
HTTP_GET
HTTP_POST
HTTP_PUT
HTTP_PATCH
HTTP_DELETE
HTTP_OPTIONS
Reference resources :
ESP8266 – ESP8266WebServer library – on – Taiji maker
ESP8266 Be able to act as softAP( route AP)/station( Terminal equipment ).ESP8266 It can transparently transmit serial port data . The maximum rate is 4Mbps.
You can use the official AT The firmware , You can also use it yourself SDK Developing firmware (non-OS SDK and RTOS SDK). I can't SDK Development , So use it directly AT Firmware to transparently transmit data .
https://zhuanlan.zhihu.com/p/166536234
边栏推荐
- Lodash get JS code implementation
- How to solve the problem of low applet utilization
- Questions and answers of chlor alkali electrolysis process in 2022
- Dameng database installation
- Oracle/PLSQL: Soundex Function
- YaLM 100B:来自俄罗斯Yandex的1000亿参数开源大模型,允许商业用途
- TP5 spreadsheet excel table export
- Hot discussion: what are you doing for a meaningless job with a monthly salary of 18000?
- DAMA、DCMM等数据管理框架各个能力域的划分是否合理?有内在逻辑吗?
- Yiwen teaches you Kali information collection
猜你喜欢

TopoLVM: 基于LVM的Kubernetes本地持久化方案,容量感知,动态创建PV,轻松使用本地磁盘

Qingscan use

Learn from Taiji Maker - mqtt Chapter 2 (I) QoS service quality level

学习太极创客 — MQTT(七)MQTT 主题进阶

Window 加密壳实现
![[micro service sentinel] degradation rules slow call proportion abnormal proportion abnormal constant](/img/4d/4d4424b609a3c0cd36c5c79daa8861.png)
[micro service sentinel] degradation rules slow call proportion abnormal proportion abnormal constant

记录unity 自带读取excel的方法和遇到的一些坑的解决办法

DAMA、DCMM等数据管理框架各个能力域的划分是否合理?有内在逻辑吗?

STM32入门介绍

Learn Tai Chi Maker - mqtt (VIII) esp8266 subscribe to mqtt topic
随机推荐
Test the respective roles of nohup and &
执念斩长河暑期规划
STM32入门介绍
Getting started with bluecms code auditing
Yalm 100b: 100billion parameter open source large model from yandex, Russia, allowing commercial use
1. Project preparation and creation
Learning Tai Chi Maker - mqtt (VII) advanced mqtt theme
事业观、金钱观与幸福观
Sample development of WiFi IOT Hongmeng development kit
学习太极创客 — MQTT(八)ESP8266订阅MQTT主题
DAMA、DCMM等数据管理框架各个能力域的划分是否合理?有内在逻辑吗?
Detailed explanation of ThreadLocal
达梦数据库安装
1、项目准备与新建
CVPR2022 | PointDistiller:面向高效紧凑3D检测的结构化知识蒸馏
Mmdetection uses yolox to train its own coco data set
three.js多米诺骨牌js特效
XSS attack (note)
Oracle/PLSQL: Cast Function
paddlepaddle 20 指数移动平均(ExponentialMovingAverage,EMA)的实现与使用(支持静态图与动态图)