Display relay consumption history

This commit is contained in:
2024-09-26 22:51:43 +02:00
parent 903f1fa8ce
commit 7895b9eca8
10 changed files with 101 additions and 12 deletions

@@ -35,6 +35,18 @@ export class EnergyApi {
return data.data.consumption;
}
/**
* Get relays consumption
*/
static async RelaysConsumption(): Promise<number> {
return (
await APIClient.exec({
method: "GET",
uri: "/energy/relays_consumption",
})
).data.consumption;
}
/**
* Get relays consumption history
*/

@@ -83,7 +83,7 @@ export class RelayApi {
return (
await APIClient.exec({
method: "GET",
uri: `/relay/${relay.id}/state`,
uri: `/relay/${relay.id}/status`,
})
).data;
}