From 34f49cc42c60e6a92c2c9b8b59a535794209c920 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 24 Nov 2023 00:16:38 -0500 Subject: [PATCH 1/7] Update aquapi_config.yaml --- aquapi_config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/aquapi_config.yaml b/aquapi_config.yaml index 17e65d7..c541160 100644 --- a/aquapi_config.yaml +++ b/aquapi_config.yaml @@ -17,6 +17,7 @@ packages: binary: !include common/binary.yaml aquapi: !include common/aquapi.yaml # ezo_command: !include common/ezo_command.yaml + # debug: !include common/debug.yaml ezo_ph: !include common/ezo_ph.yaml ezo_ec: !include common/ezo_ec.yaml ezo_hum: !include common/ezo_hum.yaml From dd312ffa1903419e9352e0860076fdc210e95766 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 24 Nov 2023 00:17:41 -0500 Subject: [PATCH 2/7] Update aquapi_config.yaml --- aquapi_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquapi_config.yaml b/aquapi_config.yaml index c541160..98c200a 100644 --- a/aquapi_config.yaml +++ b/aquapi_config.yaml @@ -17,7 +17,7 @@ packages: binary: !include common/binary.yaml aquapi: !include common/aquapi.yaml # ezo_command: !include common/ezo_command.yaml - # debug: !include common/debug.yaml + debug: !include common/debug.yaml ezo_ph: !include common/ezo_ph.yaml ezo_ec: !include common/ezo_ec.yaml ezo_hum: !include common/ezo_hum.yaml From fc945474a44af93af93debe81debfddd1749e71d Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 24 Nov 2023 16:13:34 -0500 Subject: [PATCH 3/7] Update aquapi_config.yaml --- aquapi_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquapi_config.yaml b/aquapi_config.yaml index 98c200a..f264a1c 100644 --- a/aquapi_config.yaml +++ b/aquapi_config.yaml @@ -2,7 +2,7 @@ substitutions: # names name: "aquapi" friendly_name: "AquaPi" - # App Version - Updated: 8/2023 + # App Version - Updated: 11/2023 app_version: "1.3.5" update_do: "never" From f19c6045227da2548d38047341835c8a654104ad Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 24 Nov 2023 20:36:10 -0500 Subject: [PATCH 4/7] updates --- aquapi_config.yaml | 6 ------ common/ezo_hum.yaml | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/aquapi_config.yaml b/aquapi_config.yaml index f264a1c..2a8637e 100644 --- a/aquapi_config.yaml +++ b/aquapi_config.yaml @@ -5,12 +5,6 @@ substitutions: # App Version - Updated: 11/2023 app_version: "1.3.5" - update_do: "never" - update_rtd: "never" - update_pmp: "never" - update_hum: "never" - update_co2: "never" - packages: device_base: !include common/device_base.yaml dallas: !include common/temperature_dallas.yaml diff --git a/common/ezo_hum.yaml b/common/ezo_hum.yaml index 8698a9e..cad9b63 100644 --- a/common/ezo_hum.yaml +++ b/common/ezo_hum.yaml @@ -103,6 +103,12 @@ sensor: return NAN; } + # Absolute Humidity + - platform: absolute_humidity + name: Absolute Humidity + temperature: sensor_hum_air_temperature + humidity: hum_ezo + text_sensor: # HUM Raw Value - platform: template From 70814f1999e7aaac83260da0630bba496028c3aa Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 25 Nov 2023 02:35:10 -0500 Subject: [PATCH 5/7] Update ezo_ec.yaml added TDS conversion value --- common/ezo_ec.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/ezo_ec.yaml b/common/ezo_ec.yaml index bcd5925..075cdbd 100644 --- a/common/ezo_ec.yaml +++ b/common/ezo_ec.yaml @@ -260,6 +260,12 @@ button: id(ec_ezo).send_custom("O,S,0"); id(ec_ezo).send_custom("O,SG,0"); } + if (id(select_command_ec).state == "Get TDS Value") { + id(ec_ezo).send_custom("TDS,?"); + } + if (id(select_command_ec).state == "Set TDS Value to NaCl - 0.48") { + id(ec_ezo).send_custom("TDS,0.48"); + } if (id(select_command_ec).state == "Check Calibration") { id(ec_ezo).get_calibration(); } @@ -299,6 +305,8 @@ select: - "Output Units - Salinity" - "Output Units - Specific Gravity" - "Output Units - TDS" + - "Get TDS Value" + - "Set TDS Value to NaCl - 0.48" - "Check Calibration" - "Calibrate @ 0 (WILL RESET CALIBRATION)" - "Calibrate @ LOW = 12880 (WILL RESET CALIBRATION)" From a4923e3ede400e5d46d15cbcbf27d42cdf2be171 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 25 Nov 2023 20:54:20 -0500 Subject: [PATCH 6/7] Update ezo_ec.yaml --- common/ezo_ec.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/common/ezo_ec.yaml b/common/ezo_ec.yaml index 075cdbd..10be7f3 100644 --- a/common/ezo_ec.yaml +++ b/common/ezo_ec.yaml @@ -223,7 +223,10 @@ button: } if (id(select_command_ec).state == "Get TDS Value") { id(ec_ezo).send_custom("TDS,?"); - } + } + if (id(select_command_ec).state == "Set TDS Value to NaCl - 0.48") { + id(ec_ezo).send_custom("TDS,0.48"); + } if (id(select_command_ec).state == "Get Enabled Parameter(s)") { id(ec_ezo).send_custom("O,?"); } @@ -260,12 +263,6 @@ button: id(ec_ezo).send_custom("O,S,0"); id(ec_ezo).send_custom("O,SG,0"); } - if (id(select_command_ec).state == "Get TDS Value") { - id(ec_ezo).send_custom("TDS,?"); - } - if (id(select_command_ec).state == "Set TDS Value to NaCl - 0.48") { - id(ec_ezo).send_custom("TDS,0.48"); - } if (id(select_command_ec).state == "Check Calibration") { id(ec_ezo).get_calibration(); } @@ -298,6 +295,7 @@ select: - "Status" - "Get Probe K Value" - "Get TDS Value" + - "Set TDS Value to NaCl - 0.48" - "Get Enabled Parameter(s)" - "Set Probe Type K1" - "Output Units - All (Default)" @@ -305,8 +303,6 @@ select: - "Output Units - Salinity" - "Output Units - Specific Gravity" - "Output Units - TDS" - - "Get TDS Value" - - "Set TDS Value to NaCl - 0.48" - "Check Calibration" - "Calibrate @ 0 (WILL RESET CALIBRATION)" - "Calibrate @ LOW = 12880 (WILL RESET CALIBRATION)" From 0aea41d9f3ccdbb3ab110dae1500730bc1b5ca41 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 30 Nov 2023 13:11:07 -0500 Subject: [PATCH 7/7] Update aquapi_config.yaml --- aquapi_config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aquapi_config.yaml b/aquapi_config.yaml index 2a8637e..86f2d20 100644 --- a/aquapi_config.yaml +++ b/aquapi_config.yaml @@ -14,8 +14,8 @@ packages: debug: !include common/debug.yaml ezo_ph: !include common/ezo_ph.yaml ezo_ec: !include common/ezo_ec.yaml - ezo_hum: !include common/ezo_hum.yaml - ezo_rtd: !include common/ezo_rtd.yaml - ezo_co2: !include common/ezo_co2.yaml - ezo_do: !include common/ezo_do.yaml - ezo_pmp: !include common/ezo_pmp.yaml \ No newline at end of file + # ezo_hum: !include common/ezo_hum.yaml + # ezo_rtd: !include common/ezo_rtd.yaml + # ezo_co2: !include common/ezo_co2.yaml + # ezo_do: !include common/ezo_do.yaml + # ezo_pmp: !include common/ezo_pmp.yaml \ No newline at end of file