Skip to main content

Library for reading data from the Sensirion SGP30

Project description

SGP30

Library to read eCO2 and TVOC from the SGP30 sensor. Based on the smbus2 i2c library for ease of use.

It should be compatible with both Python 2 and 3

Quick usage-example:

from smbus2 import SMBusWrapper
from sgp30 import SGP30
import time

with SMBusWrapper(1) as bus:
    sgp = SGP30(bus, baseline_filename=BASELINE_FILENAME+".TESTING")
    print("resetting all i2c devices")
    sgp.i2c_general_call()
    print(sgp.read_features())
    print(sgp.read_serial())
    sgp.init_sgp()
    for i in range(300):
		print(sgp.read_measurements())
		time.sleep(0.1)
	sgp.store_baseline()
    bus.close()

Current design considerations:

The class strives to to be light-weight and portable. It is currently a bit to tightly bound to the smbus2 class. In most cases I try to ease of readability rather than purity or speed.

Features that are known to be missing (listing in rough order of importance):

  • The handing of baseline values is not that great, it should probably be up to the end user to save and restore them as needed.
  • Write doc-strings for all or at least most methods.
  • reading raw-values.
  • A more "driver like" class that takes care of all chip identification, polling at regular intervals, restoring baseline and so on.
  • Run real hardware tests under Python3

Hardware notices:

If you have the Adafruit board with built in level shifters and voltage regulator it is should work if you just plug in SDA to pin 3, SCL to pin 5, VCC to pin 17 and GND to pin 20. You should then be able to find the SGP30 an address 0x58 using i2cdetect -y 1. If you get an error message you probably need to enable i2c in the kernel using raspi-config and reboot

Feel free to contact me with bugs, questions or issues.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PySGP30-0.1.8.tar.gz (5.3 kB view details)

Uploaded Source

File details

Details for the file PySGP30-0.1.8.tar.gz.

File metadata

  • Download URL: PySGP30-0.1.8.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for PySGP30-0.1.8.tar.gz
Algorithm Hash digest
SHA256 239439e96f9055965bbd26fc3e836c19024459205f3f29a6fa5088e2aeec47df
MD5 80ba00c4ac714964f81c90fe831df911
BLAKE2b-256 68974a8d01a65b282f2aca1cc7ae12d43ebf1504bcf217ca2134f64b7593e2af

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page