Skip to content

Pulse Pressure

The Pulse Pressure value is sent as part of the final results.

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

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

const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
    const results = vitalSignsResults.results as VitalSigns;
    const pulsePressure = results.pulsePressure as PulsePressureSign;           
    if (pulsePressure?.value != null) {
        console.log(`Pulse Pressure: ${pulsePressure.value}`);
    }
}, []);

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

For a list of supported indicators and their required measurement durations, see the Indicators Technical Information page.