Skip to content

Commit 5c8cc20

Browse files
committed
Version bump to 0.34.0
To support Y700 & Y4000
1 parent 0327743 commit 5c8cc20

File tree

6 files changed

+53
-4
lines changed

6 files changed

+53
-4
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535

3636
### Added
3737
- Support Campbell RainVUE10 SDI-12 Precipitation Sensor (#416)
38+
- Support YosemiTech Y700 Pressor Sensor ([#421](https://github.com/EnviroDIY/ModularSensors/issues/421))
3839

3940
### Removed
4041

4142
### Fixed
43+
- Fixed bug in YosemiTech Y4000 Sonde ([#420](https://github.com/EnviroDIY/ModularSensors/issues/420))
4244
- Fixed non-concurrent data fetch for SDI-12 when *NOT* using debugging.
4345
- Fixed internet connection when in "testing mode"
4446
- Allow a non-zero wait time for SDI-12 sensors

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.33.4
1+
0.34.0

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ModularSensors
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.33.4
41+
PROJECT_NUMBER = 0.34.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
"owner": "envirodiy",
325325
"library id": "2078",
326326
"url": "https://github.com/EnviroDIY/YosemitechModbus",
327-
"version": "~0.3.2",
327+
"version": "~0.4.0",
328328
"note": "Arduino library for communication with Yosemitech sensors via Modbus.",
329329
"authors": ["Sara Damiano", "Anthony Aufdenkampe"],
330330
"frameworks": "arduino",

sensor_tests/Yosemitech_test_Y700_Y4000_simple_logging/Yosemitech_test_Y700_Y4000_simple_logging.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* Build Environment: Visual Studios Code with PlatformIO
1212
* Hardware Platform: EnviroDIY Mayfly Arduino Datalogger
13-
* Created with ModularSensors v0.33.4
13+
* Created with ModularSensors v0.34.0
1414
*
1515
* DISCLAIMER:
1616
* THIS CODE IS PROVIDED "AS IS" - NO WARRANTY IS GIVEN.
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
; PlatformIO Project Configuration File
2+
;
3+
; Build options: build flags, source filter
4+
; Upload options: custom upload port, speed and extra flags
5+
; Library options: dependencies, extra library storages
6+
; Advanced options: extra scripting
7+
;
8+
; Please visit documentation for the other options and examples
9+
; http://docs.platformio.org/page/projectconf.html
10+
11+
[platformio]
12+
description = ModularSensors example logging data to an SD card from external sensors
13+
src_dir = utilities/Yosemitech_test_6sensors_simple_logging
14+
15+
[env:mayfly]
16+
monitor_speed = 115200
17+
board = mayfly
18+
platform = atmelavr
19+
framework = arduino
20+
lib_ldf_mode = deep+
21+
lib_ignore =
22+
RTCZero
23+
Adafruit NeoPixel
24+
Adafruit GFX Library
25+
Adafruit SSD1306
26+
Adafruit ADXL343
27+
Adafruit STMPE610
28+
Adafruit TouchScreen
29+
Adafruit ILI9341
30+
build_flags =
31+
-DSDI12_EXTERNAL_PCINT
32+
-DNEOSWSERIAL_EXTERNAL_PCINT
33+
-DMQTT_MAX_PACKET_SIZE=240
34+
-DTINY_GSM_RX_BUFFER=64
35+
-DTINY_GSM_YIELD_MS=2
36+
-DMS_YOSEMITECHPARENT_DEBUG
37+
; -D MS_YOSEMITECHPARENT_DEBUG_DEEP
38+
lib_deps =
39+
EnviroDIY_ModularSensors@=0.34.0
40+
41+
; Using ModularSensors *Y551_Y550* branch (v0.33 ish) on 12/21/2021
42+
; https://github.com/EnviroDIY/ModularSensors.git#e27236f22d311d43800b34dd9d064b503848dbe9
43+
44+
https://github.com/PaulStoffregen/AltSoftSerial.git
45+
https://github.com/SRGDamia1/NeoSWSerial.git
46+
https://github.com/EnviroDIY/SoftwareSerial_ExternalInts.git
47+
; ^^ These are software serial port emulator libraries, you may not need them

0 commit comments

Comments
 (0)