iHealth device sdk
Installation
Using npm
npm install --save @ihealth/ihealthlibrary-react-native
Using yarn
yarn add @ihealth/ihealthlibrary-react-native
Usage
Authentication
Download license file
- Sign up iHealth developer webside. Please sign up here
- Press "Add New App" button, fill in your information of your app. We will get email and active the license for your app.
- Download license file, as shown below.
Integrate license file
For iOS
As shown below, Add your license file to your iOS project.
For Android
As show below, Add your license file to your asserts folder.
Using license file
import { iHealthDeviceManagerModule } from '@ihealth/ihealthlibrary-react-native';
// your license file
const filename = 'license.pem';
iHealthDeviceManagerModule.sdkAuthWithLicense(filename);
Troubleshooting
For Android
- Check settings.gradle file in your android project and node_modules, make sure input the correct module path.
include ':ihealthlibrary-react-native'
project(':ihealthlibrary-react-native').projectDir = new File(rootProject.projectDir,'../node_modules/@ihealth/ihealthlibrary-react-native/android')
- Check build.gradle file in your android project, make sure the ihealth module is integrated
compile project(':@ihealth_ihealthlibrary-react-native')
- Import iHealth module in your MainActivity.java
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new iHealthDeviceManagerPackage()
);
}
- Location permission(in AndroidManifest.xml)
<!-- Need ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission in Android API 23+ -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
For iOS
- Open your iOS project, add node_modules/@ihealth/ihealthlibrary-react-native/ios/ReactNativeIOSLibrary.xcodeproj to libraries
- Under 'Build Phases' -- 'Link Binary With Libraries', add libReactNativeIOSLibrary.a
Example
iHealth SDK module is based on DeviceEventEmitter, So call add listener while the component is loaded, and call remove listener while the component is unloaded, As show as below. If you want more detail information, Please the example code.
componentDidMount() {
iHealthAPI.addListener();
}
componentWillUnmount() {
iHealthAPI.removeListener();
}
For bluetooth LE or regular bluetooth device
search device
import { iHealthDeviceManagerModule } from '@ihealth/ihealthlibrary-react-native';
const type = 'BP5'; // AM3S, AM4, BG5, BG5S, BP3L, BP5, BP5S, BP7S, HS2, HS4S, PO3,HS2S,BG1S
iHealthDeviceManagerModule.startDiscovery(type);
connect device
import { iHealthDeviceManagerModule } from '@ihealth/ihealthlibrary-react-native';
const mac = 'xxxxxxxxxxxxxx';
const type = 'BP5'; // AM3S, AM4, BG5, BG5S, BP3L, BP5, BP5S, BP7S, HS2, HS4S, PO3,HS2S,BG1S
iHealthDeviceManagerModule.connectDevice(mac, type);
device workflow
AM3S workflow AM4 workflow AM5 workflow BG1 workflow BG5 workflow BG5S workflow BP3L workflow BP5 workflow BP5S workflow BP7S workflow HS2 workflow HS4S workflow HS6 workflow PO3 workflow HS2S workflow BG1S workflow