Skip to content

RMSSD

The RMSSD value is sent as part of the final results.

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

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

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

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.