Grove Multichannel gas sensor v2 calibration

inline float calcVol(uint32_t adc) {
    return (adc * 3.3) / GM_RESOLUTION;

Q1. Is this the Vs voltage?
Q2. What is adc? It is not defined anywhere.

Q3. If the output voltage is Vs, then,

Rs = (Vc-Vs)/Vs, where Vc = 3.3 V. Is this correct? (is it like in MQ9 sensor?)

Hi, im having some similar issue…

about Q2… abc is defined as a param of calcVol function. inline float calcVol(**uint32_t adc**) {

did you resolve the high values on measurements?