-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer2.html
More file actions
24 lines (24 loc) · 724 Bytes
/
timer2.html
File metadata and controls
24 lines (24 loc) · 724 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>timer</title>
</head>
<script type="text/javascript" src="timer2.js"></script>
<script src="https://chirimen.org/chirimen-raspi3/gc/polyfill/polyfill.js"></script>
<script src="https://chirimen.org/chirimen-raspi3/gc/drivers/i2c-grove-accelerometer.js"></script>
<body>
<label for="time">
Choose an appointment time:
<input id="time" type="time" name="time" value="13:30">
</label>
<button onclick="timer()">Click to submit</button>
<p id="result">
Loading...
</p>
<button onclick='stop();'>STOP</button>
<p id="ax">ax</p>
<p id="ay">ay</p>
<p id="az">az</p>
</body>
</html>