react-native-bt-telink
v1.3.3
Published
Component implementation for Bluetooth Mesh SDK of Telink
Downloads
82
Maintainers
Readme
React Native Bluetooth Telink
Component implementation for Bluetooth Mesh SDK of Telink.
Install
For RN >= 0.60 and Android SDK >= 29
npm i --save react-native-bt-telink
For RN >= 0.60 and Android SDK < 29
npm i --save [email protected]
For RN < 0.60
npm i --save [email protected]
Android
For RN < 0.60, need files edited below:
In android/app/build.gradle
dependencies {
implementation project(':react-native-bt-telink')
}
In android/app/src/main/java/com/YourProject/MainApplication.java
import com.telink.TelinkBtPackage;
...
new TelinkBtPackage(),
In android/settings.gradle
include ':react-native-bt-telink'
project(':react-native-bt-telink').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-bt-telink/android')
iOS
For RN < 0.60, in ios/Podfile
pod 'RNBtTelink', :path => '../node_modules/react-native-bt-telink'
For RN < 0.60 and RN >= 0.60
cd ios
pod install
Usage
import React from 'react';
import { View } from 'react-native';
import meshModule from 'react-native-bt-telink';
export default class MeshModuleExample extends React.Component {
constructor(props) {
super(props);
meshModule.passthroughMode = {
silan: [
1,
7,
],
sllc: [
30848,
],
};
}
componentDidMount() {
meshModule.addListener('leScan', this.onLeScan);
meshModule.doInit();
}
onLeScan = data => console.warn(data)
render() {
return (
<View/>
);
}
}
Donate
To support my work, please consider donate.
ETH: 0xd02fa2738dcbba988904b5a9ef123f7a957dbb3e