2018-06-22 10:50:25 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2018-06-23 22:08:24 +02:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2018-06-22 10:50:25 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2018-06-23 22:08:24 +02:00
|
|
|
|
|
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
|
|
import { MatExpansionModule } from '@angular/material/expansion';
|
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
|
2018-06-22 15:41:48 +02:00
|
|
|
import { MqttclientService } from './mqttclient.service'
|
2018-06-22 10:50:25 +02:00
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
2018-06-22 14:30:29 +02:00
|
|
|
import { LedindicatorComponent } from './ledindicator/ledindicator.component';
|
2018-06-22 17:20:43 +02:00
|
|
|
import { OnOffButtonComponent } from './on-off-button/on-off-button.component';
|
|
|
|
import { LedButtonGroupComponent } from './led-button-group/led-button-group.component';
|
2018-06-22 17:37:22 +02:00
|
|
|
import { NumberFieldComponent } from './number-field/number-field.component';
|
2018-06-23 18:43:25 +02:00
|
|
|
import { LedButtonGroup2Component } from './led-button-group2/led-button-group2.component';
|
2018-06-22 10:50:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2018-06-22 14:30:29 +02:00
|
|
|
AppComponent,
|
2018-06-22 17:20:43 +02:00
|
|
|
LedindicatorComponent,
|
|
|
|
OnOffButtonComponent,
|
2018-06-22 17:37:22 +02:00
|
|
|
LedButtonGroupComponent,
|
2018-06-23 18:43:25 +02:00
|
|
|
NumberFieldComponent,
|
|
|
|
LedButtonGroup2Component
|
2018-06-22 10:50:25 +02:00
|
|
|
],
|
|
|
|
imports: [
|
2018-06-23 22:08:24 +02:00
|
|
|
BrowserModule,
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
MatTabsModule,
|
|
|
|
MatExpansionModule,
|
|
|
|
MatButtonModule
|
2018-06-22 10:50:25 +02:00
|
|
|
],
|
2018-06-22 15:41:48 +02:00
|
|
|
providers: [
|
|
|
|
MqttclientService
|
|
|
|
],
|
2018-06-22 10:50:25 +02:00
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|