0.0.1 • Published 7 months ago

@sg-home/termostat v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Header Module

Termostat Component is a heating management UI component for smart home projects in Angular.

Installation

To install Termostat Component:

$ npm set registry https://registry.npmjs.org/
$ npm install @sg-home/termostat -s

Just import it to your project of @NgModule import section.

@NgModule({
 imports: [CommonModule, TesmostatModule],
})
export class AppModule {
}

app.component.html

<sg-home-termostat
 [minTemp]="15"
 [maxTemp]="75"
 [currentTemp]="24" 
>
</sg-home-termostat>