Jins Meme
Implementation of the JINS MEME SDK
https://github.com/BlyncSync/cordova-plugin-jins-meme
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-jins-meme $ npm install @ionic-native/jins-meme $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-jins-meme $ npm install @ionic-native/jins-meme
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { JinsMeme } from '@ionic-native/jins-meme/ngx';
constructor(private jinsMeme: JinsMeme) { }
...
this.jinsMeme.setAppClientID(appClientId: string, clientSecret: string).then( // Bluetooth should be enabled and the JINS MEME powered on (blinking blue light) this.jinsMeme.startScan().subscribe((meme_addr) => { this.jinsMeme.connect(meme_addr).subscribe((connectResult) => { this.memeService.startDataReport().subscribe((dataReport) => { console.log(dataReport); }); }); });.catch(console.log('jinsMeme.setAppClientID authentication error'));