From 1eb903d22868cd35e59c84cea451259307d8297a Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 25 Jul 2024 12:51:51 +0200 Subject: [PATCH] show free caps in web --- interface/src/types/system.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/types/system.ts b/interface/src/types/system.ts index 5dfca23c3..b1f2173db 100644 --- a/interface/src/types/system.ts +++ b/interface/src/types/system.ts @@ -2,7 +2,7 @@ import type { busConnectionStatus } from 'app/main/types'; import type { NetworkConnectionStatus } from './network'; -export interface ESPSystemStatus { +export interface HardwareStatus { emsesp_version: string; esp_platform: string; max_alloc_heap: number; @@ -24,6 +24,7 @@ export interface ESPSystemStatus { psram_size?: number; free_psram?: number; has_loader: boolean; + free_caps: number; model: string; }