Try this
<CODE>
Dim Printer_AStream as AsyncStreams
Dim tr as textreader
Dim Buffer() as byte
Dim Success as Boolean
SerialPrinter.SetPort("/dev/ttyMT0",9600,0)
Printer_AStream.Initialize(SerialPrinter.InputStream,SerialPrinter.OutputStream,"Printer_Astream")
tr.Initialize(File.OpenInput(File.Dirdefaultexternal , "example.txt"))
buffer = tr.ReadAll.GetBytes("ISO-8859-1") 'Or other Iso Format
Success = Printer_AStream.Write(buffer)
...
..
</CODE>
You need Module SerialLibJab for this