-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (30 loc) · 774 Bytes
/
Copy pathindex.php
File metadata and controls
40 lines (30 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<title>PHPoC Shield for Arduino</title>
<meta name="viewport" content="width=device-width, initial-scale=0.7">
<style>
body { text-align:center; }
a { font-size: 20pt; }
a:link { text-decoration: none;}
a:hover { text-decoration: underline;}
</style>
</head>
<body>
<br><br>
<a href="setup_info.php">Setup</a>
<?if((int)ini_get("init_bcfg")){?>
<br><br><br>
<font color="red">
PHPoC Shield is running in SETUP mode.<br>
Web service is not available except SETUP.
</font>
<?}else{?>
<br><br><br>
<a href="serial_monitor.php">Web Serial Monitor</a>
<br><br><br>
<a href="remote_push.php">Web Remote Control / Push</a>
<br><br><br>
<a href="remote_slide.php">Web Remote Control / Slide</a>
<?}?>
</body>
</html>