This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<textarea id="printContent"></textarea> | |
<input type="submit" onclick="connectAndPrint()" value="Print"/> | |
<ul> | |
<li>Needs <a href="chrome://flags/#enable-experimental-web-platform-features">Experimental Web Platform Features</a></li> | |
<li>Needs <a href="chrome://flags/#enable-webusb">Web USB</a></li> | |
</ul> | |
<script> | |
var device; | |
function setup(device) { | |
return device.open() | |
.then(() => device.selectConfiguration(1)) | |
.then(() => device.claimInterface(0)) | |
} | |
function print() { | |
var string = document.getElementById("printContent").value + "\n"; | |
var encoder = new TextEncoder(); | |
var data = encoder.encode(string); | |
device.transferOut(1, data) | |
.catch(error => { console.log(error); }) | |
} | |
function connectAndPrint() { | |
if (device == null) { | |
navigator.usb.requestDevice({ filters: [{ vendorId: 1046 }] }) | |
.then(selectedDevice => { | |
device = selectedDevice; | |
console.log(device); | |
return setup(device); | |
}) | |
.then(() => print()) | |
.catch(error => { console.log(error); }) | |
} | |
else | |
print(); | |
} | |
navigator.usb.getDevices() | |
.then(devices => { | |
if (devices.length > 0) { | |
device = devices[0]; | |
return setup(device); | |
} | |
}) | |
.catch(error => { console.log(error); }); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment