Question
CO Gas Concentration Reading with the board P-Nucleo-IKA02A1.
Hello,
I'm trying to tuning CO Gas reading value with the board P-Nucleo-IKA02A1.
By the P-Nucleo-IKA02A1 BSP, Get_Gas_concentration function is belows..
float Get_Gas_concentration(float gain, float sens){
return ((float)Get_ADC_value(ANALOG_GAS_VALUE_PIN)-Get_ADC_value(ANALOG_REF_VOLT_VALUE_PIN))*805664/gain/sens; }
What's the meaning of the constant, 805664, of above source code?
