-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathindex.html
274 lines (251 loc) · 9.83 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
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
<!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 Printer</title>
<meta name="description" content="Print text and images to a Bluetooth Printer 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/paper-input/paper-input.html">
<link rel="import" href="bower_components/paper-input/paper-input-container.html">
<link rel="import" href="bower_components/paper-input/paper-input-error.html">
<link rel="import" href="bower_components/paper-input/paper-input-char-counter.html">
<link rel="import" href="bower_components/paper-input/paper-textarea.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: 2px;
}
paper-button.colorful {
color: #4285f4;
}
paper-button[raised].colorful {
background: #4285f4;
color: #fff;
}
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: 5px;
margin-top: 5px;
width: 100%;
}
paper-card#logo {
@apply(--layout-vertical);
@apply(--layout-center);
}
</style>
</head>
<body unresolved>
<div id="cards">
<paper-card heading="Bluetooth Printer">
<div class="card-content">
<paper-progress id="progress" indeterminate></paper-progress>
</div>
</paper-card>
<paper-card id="logo">
<div class="card-content">
<image id="image" src="logo-black.png" width="200px"></image>
</div>
</paper-card>
<paper-card>
<div class="card-content">
<paper-textarea id="message" label="Enter Message"></paper-textarea>
</div>
</paper-card>
<paper-card>
<div class="card-content">
<paper-button id="print" raised class="colorful">Print</paper-button>
</div>
</paper-card>
<paper-dialog id="dialog">
<h2>Error</h2>
<p>Could not connect to bluetooth device!</p>
</paper-dialog>
</div>
<script>
'use strict';
document.addEventListener('WebComponentsReady', function() {
let progress = document.querySelector('#progress');
let dialog = document.querySelector('#dialog');
let message = document.querySelector('#message');
let printButton = document.querySelector('#print');
let printCharacteristic;
let index = 0;
let data;
progress.hidden = true;
let image = document.querySelector('#image');
// Use the canvas to get image data
let canvas = document.createElement('canvas');
// Canvas dimensions need to be a multiple of 40 for this printer
canvas.width = 120;
canvas.height = 120;
let context = canvas.getContext("2d");
context.drawImage(image, 0, 0, canvas.width, canvas.height);
let imageData = context.getImageData(0, 0, canvas.width, canvas.height).data;
function getDarkPixel(x, y) {
// Return the pixels that will be printed black
let red = imageData[((canvas.width * y) + x) * 4];
let green = imageData[((canvas.width * y) + x) * 4 + 1];
let blue = imageData[((canvas.width * y) + x) * 4 + 2];
return (red + green + blue) > 0 ? 1 : 0;
}
function getImagePrintData() {
if (imageData == null) {
console.log('No image to print!');
return new Uint8Array([]);
}
// Each 8 pixels in a row is represented by a byte
let printData = new Uint8Array(canvas.width / 8 * canvas.height + 8);
let offset = 0;
// Set the header bytes for printing the image
printData[0] = 29; // Print raster bitmap
printData[1] = 118; // Print raster bitmap
printData[2] = 48; // Print raster bitmap
printData[3] = 0; // Normal 203.2 DPI
printData[4] = canvas.width / 8; // Number of horizontal data bits (LSB)
printData[5] = 0; // Number of horizontal data bits (MSB)
printData[6] = canvas.height % 256; // Number of vertical data bits (LSB)
printData[7] = canvas.height / 256; // Number of vertical data bits (MSB)
offset = 7;
// Loop through image rows in bytes
for (let i = 0; i < canvas.height; ++i) {
for (let k = 0; k < canvas.width / 8; ++k) {
let k8 = k * 8;
// Pixel to bit position mapping
printData[++offset] = getDarkPixel(k8 + 0, i) * 128 + getDarkPixel(k8 + 1, i) * 64 +
getDarkPixel(k8 + 2, i) * 32 + getDarkPixel(k8 + 3, i) * 16 +
getDarkPixel(k8 + 4, i) * 8 + getDarkPixel(k8 + 5, i) * 4 +
getDarkPixel(k8 + 6, i) * 2 + getDarkPixel(k8 + 7, i);
}
}
return printData;
}
function handleError(error) {
console.log(error);
progress.hidden = true;
printCharacteristic = null;
dialog.open();
}
function sendNextImageDataBatch(resolve, reject) {
// Can only write 512 bytes at a time to the characteristic
// Need to send the image data in 512 byte batches
if (index + 512 < data.length) {
printCharacteristic.writeValue(data.slice(index, index + 512)).then(() => {
index += 512;
sendNextImageDataBatch(resolve, reject);
})
.catch(error => reject(error));
} else {
// Send the last bytes
if (index < data.length) {
printCharacteristic.writeValue(data.slice(index, data.length)).then(() => {
resolve();
})
.catch(error => reject(error));
} else {
resolve();
}
}
}
function sendImageData() {
index = 0;
data = getImagePrintData();
return new Promise(function(resolve, reject) {
sendNextImageDataBatch(resolve, reject);
});
}
function sendTextData() {
// Get the bytes for the text
let encoder = new TextEncoder("utf-8");
// Add line feed + carriage return chars to text
let text = encoder.encode(message.value + '\u000A\u000D');
return printCharacteristic.writeValue(text).then(() => {
console.log('Write done.');
});
}
function sendPrinterData() {
// Print an image followed by the text
sendImageData()
.then(sendTextData)
.then(() => {
progress.hidden = true;
})
.catch(handleError);
}
printButton.addEventListener('click', function () {
progress.hidden = false;
if (printCharacteristic == null) {
navigator.bluetooth.requestDevice({
filters: [{
services: ['000018f0-0000-1000-8000-00805f9b34fb']
}]
})
.then(device => {
console.log('> Found ' + device.name);
console.log('Connecting to GATT Server...');
return device.gatt.connect();
})
.then(server => server.getPrimaryService("000018f0-0000-1000-8000-00805f9b34fb"))
.then(service => service.getCharacteristic("00002af1-0000-1000-8000-00805f9b34fb"))
.then(characteristic => {
// Cache the characteristic
printCharacteristic = characteristic;
sendPrinterData();
})
.catch(handleError);
} else {
sendPrinterData();
}
});
});
</script>
</body>
</html>