Skip to content

Remove more references to temperature property #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ the CCS811 object
Reading Sensor
--------------

To read the gas sensor and temperature simply read the attributes:
To read the gas sensor simply read the attributes:

.. code:: python

print("CO2: ", ccs.eco2, " TVOC:", ccs.tvoc, " temp:", ccs.temperature)
print("CO2: ", ccs.eco2, " TVOC:", ccs.tvoc)

Contributing
============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],

# What does your project relate to?
keywords='adafruit air quality voc eco2 temperature breakout hardware micropython circuitpython',
keywords='adafruit air quality voc eco2 breakout hardware micropython circuitpython',

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
Expand Down