Skip to content

Commit

Permalink
Merge pull request #43 from TheRealFalseReality/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
TheRealFalseReality authored Nov 30, 2023
2 parents bc65b43 + cd67ad0 commit ea3d405
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
19 changes: 6 additions & 13 deletions aquapi_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,19 @@ 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"
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
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
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
# 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
6 changes: 5 additions & 1 deletion common/ezo_ec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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,?");
}
Expand Down Expand Up @@ -292,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)"
Expand Down
6 changes: 6 additions & 0 deletions common/ezo_hum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea3d405

Please sign in to comment.