Appearance
PNS Zone
The PNS Zone value is sent as part of the final results.
The application can receive the PNS Zone result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
PnsZoneSign,
PnsZone,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const pnsZone = results.pnsZone as PnsZoneSign;
if (pnsZone?.value != null) {
const pnsZoneLevel = pnsZone.value as PnsZone;
console.log(`PNS Zone: ${pnsZoneLevel}}`);
}
}, []);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.