mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-03-17 21:32:52 +01:00
Merge pull request #362 from mrv777/ui-mac-address
fix: Show mac address on log page #361
This commit is contained in:
commit
c41c8fcfc4
@ -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>
|
||||
|
@ -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!",
|
||||
|
@ -15,6 +15,7 @@ export interface ISystemInfo {
|
||||
freeHeap: number,
|
||||
coreVoltage: number,
|
||||
hostname: string,
|
||||
macAddr: string,
|
||||
ssid: string,
|
||||
wifiStatus: string,
|
||||
sharesAccepted: number,
|
||||
|
Loading…
x
Reference in New Issue
Block a user