Reputation: 13501
I need to connect to printer through Bluetooth. Is there a way to do it. Printer I use is CMP10BT
.
Thanks in advance.
Upvotes: 5
Views: 1320
Reputation: 581
Peerke is correct. The printer uses rather common ESC/POS standard; you should be able to either find some Java library for this or write your own code to output to printer.
I did similar things for Zebra (CPCL standard) and Blackberry (again, Bluetooth and Java) and found it simple.
Upvotes: 1
Reputation: 5228
There is a Bluetooth api in android. (http://developer.android.com/guide/topics/wireless/bluetooth.html)
With the Bluetooth api you can connect to any Bluetooth device you have including printers. The problem is, that you need to know how to speak to your printer. You have to figure that out. Besides that, I don't see any problem why you can't do this.
Upvotes: 1