Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active November 9, 2022 22:59
Embed
What would you like to do?
const conector = new ConectorPluginV3(URLPlugin);
conector.Iniciar();
conector.EscribirTexto("Hola mundo\nParzibyte.me");
conector.Feed(1);
const respuesta = await conector
.imprimirEn(nombreImpresora);
if (respuesta === true) {
alert("Impreso correctamente");
} else {
alert("Error: " + respuesta);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment