Documentation
    Preparing search index...

    Variable glacierSetTemperatureSchemaConst

    glacierSetTemperatureSchema: ZodObject<
        extendShape<
            {
                id: ZodNumber;
                moduleType: ZodLiteral<1>;
                sn: ZodType<`BX11${string}`, ZodTypeDef, `BX11${string}`>;
                version: ZodLiteral<"1.0">;
            },
            {
                operateType: ZodLiteral<"temp">;
                params: ZodObject<
                    { tmpL: ZodNumber; tmpM: ZodNumber; tmpR: ZodNumber },
                    "strip",
                    ZodTypeAny,
                    { tmpL: number; tmpM: number; tmpR: number },
                    { tmpL: number; tmpM: number; tmpR: number },
                >;
            },
        >,
        "strip",
        ZodTypeAny,
        {
            id: number;
            moduleType: 1;
            operateType: "temp";
            params: { tmpL: number; tmpM: number; tmpR: number };
            sn: `BX11${string}`;
            version: "1.0";
        },
        {
            id: number;
            moduleType: 1;
            operateType: "temp";
            params: { tmpL: number; tmpM: number; tmpR: number };
            sn: `BX11${string}`;
            version: "1.0";
        },
    > = ...

    Set temperature(tmpR indicates the temperature of the right side of the refrigerator, tmpL indicates the temperature of the left side, and tmpM indicates the temperature setting after the middle partition is removed. The difference between tmpR and tmpL cannot exceed 25°C.)

     {
    "id":123456789,
    "version":"1.0",
    "sn":"BX11ZCB4EF2E0002",
    "moduleType":1,
    "operateType":"temp",
    "params": {
    "tmpR":-19,
    "tmpL":0,
    "tmpM":0
    }
    }