You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
710B

  1. <div class="p-3"
  2. fxLayout="row" fxLayoutAlign="space-around center" fxLayoutGap="20px">
  3. <img class="map-image" src="assets/images/ground.png" fxFlex="70">
  4. <div fxLayout="column" fxLayoutGap="50px">
  5. <button [disabled]="!isConnected" mat-flat-button class="red-bg" type="button">ARM SYSTEM</button>
  6. <button [disabled]="!isConnected" mat-flat-button color="{{state5 ==='ON' ? 'primary' : 'warn' }}" (click)="toggleState1()">LIGHT {{ state5 == '' ? 'OFF' : state5}}</button>
  7. <button [disabled]="!isConnected" mat-flat-button color="{{state6 ==='ON' ? 'primary' : 'warn' }}" (click)="toggleState2()" [class.on]="state6 === 'ON'">BELL {{ state6 == '' ? 'OFF' : state6}}</button>
  8. </div>
  9. </div>