Appearance
Wellness Level
The Wellness Level value is sent as part of the final results. It is calculated based on several other indicators and can still be determined even if only a subset of them is available. For optimal results, it is recommended to ensure that the measurement duration is sufficient and that as all relevant indicator values are calculated.
The indicators used in the calculation are:
- Pulse Rate
- Blood Pressure
- Heart Rate Variability (RRi)
The application can receive the Wellness Level result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
WellnessLevelSign,
WellnessLevel,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const wellnessLevel = results.wellnessLevel as WellnessLevelSign;
if (wellnessLevel?.value != null) {
const level = wellnessLevel.value as WellnessLevel;
console.log(`Wellness Level: ${level}}`);
}
}, []);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.