-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (91 loc) · 3.52 KB
/
index.html
File metadata and controls
102 lines (91 loc) · 3.52 KB
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
<!-- Start page for the Datalogic Java SDK samples -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Javascript SDK Sample Apps</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="samples/res/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="samples/styles/index.css">
<link rel="stylesheet" type="text/css" href="samples/styles/styles.css">
</head>
<body>
<header>
<img class="logo" src="samples/res/logo.jpg" alt="Datalogic">
<center>
<h2>Javascript SDK Samples</h2>
<p class="description">
The following web apps demonstrate different aspects of the Datalogic Javascript SDK exposed by
Datalogic Enterprise Browser
</p>
</center>
</header>
<h3>Barcode Functions</h3>
<hr>
<div class="test-pages">
<!-- Barcode scanning sample -->
<a id="barcode-scanning" class="card" href="samples/barcode.html">
<img class="card-icon" src="samples/res/barcode-scanner.svg" alt="Avatar">
<span class="test-page-link">Barcode Scanning</span>
</a>
<!-- Scanning configuration sample -->
<a id="scanning-configuration" class="card" href="samples/config.html">
<img class="card-icon" src="samples/res/settings.svg" alt="Avatar">
<span class="test-page-link">Scanning Configuration</span>
</a>
<!-- Keyboard configuration sample -->
<a id="keyboard-configuration" class="card" href="samples/keyboard.html">
<img class="card-icon" src="samples/res/keyboard.svg" alt="Avatar">
<span class="test-page-link">Keyboard Configuration</span>
</a>
</div>
<h3>Peripherals</h3>
<hr>
<div class="test-pages">
<!-- Use the Camera-->
<a id="camera" class="card" href="samples/camera.html">
<img class="card-icon" src="samples/res/camera.svg" alt="Avatar">
<span class="test-page-link">Camera</span>
</a>
<!-- Trigger Location -->
<a id="location" class="card" href="samples/location.html">
<img class="card-icon" src="samples/res/location.svg" alt="Avatar">
<span class="test-page-link">Location</span>
</a>
<!-- Use the Microphone -->
<a id="microphone" class="card" href="samples/microphone.html">
<img class="card-icon" src="samples/res/microphone.svg" alt="Avatar">
<span class="test-page-link">Microphone</span>
</a>
<!-- Notification -->
<a id="notification" class="card" href="samples/notification.html">
<img class="card-icon" src="samples/res/vibrate.svg" alt="Avatar">
<span class="test-page-link">Notification</span>
</a>
</div>
<h3>Cradle Functions</h3>
<hr>
<div class="test-pages">
<!-- Unlock the Cradle -->
<a id="unlock" class="card" href="samples/unlock.html">
<img class="card-icon" src="samples/res/unlock.svg" alt="Avatar">
<span class="test-page-link">Unlock Cradle</span>
</a>
<!-- Control Cradle LEDs -->
<a id="led" class="card" href="samples/led.html">
<img class="card-icon" src="samples/res/led.svg" alt="Avatar">
<span class="test-page-link">Cradle LEDs</span>
</a>
<!-- Add Cradle Listeners -->
<a id="listener" class="card" href="samples/listeners.html">
<img class="card-icon" src="samples/res/listener.svg" alt="Avatar">
<span class="test-page-link">Cradle Listeners</span>
</a>
<!-- Read/Write to Cradle -->
<a id="read-write" class="card" href="samples/read_write.html">
<img class="card-icon" src="samples/res/read_write.svg" alt="Avatar">
<span class="test-page-link">Read/Write to Cradle</span>
</a>
</div>
</body>
</html>