-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathindex.html
210 lines (191 loc) · 7.51 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!doctype html>
<!--
Copyright 2015 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<title>Bluetooth Toy Plane</title>
<meta name="description" content="Control a toy plane with a Web Bluetooth app.">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<!-- Polymer components -->
<link rel="import" href="bower_components/paper-progress/paper-progress.html">
<link rel="import" href="bower_components/paper-slider/paper-slider.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/paper-card/paper-card.html">
<link rel="import" href="bower_components/paper-dialog/paper-dialog.html">
<link rel="import" href="bower_components/platinum-bluetooth/platinum-bluetooth-elements.html">
<link rel="import" href="bower_components/paper-styles/color.html">
<link rel="stylesheet" href="bower_components/paper-styles/demo.css">
<style is="custom-style">
paper-progress {
width: 100%;
}
paper-progress.blue {
paper-progress-active-color: var(--paper-light-blue-500);
paper-progress-secondary-color: var(--paper-light-blue-100);
}
paper-slider {
width: 100%;
}
paper-slider.blue {
paper-slider-active-color: var(--paper-light-blue-500);
paper-slider-knob-color: var(--paper-light-blue-500);
}
paper-button {
display: block;
margin-bottom: 24px;
}
paper-button.colorful {
color: #4285f4;
}
paper-button[raised].colorful {
background: #4285f4;
color: #fff;
}
paper-button[toggles] {
transition: background-color 0.3s;
}
paper-button[toggles][active] {
background-color: rgba(0, 0, 0, 0.25);
}
paper-button[toggles][active].colorful {
background-color: rgba(66, 133, 244, 0.25);
}
paper-button[toggles][active][raised].colorful {
background-color: rgba(66, 133, 244, 0.75);
}
paper-button.blue {
color: var(--paper-light-blue-500);
paper-button-flat-focus-color: var(--paper-light-blue-50);
}
body {
background-color: var(--paper-grey-50);
}
#cards {
margin-left: auto;
margin-right: auto;
max-width: 400px;
}
paper-card {
margin-bottom: 16px;
width: 100%;
}
</style>
</head>
<body unresolved>
<div id="cards">
<paper-card heading="Bluetooth Toy Plane">
<div class="card-content">
<paper-progress id="progress" indeterminate></paper-progress>
</div>
</paper-card>
<paper-card>
<div class="card-content">
<paper-button id="left" raised class="colorful">Left</paper-button>
<paper-button id="center" raised class="colorful">Center</paper-button>
<paper-button id="right" raised class="colorful">Right</paper-button>
<paper-button id="stop" raised class="colorful">Stop</paper-button>
</div>
</paper-card>
<paper-card>
<div class="card-content">
<div class="center horizontal layout">
<div>Engine</div>
<paper-slider id="engine" class="red" value="0" max="254" editable></paper-slider>
</div>
</div>
</paper-card>
<paper-card>
<div class="card-content">
<div class="center horizontal layout">
<div>Rudder</div>
<paper-slider id="rudder" class="red" value="0" min="-128" max="127" editable></paper-slider>
</div>
</div>
</paper-card>
<paper-dialog id="dialog">
<h2>Error</h2>
<p>Could not connect to bluetooth device!</p>
</paper-dialog>
</div>
<platinum-bluetooth-device id="plane-device"
name-filter="TailorToys PowerUp"
optional-services-filter='["75b64e51-f181-4ed1-921a-476090d80ba7"]'>
<platinum-bluetooth-service service="75b64e51-f181-4ed1-921a-476090d80ba7">
<platinum-bluetooth-characteristic id="engineCharacteristic"
characteristic="75b64e51-f184-4ed1-921a-476090d80ba7"
auto-write>
</platinum-bluetooth-characteristic>
<platinum-bluetooth-characteristic id="rudderCharacteristic"
characteristic="75b64e51-f185-4ed1-921a-476090d80ba7"
auto-write>
</platinum-bluetooth-characteristic>
</platinum-bluetooth-service>
</platinum-bluetooth-device>
<script>
document.addEventListener('WebComponentsReady', function() {
var progress = document.querySelector('#progress');
var dialog = document.querySelector('#dialog');
var engine = document.querySelector('#engine');
var rudder = document.querySelector('#rudder');
var leftButton = document.querySelector('#left');
var rightButton = document.querySelector('#right');
var centerButton = document.querySelector('#center');
var stopButton = document.querySelector('#stop');
var planeDevice = document.querySelector('#plane-device');
var engineCharacteristic = document.querySelector('#engineCharacteristic');
var rudderCharacteristic = document.querySelector('#rudderCharacteristic');
progress.hidden = true;
function handleError(error) {
console.log(error);
progress.hidden = true;
dialog.open();
}
engine.addEventListener('value-change', function() {
progress.hidden = false;
planeDevice.request().then(function() {
engineCharacteristic.value = new Uint8Array([engine.value]);
progress.hidden = true;
})
.catch(handleError);
});
engineCharacteristic.addEventListener('platinum-bluetooth-auto-write-error', handleError);
rudder.addEventListener('value-change', function() {
progress.hidden = false;
planeDevice.request().then(function() {
rudderCharacteristic.value = new Uint8Array([rudder.value]);
progress.hidden = true;
})
.catch(handleError);
});
rudderCharacteristic.addEventListener('platinum-bluetooth-auto-write-error', handleError);
leftButton.addEventListener('click', function () {
rudder.value = -100;
});
rightButton.addEventListener('click', function () {
rudder.value = 100;
});
centerButton.addEventListener('click', function () {
rudder.value = 0;
});
stopButton.addEventListener('click', function () {
engine.value = 0;
});
});
</script>
</body>
</html>