Skip to content

Home Assistant Integration for Qingping Pro Air Quality Monitor [CGS1]

Notifications You must be signed in to change notification settings

mash2k3/qingping_cgs1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Qingping Pro AQM [CGS1/CGS2] integration for Home Assistant

Qingping CGSx Icon

hacs_badge Download Analytics

This custom component integrates the Qingping Pro Air Quality Monitor [CGS1/CGS2] with Home Assistant, allowing you to monitor various environmental parameters in realtime.


Requirements

  • MQTT integration installed and configured.
  • Enable MQTT on Qingping AQM devices using instructions below.
  • HACS installed.

Features

  • Automatic discovery of Qingping CGS1/CGS2 devices
  • Real-time updates of air quality data
  • Configurable temperature and humidity offsets
  • Adjustable update interval
  • Automatic unit conversion for temperature
  • Device status monitoring
  • Battery level monitoring

Installation

Note

Before you begin you must enable mqtt on the device. Follow the instructions provided by GreyEarl here.
Client ID, Up Topic and Down Topic must be filled out extacly as shown in example.
After that is complete continue with HACS installation.

  1. Use HACS to install this integration:

    Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.
  2. Download the Qingping Pro AQM repository
  3. Restart Home Assistant
  4. Go to "Configuration" -> "Integrations" and click "+" to add a new integration
  5. Search for "Qingping Pro AQM" and follow the configuration steps

Configuration

Device Discovery The integration supports automatic discovery of Qingping CGS1/CGS2 devices.
If your device is not discovered automatically, you can add it manually by providing the MAC address.
⚠️ Do not include : in your MAC address. example: 532D38701E1F










How it Works

Device Discovery
  1. Device Discovery: The integration uses MQTT to discover Qingping CGS1/CGS2 devices on your network. It listens for messages on the MQTT topic qingping/# to identify available devices.

  2. Configuration: Once a device is discovered, you can add it to your Home Assistant instance through the UI. The integration will prompt you to enter a name and model for the device and confirm its MAC address.

  3. Sensors: The integration creates several sensors for each Qingping CGS1/CGS2 device:

    • Temperature
    • Humidity
    • CO2 level
    • PM2.5
    • PM10
    • TVOC (ppb, ppm and mg/m³) Only on CGS1
    • eTVOC (ppb, VOC index and mg/m³) Only on CGS2
    • Noise level Only on CGS2
    • Battery level
    • Device status (online/offline)
    • Firmware version
    • Report type (12 = realtime / 17 = historic)
    • MAC address
  4. TVOC Sensor: The sensor can be set to 3 different measurement units, by default it is ppb. The component converts from ppb to get ppm and mg/m³.

    • ppm = ppb/1000
    • mg/m³ = ppb/1000 * 0.0409 * 111.1 (concentration (ppm) x 0.0409 x molecular weight)

    eTVOC Sensor: The sensor can be set to 3 different measurement units, by default it is VOC index. The component converts from voc index to get ppb and mg/m³.

    • ppb = (index * 5) + 35
    • mg/m³ = (index * 0.023) + 0.124
  5. Data Updates: The component subscribes to MQTT messages from the device. When new data is received, it updates the relevant sensors in Home Assistant.

  6. Offset Adjustments: The integration allows you to set offset values for temperature and humidity readings. These offsets are applied to the raw sensor data before it's displayed in Home Assistant.

  7. Update Interval: You can configure how often the device should report new data. This is done through a number entity that allows you to set the update interval in seconds.

  8. Configuration Publishing: The integration periodically publishes configuration messages to the device via MQTT. This ensures that the device maintains the correct reporting interval, realtime reporting and other settings.

  9. Status Monitoring: The integration tracks the device's online/offline status based on the timestamp of the last received message. If no message is received for 5 minutes, the device is considered offline.

  10. Unit Conversion: The integration automatically converts temperature readings to the unit system configured in your Home Assistant instance (Celsius or Fahrenheit).

Troubleshooting

If you encounter any issues:

  1. Check that your Qingping CGS1/CGS2 device can send data via MQTT
  2. Ensure MQTT is set up on each device as instructed
  3. Ensure that MQTT is properly set up in your Home Assistant instance
  4. Check the Home Assistant logs for any error messages related to this integration

Contributing

Contributions to this project are welcome! Please feel free to submit a Pull Request.

Support

If you have any questions or need help, please open an issue on GitHub.