mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-27 14:09:19 +00:00
* CPU and Memory Graphs * localize * Comments * Always show the graphs * Use Subscribe Mixin
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// Keep in sync with https://github.com/home-assistant/analytics.home-assistant.io/blob/dev/site/src/analytics-os-boards.ts#L6-L24
|
|
export const BOARD_NAMES: Record<string, string> = {
|
|
"odroid-n2": "Home Assistant Blue / ODROID-N2",
|
|
"odroid-xu4": "ODROID-XU4",
|
|
"odroid-c2": "ODROID-C2",
|
|
"odroid-c4": "ODROID-C4",
|
|
rpi: "Raspberry Pi",
|
|
rpi0: "Raspberry Pi Zero",
|
|
"rpi0-w": "Raspberry Pi Zero W",
|
|
rpi2: "Raspberry Pi 2",
|
|
rpi3: "Raspberry Pi 3 (32-bit)",
|
|
"rpi3-64": "Raspberry Pi 3",
|
|
rpi4: "Raspberry Pi 4 (32-bit)",
|
|
"rpi4-64": "Raspberry Pi 4",
|
|
tinker: "ASUS Tinker Board",
|
|
"khadas-vim3": "Khadas VIM3",
|
|
"generic-aarch64": "Generic AArch64",
|
|
ova: "Virtual Machine",
|
|
"generic-x86-64": "Generic x86-64",
|
|
"intel-nuc": "Intel NUC",
|
|
yellow: "Home Assistant Yellow",
|
|
};
|
|
|
|
export interface HardwareInfo {
|
|
hardware: HardwareInfoEntry[];
|
|
}
|
|
|
|
export interface HardwareInfoEntry {
|
|
board: HardwareInfoBoardInfo;
|
|
name: string;
|
|
url?: string;
|
|
}
|
|
|
|
export interface HardwareInfoBoardInfo {
|
|
manufacturer: string;
|
|
model?: string;
|
|
revision?: string;
|
|
hassio_board_id?: string;
|
|
}
|
|
|
|
export interface SystemStatusStreamMessage {
|
|
cpu_percent: number;
|
|
memory_free_mb: number;
|
|
memory_used_mb: number;
|
|
memory_used_percent: number;
|
|
timestamp: string;
|
|
}
|