forked from evothings/cordova-eddystone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
232 lines (195 loc) · 4.59 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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no
initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<title>Eddystone Demo</title>
<script>
// Redirect console.log when running from Evothings Workbench.
if (window.hyper && window.hyper.log) { console.log = hyper.log }
</script>
<style>
body
{
font-family: sans-serif;
}
h1
{
margin-right:110px;
}
.evo-image
{
position:fixed;
right:5px;
top:5px;
width:100px;
height:auto;
background:white;
}
</style>
</head>
<body>
<img class="evo-image" src="https://evomedia.evothings.com/2013/11/evothings_logo_large_white1.png" />
<h1>Eddystone Demo</h1>
<p id="message">Preparing...</p>
<div id="found-beacons"></div>
<!--
Including cordova.js will automatically include the JavaScript library
for Eddystone.
-->
<script src="cordova.js"></script>
<script>
// Application code starts here. The code is wrapped in a
// function closure to prevent overwriting global objects.
(function()
{
// Dictionary of beacons.
var beacons = {};
// Timer that displays list of beacons.
var timer = null;
function onDeviceReady()
{
// Start tracking beacons!
setTimeout(startScan, 500);
// Timer that refreshes the display.
timer = setInterval(updateBeaconList, 500);
}
function startScan()
{
showMessage('Scan in progress.');
evothings.eddystone.startScan(
function(beacon)
{
// Update beacon data.
beacon.timeStamp = Date.now();
beacons[beacon.address] = beacon;
},
function(error)
{
showMessage('Eddystone scan error: ' + error);
});
}
// Map the RSSI value to a value between 1 and 100.
function mapBeaconRSSI(rssi)
{
if (rssi >= 0) return 1; // Unknown RSSI maps to 1.
if (rssi < -100) return 100; // Max RSSI
return 100 + rssi;
}
function getSortedBeaconList(beacons)
{
var beaconList = [];
for (var key in beacons)
{
beaconList.push(beacons[key]);
}
beaconList.sort(function(beacon1, beacon2)
{
return mapBeaconRSSI(beacon1.rssi) < mapBeaconRSSI(beacon2.rssi);
});
return beaconList;
}
function updateBeaconList()
{
removeOldBeacons();
displayBeacons();
}
function removeOldBeacons()
{
var timeNow = Date.now();
for (var key in beacons)
{
// Only show beacons updated during the last 60 seconds.
var beacon = beacons[key];
if (beacon.timeStamp + 60000 < timeNow)
{
delete beacons[key];
}
}
}
function displayBeacons()
{
var html = '';
var sortedList = getSortedBeaconList(beacons);
for (var i = 0; i < sortedList.length; ++i)
{
var beacon = sortedList[i];
var htmlBeacon =
'<p>'
+ htmlBeaconName(beacon)
+ htmlBeaconURL(beacon)
+ htmlBeaconNID(beacon)
+ htmlBeaconBID(beacon)
+ htmlBeaconVoltage(beacon)
+ htmlBeaconTemperature(beacon)
+ htmlBeaconRSSI(beacon)
+ '</p>';
html += htmlBeacon
}
document.querySelector('#found-beacons').innerHTML = html;
}
function htmlBeaconName(beacon)
{
var name = beacon.name || 'no name';
return '<strong>' + name + '</strong><br/>';
}
function htmlBeaconURL(beacon)
{
return beacon.url ?
'URL: ' + beacon.url + '<br/>' : '';
}
function htmlBeaconURL(beacon)
{
return beacon.url ?
'URL: ' + beacon.url + '<br/>' : '';
}
function htmlBeaconNID(beacon)
{
return beacon.nid ?
'NID: ' + uint8ArrayToString(beacon.nid) + '<br/>' : '';
}
function htmlBeaconBID(beacon)
{
return beacon.bid ?
'BID: ' + uint8ArrayToString(beacon.bid) + '<br/>' : '';
}
function htmlBeaconVoltage(beacon)
{
return beacon.voltage ?
'Voltage: ' + beacon.voltage + '<br/>' : '';
}
function htmlBeaconTemperature(beacon)
{
return beacon.temperature && beacon.temperature != 0x8000 ?
'Temperature: ' + beacon.temperature + '<br/>' : '';
}
function htmlBeaconRSSI(beacon)
{
return beacon.rssi ?
'RSSI: ' + beacon.rssi + '<br/>' : '';
}
function uint8ArrayToString(uint8Array)
{
function format(x)
{
var hex = x.toString(16);
return hex.length < 2 ? '0' + hex : hex;
}
var result = '';
for (var i = 0; i < uint8Array.length; ++i)
{
result += format(uint8Array[i]) + ' ';
}
return result;
}
function showMessage(text)
{
document.querySelector('#message').innerHTML = text;
}
// This calls onDeviceReady when Cordova has loaded everything.
document.addEventListener('deviceready', onDeviceReady, false);
})(); // End of closure.
</script>
</body>
</html>