Analog sensor airquality sensor on grove pi at raspberry pi

HI TEAM,
I have coonected pi hat for raspberry pi with airquality analog sensor port A0 so i am using this program for it.i installed all packages but we can not get any output

#!/usr/bin/env python

-- coding: utf-8 --

The MIT License (MIT)

Grove Base Hat for the Raspberry Pi, used to connect grove sensors.

Copyright © 2018 Seeed Technology Co.,Ltd.

‘’’
This is the code for
- Grove - Air Quality Sensor <https://www.seeedstudio.com/Grove-Air-quality-sensor-v1.3-p-2439.html)>_

Examples:

.. code-block:: python

    import time
    from grove.grove_air_quality_sensor_v1_3 import GroveAirQualitySensor

    # connect to alalog pin 2(slot A2)
    PIN = 2

    sensor = GroveAirQualitySensor(pin)

    print('Detecting ...') 
    while True:
        value = sensor.value        
        if value > 100:
            print("{}, High Pollution.".format(value))
        else:
            print("{}, Air Quality OK.".format(value))
        time.sleep(.1)

‘’’
import time, sys
from grove.adc import ADC

all = [“GroveAirQualitySensor”]

class GroveAirQualitySensor(object):
‘’’
Grove Air Quality Sensor class

Args:
    pin(int): number of analog pin/channel the sensor connected.
'''
def __init__(self, channel):
    self.channel = channel
    self.adc = ADC()

@property
def value(self):
    '''
    Get the air quality strength value, badest value is 100.0%.

    Returns:
        (int): ratio, 0(0.0%) - 1000(100.0%)
    '''
    return self.adc.read(self.channel)

Grove = GroveAirQualitySensor

def main():
from grove.helper import SlotHelper
sh = SlotHelper(SlotHelper.ADC)
pin = sh.argv2pin()

sensor = GroveAirQualitySensor(pin)

print('Detecting ...') 
while True:
    value = sensor.value        
    if value > 100:
        print("{}, High Pollution.".format(value))
    else:
        print("{}, Air Quality OK.".format(value))
    time.sleep(.1)

if name == ‘main’:
main()

output:
DETECTING…
Check whether I2C enabled and Grove Base Hat RPi or Grove Base Hat RPi Zero inserted
so how can we resolve this? please help me

Hi mohana_rao_chakka!
We recommend you to connect the sensor on D5, D16 or other D part connector.
If you connect it on D5, you have to change the PIN from 2 to 5 in the code:

import time
    from grove.grove_air_quality_sensor_v1_3 import GroveAirQualitySensor

    # connect to alalog pin 2(slot A2)
    # PIN = 2
    PIN = 5

    sensor = GroveAirQualitySensor(pin)

    print('Detecting ...') 
    while True:
        value = sensor.value        
        if value > 100:
            print("{}, High Pollution.".format(value))
        else:
            print("{}, Air Quality OK.".format(value))
        time.sleep(.1)

Have a nice day.