
If I test the "raw" print method, and click, "epl_sample.txt" it's starts printing a LONG file of what looks like code.

How can I send my own raw code, something like "hello world" or the custom data I need to print? Is there a receipt template I can use and modify to fit my company name, logo and transaction data? Not sure how to send it.
When trying to use the "USB" method, instead of "raw"

I'm able to find few value that work, but I'm unable to "claim" the device

Emulation: ESC/POS/STAR Command
--
You received this message because you are subscribed to the Google Groups "qz-print" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qz-print+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
return printFile('zebra_label.zpl');
var config = qz.configs.create("zebra"); var data = [ { type: 'raw', format: 'file', data: 'zebra_label.zpl' } ]; qz.print(config, data).catch(function(e) { console.error(e); });
I would like to generate the raw ZPL on my web server, and then reference that file from the HTML I send to the end users browser. I'm assuming the QZ Tray javascript files leverage AJAX or something to accomplish this? (Or does this file need to live on the end users computer already?)
Just to be clear, can the file I reference live on the webserver?