Day planner#
The especially things I have to do today have the following
今天想到绝妙的将简单的api转换为从数据库调用并进行控制的方法,明天只要让esp通过网页读取到数据库中的命令即可。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| $sql = "SELECT sensorid,switch,cmd FROM switches where sensorid = 4";
if ($result = $conn->query($sql)) {
while ($row = $result->fetch_assoc()) {
$row_sensorid = $row["sensorid"];
$row_switch = $row["switch"];
$row_cmd = $row["cmd"];
if ($row["cmd"]==0){
$switch_status="off";
}
else{
$switch_status="on";
}
echo "The switch: (".$row_switch.") at the coordinate: (".$row_sensorid.") current status is ".$switch_status.".\\n";
}
$result->free();
}
else{
echo "\\n No corresponding switch was found!\\n";
}
$conn->close();
|