pub unsafe extern "C" fn adc_oneshot_get_calibrated_result(
    handle: adc_oneshot_unit_handle_t,
    cali_handle: adc_cali_handle_t,
    chan: adc_channel_t,
    cali_result: *mut c_int
) -> esp_err_t
Expand description

@brief Convenience function to get ADC calibrated result

This is an all-in-one function which does:

  • oneshot read ADC raw result
  • calibrate the raw result and convert it into calibrated result (in mV)

@param[in] handle ADC oneshot handle, you should call adc_oneshot_new_unit() to get this handle @param[in] cali_handle ADC calibration handle, you should call adc_cali_create_scheme_x() in adc_cali_scheme.h to create a handle @param[in] chan ADC channel @param[out] cali_result Calibrated ADC result (in mV)

@return - ESP_OK Other return errors from adc_oneshot_read() and adc_cali_raw_to_voltage()