@flux-control/modbus-schema
    Preparing search index...

    Interface RegisterMeta

    Generic, device-agnostic register metadata used by the engine's description annotations. Extend this interface to add device-specific fields; any extra keys not in RegisterMeta are rendered automatically in the schema description (e.g. code: "00-41" becomes a "Code: 00-41" line).

    interface RegisterMeta {
        default?: string;
        description?: string;
        name: string;
        range?: string;
        unit: string;
    }
    Index
    default?: string
    description?: string
    name: string
    range?: string
    unit: string