Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ZodiusInfuser committed Nov 25, 2022
1 parent 777dc7a commit d091f75
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 32 deletions.
28 changes: 3 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,9 @@

## New firmware!

v.0.0.8 is an **alpha** release of the firmware which may contain bugs and other instabilities. Thanks for your continued feedback and bug reports - we'll get it fixed up as soon as we can :)

Key changes:

- Provisioning
- much better performance, more snappy
- no longer hangs in some setups
- empty and duplicate network names hidden
- better handling of config file writing
- Readings now synched to clock time rather than just relative to each other
- Battery voltage reported as a reading
- Poke button now works when plugged in via USB
- Boards all work properly when plugged into USB (previous had to use a battery)
- Enviro Weather 🌦️
- rain sensor trigger fixed
- improved wind speed readings at low wind speeds
- Enviro Indoor 🛋️
- basic support for VOC sensor/air quality readings added
- Enviro Grow 🪴
- auto watering / audio alert trigger support
- moisture sensor readings corrected

(and lots of other small bug fixes and improvements)

Download the alpha firmware here: https://github.com/pimoroni/enviro/releases/tag/v0.0.8
v.0.0.9 is an **alpha** release of the firmware which may contain bugs and other instabilities. Thanks for your continued feedback and bug reports - we'll get it fixed up as soon as we can :)

Download the alpha firmware here: https://github.com/pimoroni/enviro/releases/tag/v0.0.9

If you want to return to the shipping firmware you can re-flash your Enviro with v.0.0.2: https://github.com/pimoroni/enviro/releases/tag/v0.0.2

Expand Down
6 changes: 3 additions & 3 deletions documentation/boards/enviro-grow.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Enviro Grow comes with three capacitive moisture sensors to monitor up to three
|Humidity|`humidity`|percent|%|`55.42`|
|Air Pressure|`pressure`|hectopascals|hPa|`997.16`|
|Luminance|`luminance`|lux|lx|`35`|
|Moisture Sensor 1|`moisture_1`|percent|%|`17`|
|Moisture Sensor 2|`moisture_2`|percent|%|`45`|
|Moisture Sensor 3|`moisture_3`|percent|%|`76`|
|Moisture Sensor A|`moisture_a`|percent|%|`17`|
|Moisture Sensor B|`moisture_b`|percent|%|`45`|
|Moisture Sensor C|`moisture_c`|percent|%|`76`|
|Voltage|`voltage`|volts|V|`4.035`|

## On-board devices
Expand Down
3 changes: 2 additions & 1 deletion documentation/boards/enviro-weather.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Enviro Weather is a super slimline all in one board for keeping a (weather) eye
|Humidity|`humidity`|percent|%|`55.42`|
|Air Pressure|`pressure`|hectopascals|hPa|`997.16`|
|Luminance|`luminance`|lux|lx|`35`|
|Rainfall|`rain`|millimetres per hour|mm/ph|`1.674`|
|Rainfall|`rain`|millimetres|mm|`1.674`|
|Rainfall Average|`rain_per_second`|millimetres per second|mm/s|`1.674`|
|Wind Direction|`wind_direction`|angle|°|`45`|
|Wind Speed|`wind_speed`|metres per second|m/s|`0.45`|
|Voltage|`voltage`|volts|V|`4.035`|
Expand Down
6 changes: 3 additions & 3 deletions enviro/boards/grow.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ def get_sensor_readings(seconds_since_last):
"humidity": round(bme280_data[2], 2),
"pressure": round(bme280_data[1] / 100.0, 2),
"luminance": round(ltr_data[BreakoutLTR559.LUX], 2),
"moisture_1": round(moisture_levels[0], 2),
"moisture_2": round(moisture_levels[1], 2),
"moisture_3": round(moisture_levels[2], 2)
"moisture_a": round(moisture_levels[0], 2),
"moisture_b": round(moisture_levels[1], 2),
"moisture_c": round(moisture_levels[2], 2)
})

def play_tone(frequency = None):
Expand Down

0 comments on commit d091f75

Please sign in to comment.