Functions

The following functions are available globally.

  • Enum value for the device type to assist with switch statements

    Declaration

    Objective-C

    typedef NS_ENUM(NSUInteger, VLDPeripheralType) {
        
        /** Invalid device type */
        VLDPeripheralTypeNone,
        
        /** Thermometer device type */
        VLDPeripheralTypeThermometer,
        
        /** Blood Pressure Monitor device type */
        VLDPeripheralTypeBloodPressure,
        
        /** Heart Rate Monitor device type */
        VLDPeripheralTypeHeartRate,
        
        /** Glucose Meter device type */
        VLDPeripheralTypeGlucoseMeter,
        
        /** Weight scale device type */
        VLDPeripheralTypeWeightScale,
        
        /** Pulse Oximeter device type */
        VLDPeripheralTypePulseOximeter
    }