update esp32_air_pump/data/index.html.
parent
884fd67f77
commit
d7623ea797
|
@ -1,7 +1,15 @@
|
|||
<html lang="zh-cn">
|
||||
<!--
|
||||
微型气泵控制板
|
||||
HW:Ver 1.0
|
||||
FW:Ver 1.2
|
||||
-->
|
||||
<html lang="zh-cn">
|
||||
|
||||
<head>
|
||||
<title>Air Pump Control</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta http-equiv="Cache-Control" content="max-age=7200" />
|
||||
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
|
||||
<style>
|
||||
/*input框*/
|
||||
|
@ -143,23 +151,18 @@
|
|||
<script>
|
||||
var running_type = ["无", "篮球", "摩托车", "汽车", "自行车", "自定义"];
|
||||
var pressure_type = [0, 0.6, 2.4, 2.5, 3.9, 2.4];
|
||||
function loadXMLDoc(path,element)
|
||||
{
|
||||
|
||||
function loadXMLDoc(path, element) {
|
||||
var xmlhttp;
|
||||
if (window.XMLHttpRequest)
|
||||
{
|
||||
if (window.XMLHttpRequest) {
|
||||
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// IE6, IE5 浏览器执行代码
|
||||
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
}
|
||||
xmlhttp.onreadystatechange=function()
|
||||
{
|
||||
if (xmlhttp.readyState==4 && xmlhttp.status==200)
|
||||
{
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
||||
document.getElementById(element).innerHTML = xmlhttp.responseText;
|
||||
}
|
||||
}
|
||||
|
@ -167,25 +170,18 @@ function loadXMLDoc(path,element)
|
|||
xmlhttp.send();
|
||||
}
|
||||
|
||||
function UpdateInfo()
|
||||
{
|
||||
function UpdateInfo() {
|
||||
var xmlhttp;
|
||||
if (window.XMLHttpRequest)
|
||||
{
|
||||
if (window.XMLHttpRequest) {
|
||||
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// IE6, IE5 浏览器执行代码
|
||||
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
}
|
||||
xmlhttp.onreadystatechange=function()
|
||||
{
|
||||
if (xmlhttp.readyState==4 && xmlhttp.status==200)
|
||||
{
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
||||
var arr = xmlhttp.responseText.split(",");
|
||||
|
||||
document.getElementById('bat_voltage').innerHTML = arr[1];
|
||||
if (arr[3] == 1) {
|
||||
document.getElementById('CurrentMillis').innerHTML = "已启动:" + arr[0];
|
||||
|
@ -207,14 +203,11 @@ function UpdateInfo()
|
|||
xmlhttp.send();
|
||||
}
|
||||
|
||||
|
||||
function MyAutoRun()
|
||||
{
|
||||
function MyAutoRun() {
|
||||
UpdateInfo();
|
||||
}
|
||||
setInterval("MyAutoRun()", 1000);
|
||||
|
||||
|
||||
function checkNum(obj) {
|
||||
if (isNaN(obj.value)) { //检查是否是非数字值
|
||||
obj.value = "";
|
||||
|
@ -241,15 +234,19 @@ function running_type5(obj){
|
|||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body style="background-color:black;color:white">
|
||||
|
||||
<div>
|
||||
<font size=6>微型气泵状态监控</font>
|
||||
</div>
|
||||
<div id="OperationHit"><h2></h2></div>
|
||||
<div id="OperationHit">
|
||||
<h2></h2>
|
||||
</div>
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td height="50"></font> <span id=CurrentMillis></span>
|
||||
<td height="50">
|
||||
</font> <span id=CurrentMillis></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -298,4 +295,5 @@ function running_type5(obj){
|
|||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue