nicolaj-hartmann / jzebra

Automatically exported from code.google.com/p/jzebra
0 stars 0 forks source link

Raw Bytes Support #11

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Add support for sendBytes() in base64, Hex and numerical.

Example:

applet.sendByte(27); --> this would send "ESC" key
applet.sendByte("1B"); --> this would send "ESC" key too

Original issue reported on code.google.com by tres.fin...@gmail.com on 17 Nov 2009 at 12:29

GoogleCodeExporter commented 9 years ago
Note:  Request to support Samsung SRP-350plus thermal printer requested by 
Felix.

Original comment by tres.fin...@gmail.com on 17 Nov 2009 at 12:35

GoogleCodeExporter commented 9 years ago
Added support in 1.0.4 pre2.

Usage:  applet.append(String.fromCharCode(27)); --> this would send "ESC" key
        applet.append("\x1B"); --> this would send "ESC" key too!

Warning:  API has been re-written.  See attached HTML file for details.

http://jzebra.googlecode.com/files/jZebra%201.0.4%20pre2.zip

Original comment by tres.fin...@gmail.com on 24 Nov 2009 at 3:53