Skip to content

Hemoglobin A1c

The Hemoglobin A1c value is sent as part of the final results.

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

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

const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
    const results = vitalSignsResults.results as VitalSigns;
    const hemoglobinA1c = results.hemoglobinA1c as HemoglobinA1cSign;
    if (hemoglobinA1c?.value != null) {
        console.log(`Hemoglobin A1c: ${hemoglobinA1c.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.