0.1.0 • Published 7 years ago

@manekinekko/angular-web-bluetooth-starter v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

Angular Web Bluetooth Starter

image

Description

This starter uses the Angular Bluetooth module.

1) import the WebBluetoothModule module

import { NgModule } from '@angular/core';
import { WebBluetoothModule } from '@manekinekko/angular-web-bluetooth';

@NgModule({
  imports: [
    //...,
    WebBluetoothModule.forRoot()
  ],
  //...
})
export class AppModule { }

2) use it in your service

See the battery-level.service file.