使用HTML写一个ESP8266服务的控制页面,用来控制stm32的小灯
时间: 2024-03-25 13:38:47 浏览: 62
stm32+esp8266实现局域网下小灯控制源码
5星 · 资源好评率100%
好的,以下是一个简单的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>ESP8266 Control Panel</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
margin-top: 20px;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.form-group {
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="submit"] {
display: block;
margin: 20px auto 0;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: #fff;
font-size: 18px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>ESP8266 Control Panel</h1>
<div class="container">
<form action="/control" method="post">
<div class="form-group">
<label for="led">LED</label>
<select name="led" id="led">
<option value="on">On</option>
<option value="off">Off</option>
</select>
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>
```
这是一个基本的 HTML 页面,包含一个表单,用户可以选择将 LED 打开或关闭。在表单提交时,数据将被发送到 `/control` 路径。
你需要在 ESP8266 上运行一个 Web 服务器,将该页面提供给用户。当用户提交表单时,ESP8266 将捕获表单数据,并将其发送到 stm32 控制 LED。
具体实现方式取决于你使用的编程语言和框架。你可以使用 Arduino IDE 和 ESP8266 库来编写代码,或使用其他语言和框架,如 MicroPython 或 NodeMCU。
需要注意的是,该示例代码仅作为参考,你需要根据自己的需求进行修改和适配。
阅读全文