Appearance
Vital Signs
The Binah.ai SDK measures a comprehensive range of vital signs and physiological indicators. For the sake of brevity, we refer to the set of physical indicators calculated by the SDK as "vital signs". The vital sign results provided at the end of the measurement include both the vital sign values and the vital sign confidence levels.
Information on the supported vital signs can be found on the Binah.ai Vital Signs and Health Indicators Information page.
Note
In order to receive a result for a specific vital sign, the vital sign must be enabled. Information on enabled vital signs can be found on the Enabled Vital Signs page.
The vital sign values measured by the SDK are reported at two stages of the measurement:
- Instantaneous results - available during the measurement.
- Final results - available upon successful completion of a measurement.
Instantaneous Vital Signs Values
Instantaneous vital sign values are provided as soon as they become available. To receive instantaneous vital sign results, the application can use the useVitalsSigns
hook:
TypeScript
import {
VitalSignTypes,
useVitalSigns
} from 'binah-react-native-sdk';
const vitalSign = useVitalSigns();
React.useEffect(() => {
// Handle vital sign result
}, [vitalSign]);
Instantaneous vital sign values can be received for the following vital signs during the measurement:
Final Results
Final vital sign results are calculated at the end of a measurement.
The application can receive the final vital signs results by using the useFinalResults
hook:
TypeScript
import {
VitalSignTypes,
useFinalResults
} from 'binah-react-native-sdk';
const finalResults = useFinalResults();
React.useEffect(() => {
// Handle the final results of the measurements
}, [finalResults]);