| Author: | manekinekko |
|---|---|
| Official Page: | Go to website |
| Publish Date: | December 20, 2017 |
| License: | MIT |
Description:
This is a web bluetooth module for Angular 2+.
Installation:
# Yarn $ yarn add @manekinekko/angular-web-bluetooth # NPM $ npm install @manekinekko/angular-web-bluetooth --save
Usage:
import { NgModule } from '@angular/core';
import { WebBluetoothModule } from '@manekinekko/angular-web-bluetooth';
@NgModule({
imports: [
WebBluetoothModule.forRoot({
enableTracing: true/false // enable logs
})
],
//...
})
export class AppModule { }