fix: Show mac address on log page

This commit is contained in:
mrv777 2024-09-28 08:30:46 -05:00
parent 18671b2ef2
commit 8ff99cabd0
3 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,10 @@
<td>WiFi Status:</td>
<td>{{info.wifiStatus}}</td>
</tr>
<tr>
<td>MAC Address:</td>
<td>{{info.macAddr}}</td>
</tr>
<tr>
<td>Free Heap Memory:</td>
<td>{{info.freeHeap}}</td>

View File

@ -33,6 +33,7 @@ export class SystemService {
coreVoltage: 1200,
coreVoltageActual: 1200,
hostname: "Bitaxe",
macAddr: "2C:54:91:88:C9:E3",
ssid: "default",
wifiPass: "password",
wifiStatus: "Connected!",

View File

@ -15,6 +15,7 @@ export interface ISystemInfo {
freeHeap: number,
coreVoltage: number,
hostname: string,
macAddr: string,
ssid: string,
wifiStatus: string,
sharesAccepted: number,