From: Sandy Macdonald Date: Tue, 11 Jun 2019 10:52:33 +0000 (+0100) Subject: Changing references to MICS6812 to MICS6814 X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/commitdiff_plain/dd7489f8b307d02b50b12cfd604b6935ec7a8646 Changing references to MICS6812 to MICS6814 --- diff --git a/library/enviroplus/gas.py b/library/enviroplus/gas.py index e5fbdd9..ee1ad80 100644 --- a/library/enviroplus/gas.py +++ b/library/enviroplus/gas.py @@ -1,17 +1,17 @@ -"""Read the MICS6812 via an ads1015 ADC""" +"""Read the MICS6814 via an ads1015 ADC""" import atexit import ads1015 import RPi.GPIO as GPIO -MICS6812_HEATER_PIN = 24 +MICS6814_HEATER_PIN = 24 ads1015.I2C_ADDRESS_DEFAULT = ads1015.I2C_ADDRESS_ALTERNATE _is_setup = False -class Mics6812Reading(object): +class Mics6814Reading(object): __slots__ = 'oxidising', 'reducing', 'nh3' def __init__(self, ox, red, nh3): @@ -41,13 +41,13 @@ def setup(): GPIO.setwarnings(False) GPIO.setmode(GPIO.BCM) - GPIO.setup(MICS6812_HEATER_PIN, GPIO.OUT) - GPIO.output(MICS6812_HEATER_PIN, 1) + GPIO.setup(MICS6814_HEATER_PIN, GPIO.OUT) + GPIO.output(MICS6814_HEATER_PIN, 1) atexit.register(cleanup) def cleanup(): - GPIO.output(MICS6812_HEATER_PIN, 0) + GPIO.output(MICS6814_HEATER_PIN, 0) def read_all(): @@ -61,7 +61,7 @@ def read_all(): red = (red * 56000) / (3.3 - red) nh3 = (nh3 * 56000) / (3.3 - nh3) - return Mics6812Reading(ox, red, nh3) + return Mics6814Reading(ox, red, nh3) def read_oxidising():