Skip to content

Blood Pressure

The Blood Pressure result includes Systolic and Diastolic values and both values are sent as part of the final results.

The application can receive the Blood Pressure result by implementing the OnFinalResults callback interface:

TypeScript
import { 
    VitalSigns,
    VitalSignsResults,
    BloodPressureSign,
    BloodPressureValue,
} from '@biosensesignal/web-sdk';

const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
    const results = vitalSignsResults.results as VitalSigns;
    const bloodPressure = results.bloodPressure as BloodPressureSign;
    if (bloodPressure?.value != null) {
        const bloodPressureValue = bloodPressure.value as BloodPressureValue;
        console.log(`Blood Pressure: ${bloodPressureValuesystolic}/${bloodPressureValue.diastolic}`);
    }
}, []);

For general information about vital signs see the Vital Signs and Health Indicators Information Document.

For additional information regarding the supported indicators see the Indicators Technical Information page.