react-native-star-io10
is a library for supporting application development for Star Micronics devices.
This library is included in StarXpand SDK.
Please refer here for StarXpand SDK documentation.
Documentation includes an overview of the SDK, how to build a sample application, how to use the API, and a API reference.
Platform | Version | Arch |
---|---|---|
iOS | iOS 13.0 or later | Device: arm64 Simulator: x86_64, arm64 |
Android | Android 9.0 or later | arm64-v8a, armeabi-v7a, x86, x86_64 |
Windows | Windows 11 / Windows 10 22H2 | x86, x64 |
npm install react-native-star-io10 --save
In accordance with Apple's guidelines, react-native-star-io10
V1.6.1 or later includes a privacy manifest file. Please see here for the Manifest file.
However, react-native-star-io10
does not use the Required Reason API from the first release. (As of January 29, 2024)
Please check the table below and take action.
Interface of the printer | Necessary actions |
---|---|
Bluetooth | 1. & 2. & 4. |
Bluetooth Low Energy | 2. |
Ethernet (iOS14 or later) | 3. |
Lightning USB | 1. & 4. |
Supported external accessory protocols
Supported external accessory protocols
Key.jp.star-m.starpro
.:warning: If you do not use the printer concerned, do not configure this setting.
Bluetooth Always Usage Description
and Bluetooth Peripheral Usage Description
Privacy - Bluetooth Always Usage Description
Key.Deployment Target
to iOS12, add the Privacy - Bluetooth Peripheral Usage Description
Key.Use Bluetooth for communication with the printer.
)For more information, please refer to the following URL.
Local Network Usage Description
Privacy - Local Network Usage Description
Key.Use Local Network for communication with the printer or discovery the printers.
)In order to offer your application that communicates a MFi certified printer on the Apple iTunes App Store, your application needs to be approved by the Apple MFi program before you submit it to the Apple iTunes App Store. Please follow the steps described in the URL below to obtain the app approval. This procedure must be completed before the app is reviewed by Apple.
https://star-m.jp/eng/products/s_print/apple_app_mfi.html
:warning: In case of a Bluetooth Low Energy printer, you do not need to obtain this app approval.
Add the following configuration to the build.gradle of the app module of the app you wish to embed, which refers to the local Maven repository.
allprojects {
repositories {
flatDir {
dirs "$rootDir/../node_modules/react-native-star-io10/android/src/lib"
}
}
}
Refer to sample code and request BLUETOOTH_CONNECT permission before starting to communicate with or search for the printer.
When communicating with a USB printer, a dialog box will appear asking for connection permission. This permission is reset when the USB cable is plugged in or unplugged (including when the printer is turned on or off).
If you do not want to display the connection permission dialog every time the USB cable is plugged in or unplugged, configure the following settings. This setting will also allow the application to start automatically when the USB cable is plugged.
Add the following <intent-filter>
and <meta-data>
elements to AndroidManifest.xml.
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
<action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
<meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" android:resource="@xml/accessory_filter" />
Store the following resource files under res/xml
with the names device_filter.xml
and accessory_filter.xml
.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-device class="255" subclass="66" protocol="1" />
<usb-device vendor-id="1305" product-id="0003" /> <!--TSP100IIU+/IIIU/IV/IV SK-->
<usb-device vendor-id="1305" product-id="0071" /> <!--mC-Print3-->
<usb-device vendor-id="1305" product-id="0073" /> <!--mC-Print2-->
<usb-device vendor-id="1305" product-id="0025" /> <!--mC-Label3-->
<usb-device vendor-id="1305" product-id="0023" /> <!--mPOP-->
<usb-device vendor-id="1305" product-id="0001" /> <!--TSP650II/TSP650II SK/TSP700II/TSP800II/SP700/TUP500-->
<usb-device vendor-id="1305" product-id="0027" /> <!--BSC10II-->
<usb-device vendor-id="1305" product-id="0011" /> <!--BSC10-->
<usb-device vendor-id="1305" product-id="0015" /> <!--TSP043-->
<usb-device vendor-id="1305" product-id="0017" /> <!--BSC10BR-->
<usb-device vendor-id="1305" product-id="0075" /> <!--SK1-211/221/V211-->
<usb-device vendor-id="1305" product-id="0077" /> <!--SK1-311/321/V311-->
<usb-device vendor-id="1305" product-id="0067" /> <!--SM-S230i-->
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-accessory model="Star TSP143IV-UE" manufacturer="STAR"/>
<usb-accessory model="Star TSP143IV-UE SK" manufacturer="STAR"/>
<usb-accessory model="Star TSP143IV-UEWB" manufacturer="STAR"/>
<usb-accessory model="Star TSP143IV-UEWB SK" manufacturer="STAR"/>
<usb-accessory model="mC-Print3" manufacturer="Star Micronics"/>
<usb-accessory model="mC-Label3" manufacturer="Star Micronics"/>
<usb-accessory model="mPOP" manufacturer="Star Micronics"/>
<usb-accessory model="BSC10II" manufacturer="Star Micronics"/>
</resources>
Package.appxmanifest
.
In Android, when an image file size is large, and its URL is specified as the source of the ImageParameter which is the argument of the actionPrintImage method, the image may be printed in low resolution.
This can be solved by either of the following methods:
StarXpand SDK includes an example application that can be used in combination with the printer to check its operation. Please use it in conjunction with the explanations of each function in the linked pages.
The sample code and printed result images are also available here.
:warning: Some printer models may not be able to print some samples. Please adjust the layout accordingly when using this samples.
async getStatus(): Promise<void> {
// Specify your printer connection settings.
var settings = new StarConnectionSettings();
settings.interfaceType = InterfaceType.Lan;
settings.identifier = '00:11:62:00:00:00';
var printer = new StarPrinter(settings);
try {
// Connect to the printer.
await printer.open();
// Get printer status.
var status = await printer.getStatus();
console.log(status);
}
catch(error) {
// Error.
console.log(error);
}
finally {
// Disconnect from the printer and dispose object.
await printer.close();
await printer.dispose();
}
}
printer: StarPrinter;
async monitor(): Promise<void> {
// Specify your printer connection settings.
var settings = new StarConnectionSettings();
settings.interfaceType = InterfaceType.Lan;
settings.identifier = '00:11:62:00:00:00';
printer = new StarPrinter(settings);
// Callback for printer state changed.
printer.printerDelegate.onReady = () => {
console.log(`Printer: Ready`);
}
printer.drawerDelegate.onOpenCloseSignalSwitched = (openCloseSignal) => {
console.log(`Drawer: Open Close Signal Switched: ${String(openCloseSignal)}`);
}
printer.inputDeviceDelegate.onDataReceived = (data) => {
console.log(`Input Device: DataReceived ${String(data)}`);
}
printer.displayDelegate.onConnected = () => {
console.log(`Display: Connected`);
}
// ...
// Please refer to document for other callback.
try {
// Connect to the printer.
await printer.open();
}
catch(error) {
// Error.
console.log(error);
}
}
Copyright 2021 Star Micronics Co., Ltd. All rights reserved.