@moshenguo/ms-data-sdk - v0.1.13
    Preparing search index...

    Interface MyAutomaticHRMonitoring

    Automatic heart rate monitoring configuration

    Defines the time periods, cycles, and types for automatic heart rate monitoring in a week.

    interface MyAutomaticHRMonitoring {
        endHour: number;
        endMinute: number;
        open: number;
        startHour: number;
        startMinute: number;
        time: number;
        type: number;
        week: number;
    }
    Index

    Properties

    endHour: number

    End hour of monitoring (0-23)

    endMinute: number

    End minute of monitoring (0-59)

    open: number

    Whether monitoring is enabled

    • 0 = off
    • 1 = on
    startHour: number

    Start hour of monitoring (0-23)

    startMinute: number

    Start minute of monitoring (0-59)

    time: number

    Sampling interval in seconds

    type: number

    1 = heart rate, 2 = SpO2, 4 = HRV

    week: number

    Week configuration (bitmask)

    • 1 = Monday
    • 2 = Tuesday
    • 4 = Wednesday
    • 8 = Thursday
    • 16 = Friday
    • 32 = Saturday
    • 64 = Sunday

    Can be combined, e.g., 1 + 2 + 4 = 7 means Monday to Wednesday