show free caps in web

This commit is contained in:
proddy
2024-07-25 12:51:51 +02:00
parent 26e290a4ef
commit 1eb903d228

View File

@@ -2,7 +2,7 @@ import type { busConnectionStatus } from 'app/main/types';
import type { NetworkConnectionStatus } from './network'; import type { NetworkConnectionStatus } from './network';
export interface ESPSystemStatus { export interface HardwareStatus {
emsesp_version: string; emsesp_version: string;
esp_platform: string; esp_platform: string;
max_alloc_heap: number; max_alloc_heap: number;
@@ -24,6 +24,7 @@ export interface ESPSystemStatus {
psram_size?: number; psram_size?: number;
free_psram?: number; free_psram?: number;
has_loader: boolean; has_loader: boolean;
free_caps: number;
model: string; model: string;
} }