Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近给自己买了一个 Arduino Ethernet Shield,我想知道是否有任何方法可以检测用户访问的网页并对其进行处理。例如。
用户访问 192.168.1.10/turnon(Arduino 的 IP)引脚更改状态。
有任何想法吗?甚至只是为了检测 url 的参数。
看看这个WifiWebServer例子:
WifiWebServer
要知道请求了哪个网页,您需要分析 HTTP 请求标头。
例如:GET /webpage.html?param=5 HTTP/1.1会询问webpage.html 并且参数在url 内。
GET /webpage.html?param=5 HTTP/1.1
如果请求的参数是客户端从 HTTP 正文发出的 POST 请求,则可以以相同的方式读出请求的参数(http 正文与标头简单地用空行分隔)。
然后您可以相应地设置 arduino 引脚。