Skip to content

Commit

Permalink
v8.8.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Sep 13, 2020
1 parent aac20e7 commit b20ec5e
Show file tree
Hide file tree
Showing 18 changed files with 8,683 additions and 6,868 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 8.8.2 (Unreleased)
## 8.8.2 (2020-09-13)

### Bugfixes

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Mycodo

Environmental Regulation System

Latest version: 8.8.1
Latest version: 8.8.2

Mycodo is open source software for the Raspberry Pi that couples inputs and outputs in interesting ways to sense and manipulate the environment.

Expand Down
20 changes: 17 additions & 3 deletions docs/Supported-Inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,20 @@ This Input executes the bash command "nc -zv [host] [port]" to determine if the
- Datasheet URLs: [Link 1](https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL343.pdf), [Link 2](https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL344.pdf), [Link 3](https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL345.pdf), [Link 4](https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL346.pdf)
- Product URLs: [Link 1](https://www.analog.com/en/products/adxl343.html), [Link 2](https://www.analog.com/en/products/adxl344.html), [Link 3](https://www.analog.com/en/products/adxl345.html), [Link 4](https://www.analog.com/en/products/adxl346.html)

### AnyLeaf: AnyLeaf ORP

- Measurements: Oxidation Reduction Potential
- Dependencies: [python3-numpy](https://packages.debian.org/buster/python3-numpy), [python3-scipy](https://packages.debian.org/buster/python3-scipy), [anyleaf](https://pypi.org/project/anyleaf), [Adafruit_Extended_Bus](https://pypi.org/project/Adafruit_Extended_Bus)
- Manufacturer URL: [Link](https://anyleaf.org/ph-module)
- Datasheet URL: [Link](https://anyleaf.org/static/ph-module-datasheet.pdf)

### AnyLeaf: AnyLeaf pH

- Measurements: Ion concentration
- Dependencies: [python3-numpy](https://packages.debian.org/buster/python3-numpy), [python3-scipy](https://packages.debian.org/buster/python3-scipy), [anyleaf](https://pypi.org/project/anyleaf), [Adafruit_Extended_Bus](https://pypi.org/project/Adafruit_Extended_Bus)
- Manufacturer URL: [Link](https://anyleaf.org/ph-module)
- Datasheet URL: [Link](https://anyleaf.org/static/ph-module-datasheet.pdf)

### Atlas Scientific: Atlas Color

- Measurements: RGB, CIE, LUX, Proximity
Expand Down Expand Up @@ -392,9 +406,9 @@ Warning: Counterfeit DS18B20 sensors are common and can cause a host of issues.

- Measurements: Millimeter (Time-of-Flight Distance)
- Dependencies: [smbus2](https://pypi.org/project/smbus2), [vl53l1x](https://pypi.org/project/vl53l1x)
- Manufacturer URL: [Link](https://www.st.com/en/imaging-and-photonics-solutions/vl53l0x.html)
- Datasheet URL: [Link](https://www.st.com/resource/en/datasheet/vl53l0x.pdf)
- Product URLs: [Link 1](https://www.adafruit.com/product/3317), [Link 2](https://www.pololu.com/product/2490)
- Manufacturer URL: [Link](https://www.st.com/en/imaging-and-photonics-solutions/vl53l1x.html)
- Datasheet URL: [Link](https://www.st.com/resource/en/datasheet/vl53l1x.pdf)
- Product URLs: [Link 1](https://www.pololu.com/product/3415), [Link 2](https://www.sparkfun.com/products/14722)

Notes when setting a custom timing budget: A higher timing budget results in greater measurement accuracy, but also a higher power consumption. The inter measurement period must be >= the timing budget, otherwise it will be double the expected value.

Expand Down
9 changes: 9 additions & 0 deletions docs/Supported-Outputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ An output to publish "on" or "off" to an MQTT server.

The specified GPIO pin will be set HIGH (3.3 volts) or LOW (0 volts) when turned on or off, depending on the On State option.

### On/Off PCF8574 (8 Channels)

- Dependencies: [smbus2](https://pypi.org/project/smbus2)
- Manufacturer URL: [Link](https://www.ti.com/product/PCF8574)
- Datasheet URL: [Link](https://www.ti.com/lit/ds/symlink/pcf8574.pdf)
- Product URL: [Link](https://www.amazon.com/gp/product/B07JGSNWFF)

Controls the 8 channels of the PCF8574.

### On/Off Python Code


Expand Down
24 changes: 12 additions & 12 deletions docs/mycodo-api.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mycodo/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
sys.path.append(os.path.abspath(os.path.dirname(__file__)))
from config_translations import TRANSLATIONS

MYCODO_VERSION = '8.8.1'
MYCODO_VERSION = '8.8.2'
ALEMBIC_VERSION = '0e150fb8020b'

# FORCE_UPGRADE_MASTER
Expand Down
24 changes: 12 additions & 12 deletions mycodo/mycodo_flask/static/manual/mycodo-api.html

Large diffs are not rendered by default.

Loading

0 comments on commit b20ec5e

Please sign in to comment.