File tree Expand file tree Collapse file tree 6 files changed +53
-4
lines changed
sensor_tests/Yosemitech_test_Y700_Y4000_simple_logging Expand file tree Collapse file tree 6 files changed +53
-4
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35
35
36
36
### Added
37
37
- Support Campbell RainVUE10 SDI-12 Precipitation Sensor (#416 )
38
+ - Support YosemiTech Y700 Pressor Sensor ([ #421 ] ( https://github.com/EnviroDIY/ModularSensors/issues/421 ) )
38
39
39
40
### Removed
40
41
41
42
### Fixed
43
+ - Fixed bug in YosemiTech Y4000 Sonde ([ #420 ] ( https://github.com/EnviroDIY/ModularSensors/issues/420 ) )
42
44
- Fixed non-concurrent data fetch for SDI-12 when * NOT* using debugging.
43
45
- Fixed internet connection when in "testing mode"
44
46
- Allow a non-zero wait time for SDI-12 sensors
Original file line number Diff line number Diff line change 1
- 0.33.4
1
+ 0.34.0
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = ModularSensors
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = 0.33.4
41
+ PROJECT_NUMBER = 0.34.0
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change 324
324
"owner" : " envirodiy" ,
325
325
"library id" : " 2078" ,
326
326
"url" : " https://github.com/EnviroDIY/YosemitechModbus" ,
327
- "version" : " ~0.3.2 " ,
327
+ "version" : " ~0.4.0 " ,
328
328
"note" : " Arduino library for communication with Yosemitech sensors via Modbus." ,
329
329
"authors" : [" Sara Damiano" , " Anthony Aufdenkampe" ],
330
330
"frameworks" : " arduino" ,
Original file line number Diff line number Diff line change 10
10
*
11
11
* Build Environment: Visual Studios Code with PlatformIO
12
12
* Hardware Platform: EnviroDIY Mayfly Arduino Datalogger
13
- * Created with ModularSensors v0.33.4
13
+ * Created with ModularSensors v0.34.0
14
14
*
15
15
* DISCLAIMER:
16
16
* THIS CODE IS PROVIDED "AS IS" - NO WARRANTY IS GIVEN.
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments