Skip to content

Commit

Permalink
Merge pull request #362 from mrv777/ui-mac-address
Browse files Browse the repository at this point in the history
fix: Show mac address on log page #361
  • Loading branch information
WantClue authored Oct 3, 2024
2 parents 18671b2 + 8ff99ca commit c41c8fc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ <h5>Overview</h5>
<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>
Expand Down
1 change: 1 addition & 0 deletions main/http_server/axe-os/src/app/services/system.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!",
Expand Down
1 change: 1 addition & 0 deletions main/http_server/axe-os/src/models/ISystemInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface ISystemInfo {
freeHeap: number,
coreVoltage: number,
hostname: string,
macAddr: string,
ssid: string,
wifiStatus: string,
sharesAccepted: number,
Expand Down

0 comments on commit c41c8fc

Please sign in to comment.