-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathintrohelp.html
452 lines (433 loc) · 21 KB
/
introhelp.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="icon" href="https://www.juggluco.nl/Juggluco/arrow.png">
<title>Intro help</title>
<style>
a:link {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: lightblue;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: green;
background-color: transparent;
text-decoration: underline;
}
</style> <style type="text/css">
@page { size: 8.27in 11.69in; margin: 0.79in }
td p { line-height: 115%; orphans: 2; widows: 2; margin-bottom: 0.1in; background: transparent }
p { orphans: 2; widows: 2; margin-bottom: 0.1in; background: transparent }
</style>
<base href="https://www.juggluco.nl/Jugglucohelp/mgdL/" id="baseurl" target="_blank">
<script type="text/javascript">
var unitstr='mg/dL';
function getunitarg(){
const params = new URLSearchParams(document.location.search);
const unit = params.get("unit");
if(unit===null) {
return 0;
}
if(unit == "mg/dL") {
return 2;
}
else {
if(unit=="mmol/L") {
return 1;
}
}
console.log("unit wrong");
// params.delete("unit");
// window.location.search = params;
// console.log("search="+ window.location.search);
return 0;
}
let mmol=[
"AM",
"AU",
"BA",
"BG",
"BW",
"BY",
"CA",
"CH",
"CN",
"CZ",
"DK",
"EE",
"FI",
"GB",
"HK",
"HR",
"HU",
"IE",
"IS",
"KW",
"KZ",
"LT",
"LV",
"MT",
"MY",
"NA",
"NL",
"NO",
"NZ",
"RS",
"RU",
"SE",
"SI",
"SK",
"UA",
"ZA"];
function getunit() {
var unit=getunitarg();
if(unit!=0) {
return unit;
}
var userLang = navigator.language || navigator.userLanguage;
var co=userLang.toUpperCase();
for(const element of mmol) {
if(co.includes(element)) {
console.log("LANG mmol/L");
// window.location.search += 'unit=mmol/L';
// console.log("getunit search="+ window.location.search);
return 1;
}
}
console.log("LANG mg/dL");
// window.location.search += 'unit=mg/dL';
// console.log("getunit search="+ window.location.search);
return 2;
}
function setbaseurl(){
if(getunit()!=1) {
document.getElementById("baseurl").href = "https://www.juggluco.nl/Jugglucohelp/mgdL/";
console.log("unitstr=mg/dL");
unitstr='mg/dL';
}
else {
document.getElementById("baseurl").href = "https://www.juggluco.nl/Jugglucohelp/";
console.log("unitstr=mmol/L");
unitstr='mmol/L';
}
}
setbaseurl();
</script>
</head>
<img src="left.png" style="object-fit:contain; width:15cm; height:auto;margin: 1cm 1cm 1cm 1cm;">
<img src="leftmiddle.png" style="object-fit:contain; width:15cm; height:auto;margin: 1cm 1cm 1cm 1cm;">
<img src="rightmiddle.png" style="object-fit:contain; width:15cm; height:auto;margin: 1cm 1cm 1cm 1cm;">
<img src="right.png" style="object-fit:contain; width:15cm; height:auto;margin: 1cm 1cm 1cm 1cm;">
<body dir="ltr" bgcolor="#000000" lang="en-US">
<p style="line-height: 115%; margin-bottom: 0in"> <font color="#ffffff"><font
face="Cambria, serif"><font style="font-size: 14pt" size="4"><b><a href="https://www.juggluco.nl">Juggluco</a></b></font></font>
is an applet for the control of blood glucose by people with diabetes.
It can scan Freestyle Libre (0 and 2) sensors (via NFC) and receive (via
Bluetooth) glucose values from <font color="#4f81bd"><font face="Calibri, serif"><i><b>Freestyle
Libre 2</b></i></font></font><font color="#4f81bd"> </font><font
color="#4f81bd"><font face="Calibri, serif"><i><b>and 3</b></i></font></font>
sensors.</font></p>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff">As
the program is run for the first time, you can (after initialization)
scan a Freestyle Libre <b>2</b> sensor by holding it against the NFC
sensor in your smartphone. Hereafter Juggluco will try to get a
Bluetooth connection with Freestyle Libre 2 sensors and receive every
minute a glucose value without scanning.</font></p>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff">To
take over an activated FreeStyle Libre <b>3</b> sensor, you need to
specify the Libreview Account information you used to activate the
sensor in <a href="https://www.juggluco.nl/Jugglucohelp/libreview.html">settings->Exchange data->Libreview</a>,
press <a href="https://www.juggluco.nl/Jugglucohelp/getaccountidhelp.html">"Get
Account ID"</a> and wait for the Account ID to arrive before scanning.</font></p>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff"><span
lang="en-US">The program contains four</span> <font color="#4f81bd"><font
face="Cambria, serif"><font style="font-size: 13pt" size="3"><span lang="en-US"><b>menus</b></span></font></font></font><span
lang="en-US">; by touching on an empty part of the display you can
open a</span> <span lang="en-US">menu. Touch</span> <span lang="en-US">on
the left fourth</span> <span lang="en-US">of the screen opens the
left menu, the left side of the middle part opens the second</span> <span
lang="en-US">menu
and the right part of the middle opens the third</span> <span lang="en-US">menu</span>
<span lang="en-US">and the right fourth</span> <span lang="en-US">of
the screen the fourth menu.</span> </font> </p>
<p style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.08in; margin-bottom: 0.08in; background: transparent; page-break-after: avoid">
<font color="#ffffff"><font style="font-size: 12pt" size="3"><i>Menu 4:
Movement (right)</i></font></font></p>
<table cellspacing="0" cellpadding="0" width="96">
<colgroup><col width="96"> </colgroup>
<tbody>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p> <font color="#ffff6d">15:10 ↗ 93</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/searchhelp.html">Search</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">Date</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">Day back</font></p>
</td>
</tr>
<tr style="background: transparent">
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">Day later</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">Week back</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">Week Later</font></p>
</td>
</tr>
</tbody>
</table>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff"><span
lang="en-US">By moving left and right over the screen you can move the
curve left and right. You can also move by using the </span><font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><b>movement menu</b></span></font></font>
<span lang="en-US">on the right. Use </span><font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><i><b>Date</b></i></span></font></font>
<span lang="en-US">to select a date, </span><font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><i><b>Search</b></i></span></font></font>
<span lang="en-US">to search for glucose values and entered numbers.</span>
<span lang="en-US">The first item of the right menu is the current time
and by selecting it you jump to the right of the graph (now).</span></font></p>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff">If <i>manually
scale Glucose</i> is set in Settings, moving up and down in the upper
part of the screen changes the maximum of the graph, in the lower part
of the screen it changes the minimum. If <i>Manually scale Time </i>is
set in settings, you can increase or decrease the amount of time
displayed on the screen by changing the distance between two fingers.</font></p>
<p style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.08in; margin-bottom: 0.08in; background: transparent; page-break-after: avoid">
<font color="#ffffff"><font style="font-size: 12pt" size="3"><i>Menu 3:
Display</i></font></font></p>
<table cellspacing="0" cellpadding="0" width="138">
<colgroup><col width="138"> </colgroup>
<tbody>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d">Last Scan</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d">Scans [x]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d">Stream [x]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d">History [x]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d">Amounts [x]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/mealhelp.html">Meals</a>
[ ]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="138" valign="top" height="42">
<p> <font color="#ffff6d">Dark mode [x]</font></p>
</td>
</tr>
</tbody>
</table>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff"><span
lang="en-US">The </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>right
of the middle menu</b></span></font></font> <span lang="en-US">contains
display
options. To view the last scan, touch the first</span> <span lang="en-US">item.
</span>A cross after <i>Scans</i> means that scans are displayed in
the graph. A scan is the current glucose value you get when you scan a Libre 0 or 2 sensor. Scanning also transfers 15 minutes measurements of the last 8 hours from sensor to smartphone. Display of these values can be
controlled by touching <i>History</i>. Libre 3 sensors send the history
values by Bluetooth and they are every 5 minutes. <i>Stream</i> stands
for glucose values sent every minute via Bluetooth from a Freestyle
Libre 2 and 3 sensors to this applet.</font></p>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff">You
can enter all kind of numbers (with whatever label you like) to document
you insulin, carbohydrate and activities. They are displayed at fixed
height in the glucose graph at the specified time and date. <span lang="en-US">Touching
on points</span> <span lang="en-US">in the graph or an entered number
gives information about that item. You can edit an entered number by
long touching it. Editing is also possible via the number list in the
left middle menu</span> <span lang="en-US">and
touching the corresponding data element.</span> <i>Amounts</i>
determines the display of entered numbers. In <i>Settings</i>, you can
specify which <a href="https://www.juggluco.nl/Jugglucohelp/labelhelp.html">labels</a>
you like to use for these numbers. Above one of the numbers the
corresponding label is shown.</font></p>
<p style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.08in; margin-bottom: 0.08in; background: transparent; page-break-after: avoid">
<font color="#ffffff"><font style="font-size: 12pt" size="3"><i>Menu 2:
Left of middle</i></font></font></p>
<table style="width: 119px; height: 337px;" cellspacing="0" cellpadding="0">
<colgroup><col width="96"> </colgroup>
<tbody>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/helpexport.html">Export</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/connectionoverview.html">Mirror</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/newamount.html" onclick= "location.href=this.href+'?unit='+unitstr;return false;">New Amount</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d">List</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/stathelp.html" onclick= "location.href=this.href+'?unit='+unitstr;return false;" >Statistics</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/talkhelp.html">Talk</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="96" valign="top">
<p align="left"><font color="#ffff6d">Float [ ]</font></p>
</td>
</tr>
</tbody>
</table>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff">You
can enter these numbers by touching <font color="#4f81bd"><font face="Cambria, serif"><font
style="font-size: 13pt" size="3"><span lang="en-US"><b>New Amount</b></span></font></font></font>
in <font color="#4f81bd"><font face="Cambria, serif"><span lang="en-US"><b>left
of the middle menu</b></span></font></font>. <font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><b>Export</b></span></font></font>
<span lang="en-US">saves data in .tsv (tab separated values) format to a
file. </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>Mirror</b></span></font></font> <span lang="en-US">makes
it possible to send data via IP/TCP to this app running on a different
device to display the same information. </span><font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><b>List</b></span></font></font>
<span lang="en-US">gives a list of the entered numbers. If Juggluco has
received enough glucose values via Bluetooth, you can see some
statistics by touching </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>Statistics</b></span></font></font><span lang="en-US">.
It shows the percentage of the measurements in certain glucose ranges,
the Glucose Management Indicator (a predictor of HbA1c), glucose
variability and a summary graph showing the glucose value below which
100%,95%,75%,50%,25% and 0% of the values lie at each moment of the
day.</span> <span lang="en-US">In </span><font color="#4f81bd"><font
face="Cambria, serif"><span lang="en-US"><b>Talk</b></span></font></font>
<span lang="en-US">you can make Juggluco speak out incoming glucose
values, touched elements of the graph or messages. Float turns on </span><font
color="#4f81bd"><font face="Cambria, serif"><span lang="en-US"><b>Floating Glucose</b></span></font></font><span lang="en-US">. A glucose
value present on the screen above other apps. <a href="https://www.juggluco.nl/Jugglucohelp/floatingconfig.html" onclick= "location.href=this.href+'?unit='+unitstr;return false;" >In
Settings you can change its color and size.</a></span></font></p>
<p style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.08in; margin-bottom: 0.08in; background: transparent; page-break-after: avoid">
<font color="#ffffff"><font style="font-size: 12pt" size="3"><i>Menu 1:
Left</i></font></font></p>
<table cellspacing="0" cellpadding="0" width="120">
<colgroup><col width="120"> </colgroup>
<tbody>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top">
<p><font color="#ffff6d">System UI [ ]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top">
<p><font color="#ffff6d">Menus [ ]</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/watchinfo.html">Watch</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/sensorhelp.html">Sensor</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top" height="26">
<p><font color="#ffff6d"><a href="https://www.juggluco.nl/Jugglucohelp/settinghelp.html" onclick= "location.href=this.href+'?unit='+unitstr;return false;" >Settings</a></font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top" height="26">
<p> <font color="#ffff6d">Sibionics</font></p>
</td>
</tr>
<tr>
<td style="border: none; padding: 0in" width="120" valign="top">
<p><font color="#ffff6d">Close</font></p>
</td>
</tr>
</tbody>
</table>
<p style="line-height: 115%; margin-bottom: 0in"><font color="#ffffff"><span
lang="en-US">In the </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>left menu</b></span></font></font><span lang="en-US">,
you can find </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>Settings</b></span></font></font><span lang="en-US">,
to set the glucose unit to mmol/L or mg/dL, to</span> <span lang="en-US">specify</span>
<span lang="en-US"><a href="https://www.juggluco.nl/Jugglucohelp/labelhelp.html">labels</a>,
set <a href="https://www.juggluco.nl/Jugglucohelp/alarmhelp.html">glucose
alarms</a> and <a href="https://www.juggluco.nl/Jugglucohelp/reminders.html">medication
reminders</a></span> <span lang="en-US">and display ranges. System
UI determines if Android controls and status bar are shown. In </span><font
color="#4f81bd"><font face="Cambria, serif"><span lang="en-US"><b>Watch</b></span></font></font>
<span lang="en-US">you can specify Juggluco to send data to all kinds of
smartwatches. In </span><font color="#4f81bd"><font face="Cambria, serif"><span
lang="en-US"><b>Sensor</b></span></font></font><span lang="en-US">,
you can see how the connection with the sensor is going. Touch </span><font
color="#4f81bd"><font face="Cambria, serif"><span lang="en-US"><b>Menus</b></span></font></font>
<span lang="en-US">to show all the mentioned menus at the same time in a
way that can be read by talkback. Close can be used to exit</span> <span
lang="en-US">Juggluco.</span></font></p>
<p style="line-height: 115%; margin-bottom: 0in"><br>
</p>
<p style="line-height: 115%; margin-bottom: 0in"><br>
</p>
<p style="line-height: 115%; margin-bottom: 0in"><br>
</p>
</body>
</html>