Signal K
    Preparing search index...

    Interface ChargerQualities

    Common charger qualities

    interface ChargerQualities {
        chargerRole?: CommonValueFields & {
            value?: "standalone" | "master" | "slave" | "standby";
            [k: string]: unknown;
        };
        chargingAlgorithm?: CommonValueFields & {
            value?: | "trickle"
            | "two stage"
            | "three stage"
            | "four stage"
            | "constant current"
            | "constant voltage"
            | "custom profile";
            [k: string]: unknown;
        };
        chargingMode?: CommonValueFields & {
            value?: | "other"
            | "bulk"
            | "acceptance"
            | "overcharge"
            | "float"
            | "equalize"
            | "unknown";
            [k: string]: unknown;
        };
        setpointCurrent?: NumberValue;
        setpointVoltage?: NumberValue;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    chargerRole?: CommonValueFields & {
        value?: "standalone" | "master" | "slave" | "standby";
        [k: string]: unknown;
    }

    How is charging source configured? Standalone, or in sync with another charger?

    chargingAlgorithm?: CommonValueFields & {
        value?:
            | "trickle"
            | "two stage"
            | "three stage"
            | "four stage"
            | "constant current"
            | "constant voltage"
            | "custom profile";
        [k: string]: unknown;
    }

    Algorithm being used by the charger

    chargingMode?: CommonValueFields & {
        value?:
            | "other"
            | "bulk"
            | "acceptance"
            | "overcharge"
            | "float"
            | "equalize"
            | "unknown";
        [k: string]: unknown;
    }

    Charging mode i.e. float, overcharge, etc.

    setpointCurrent?: NumberValue
    setpointVoltage?: NumberValue