Signal K
    Preparing search index...

    Current radar state. Contains status and all current control values.

    {
    "id": "1",
    "timestamp": "2025-01-15T10:30:00Z",
    "status": "transmit",
    "controls": {
    "power": "transmit",
    "range": 5556,
    "gain": {"mode": "auto", "value": 65}
    }
    }
    interface RadarState {
        controls: Record<string, any>;
        id: string;
        status: RadarStatus;
        timestamp: string;
        disabledControls?: { controlId: string; reason: string }[];
    }
    Index

    Properties

    controls: Record<string, any>

    Current control values keyed by control ID

    id: string

    Radar ID

    status: RadarStatus

    Current operational status

    timestamp: string

    ISO 8601 timestamp of when state was captured

    disabledControls?: { controlId: string; reason: string }[]

    Controls that are currently disabled and why