mirror of
https://github.com/pe1hvh/meshcore-gui.git
synced 2026-05-08 14:24:43 +02:00
12 lines
369 B
Python
12 lines
369 B
Python
"""
|
|
Display constants for the GUI layer.
|
|
|
|
Contact type → icon/name/label mappings used by multiple panels.
|
|
"""
|
|
|
|
from typing import Dict
|
|
|
|
TYPE_ICONS: Dict[int, str] = {0: "○", 1: "📱", 2: "📡", 3: "🏠"}
|
|
TYPE_NAMES: Dict[int, str] = {0: "-", 1: "CLI", 2: "REP", 3: "ROOM"}
|
|
TYPE_LABELS: Dict[int, str] = {0: "-", 1: "Companion", 2: "Repeater", 3: "Room Server"}
|