homefront/src/app/battery/battery.component.html
2018-11-14 22:40:11 -05:00

9 lines
432 B
HTML

<h1>BATTERY LEVEL: <span class="text-muted">{{batteryService.charging == null ? 'UNKNOWN' : batteryService.average}}</span></h1>
<mat-card>
<h3>EMULATOR: <span class="text-muted">75%</span></h3>
<div>
<mat-icon style="font-size: 128px; height:128px; width:128px">{{batteryService.icon}}</mat-icon>
<i class="wi wi-fw wi-thermometer-exterior"></i> {{tempHist[tempHist.length - 1]}} °C
</div>
</mat-card>