I have found an API here: http://www.starmicronics.com/Supports/Developer.aspx

However, when I run the AndroidSample test app I get errors.

When I press on the "Get Printer Status" button I get "Printer is online". This button works it seems.

However:

  • Pressing "Read data from printer" yields "Failure. could not read in the firmware name."

  • Pressing "Print Receipt" cause the application to hang for 3 seconds. Then nothing.

  • Pressing "Print Checked Block Receipt" yields either "printing succeeded" or a big hang (sometimes force close). In any case, nothing is printed.

link|improve this question
Has anyone been able to solve this? I have the same problem.thx – kjd Oct 15 '11 at 4:38
feedback

3 Answers

Reading through the documentation for the iOS and Android StarIO SDKs I found that the STAR TSP100LAN requires it to be in 'raster mode'. Unfortunately the samples provided with both the iPhone and Android SDKs are for printing in 'line mode' only. While this isn't an answer, hopefully it will help point you in the right direction :)

I am going to try and contact Star themselves and see if I can get some sample code from them directly, wish me luck, I will report back here with any response I get!

link|improve this answer
That would be really helpful. I can't believe the demo apps they send don't work! Im trying to go through their iPhone one right now, it can see the printer status correctly, (lid open etc) but it doesn't print. – sasquatch Nov 17 '11 at 21:19
I was able to contact STAR support in the US (I'm based in australia, local support seems to only be for end users and not developers) but when I started to make some progress with them, they discovered that I was calling from Australia and closed the support session and referred me to Star's Australian office! Very unhelpful! Back to the drawing board! unless someone in the US has more luck talking to tech support? – happs Dec 6 '11 at 0:33
The demo that's available in their current SDK uses raster printing (the second to last button on the screen). It seems fairly straight forward, basically just drawing some text on a bitmap canvas. The docs for the PrinterFunctions class now state "Line mode printing is not supported by the TSP100." – bensnider Feb 20 at 20:11
feedback

Did you add your Activity on AndroidManifest? and add the permission that your app need to allow them?

link|improve this answer
Yes. And the application starts, showing the Activity. – esb Jul 7 '11 at 18:24
So maybe it's back to your code and method that you used. – Mr.James Jul 7 '11 at 18:28
"AndroidSample" is an example for how to use the API. It comes bundled with the API files. The API has very little doccumentation and the example has very few comments. The problem is that I cant get the example to work, and I cant figure out why. – esb Jul 7 '11 at 19:19
feedback

Star added a new Android SDK package with more functionality than the old version mentioned in this thread (which I believe was V1.0). The new one is available here: http://www.starmicronics.com/support/SDKDocumentation.aspx

As mentioned above, the TSP100LAN needs to receive Raster commands since it's natively a graphical printer. The latest SDK package has an updated sample app which lets you test a lot of different printer functionality, including some Raster commands.

The SDK package that's available for download at the time of writing this answer is V2.3. The manual (README_StarIO_POSPrinter_Android_SDK.pdf) states that the TSP100LAN can use the Open Cash Drawer, Get Status, Print Raster Graphical Text (decorate text/send it to the printer), and Image File Printing (coupons) functions.

Star also has a programming manual which contains Raster commands detailing other functionality. See section 3.4: http://www.starmicronics.com/support/Mannualfolder/linemode_cm_en.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.