I am writing an App for a restaurant that needs to print receipts.
How to print to a bluetooth receipt thermal printer from an iOS App?
Just need to print simple text and maybe a logo.
I cannot find any current SDK. Just need support for iOS 8+
I am writing an App for a restaurant that needs to print receipts.
How to print to a bluetooth receipt thermal printer from an iOS App?
Just need to print simple text and maybe a logo.
I cannot find any current SDK. Just need support for iOS 8+
OK the solution is to use epson sample code which was just released about a month ago.
// ePOS SDK Ver.2.4.0
It includes a library called libpos2.a
which you initialise with as Epos2Printer
Example: Epos2Printer *printer_; in objective-c
The source file is called "ePOS_SDK_Sample_iOS.zip"
Google it and you should fine it, make sure it is version 2 "ePOS2" is was released November 2016.
The discovery view controller allows to to select the printer and main view controller has the sample code you need to print to it.
Hope this helps!