Merge pull request #362 from mrv777/ui-mac-address

fix: Show mac address on log page #361
This commit is contained in:
WantClue 2024-10-03 14:40:30 +02:00 committed by GitHub
commit c41c8fcfc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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,