├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish-firmware.yml │ └── publish-pages.yml ├── .gitignore ├── Atlas EZO docs ├── DO_EZO_Datasheet.pdf ├── EC_EZO_Datasheet.pdf ├── EZO_PMP_Datasheet.pdf ├── EZO_RTD_Datasheet.pdf ├── ORP_EZO_Datasheet.pdf └── pH_EZO_Datasheet.pdf ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── aquapi_config.factory.yaml ├── aquapi_config.yaml ├── assets ├── STLModels │ ├── AquaPiCase │ │ ├── AquaPi Case & IO.3mf │ │ ├── AquaPi Case - Base v53.stl │ │ ├── AquaPi Case - IO v54.3mf │ │ ├── AquaPi Case - IO v54.stl │ │ ├── AquaPi Case - Lid v45.stl │ │ ├── AquaPi Mount - Base v25.stl │ │ ├── AquaPi Mount - Hanger v25.stl │ │ └── AquaPi Mount.3mf │ ├── EZOCase │ │ ├── EZO Board - Case.3mf │ │ ├── EZO Board - Lid v27.stl │ │ └── EZO Board Case v36.stl │ ├── EZOPump │ │ ├── AquaPi Pump Case v25.stl │ │ ├── AquaPi Pump Case.3mf │ │ └── AquaPi Pump Lid v25.stl │ ├── LeakSensor │ │ ├── Leak Sensor - Mag v13.stl │ │ ├── Leak Sensor - Mount.3mf │ │ └── Leak Sensor v14 - Base.stl │ ├── SnapCam │ │ ├── BallMount - ZipTie v9.stl │ │ ├── BallMount v9.stl │ │ ├── esp32Cam - Case v32.stl │ │ └── esp32Cam - Lid v32.stl │ ├── WaterLevelBracket │ │ ├── OpticalBracket - Back v42.stl │ │ ├── OpticalBracket - Holder v44.stl │ │ ├── OpticalBracket - Holder.3mf │ │ ├── OpticalBracket Extender.3mf │ │ └── OpticalBracket Extender.stl │ └── misc │ │ └── Handle v2.stl └── image │ ├── AquaPi Logo Blue.png │ ├── AquaPi Logo.png │ ├── AquaPi+-+Transp.png │ ├── AquaPiLogo150px.png │ ├── AquaPiLogo_small.png │ ├── Gemini_Generated_Image_valg19valg19valg.jpg │ ├── Gemini_Generated_Image_w0boutw0boutw0bo.jpg │ ├── Schematic.png │ ├── Schematicv2.png │ ├── Screenshot 2024-10-15 120850.png │ ├── favicon.ico │ └── logo88x88.png ├── blueprints ├── automation │ └── TheRealFalseReality │ │ ├── aquapi_water_change.yaml │ │ ├── aquapi_water_change_quick.yaml │ │ ├── aquarium_ato_aquapi.yaml │ │ ├── aquarium_ato_binary.yaml │ │ ├── aquarium_dosing_daily.yaml │ │ ├── aquarium_dosing_volume_automation.yaml │ │ ├── aquarium_dosing_volume_daily.yaml │ │ ├── aquarium_lighting_automation.yaml │ │ ├── notify_trigger.yaml │ │ ├── sensor_alarm.yaml │ │ ├── temperature_switch_control.yaml │ │ └── toggle_water_level.yaml └── script │ └── TheRealFalseReality │ ├── aquapi_dosing.yaml │ ├── aquapi_ezo_read.yaml │ ├── aquapi_quick_water_change_script.yaml │ ├── aquapi_water_change_script - Copy.yaml │ ├── aquapi_water_change_script.yaml │ ├── aquarium_dosing.yaml │ ├── aquarium_dosing_volume.yaml │ ├── aquarium_feeding.yaml │ ├── aquarium_lights.yaml │ ├── ec_calibrate_aquapi.yaml │ ├── notify_device.yaml │ ├── orp_calibrate_aquapi.yaml │ └── ph_calibrate_aquapi.yaml ├── common ├── aquapi.yaml ├── binary.yaml ├── binary_input.yaml ├── dac.yaml ├── debug.yaml ├── device_base.yaml ├── dht.yaml ├── ezo_co2.yaml ├── ezo_commands.yaml ├── ezo_do.yaml ├── ezo_ec.yaml ├── ezo_hum.yaml ├── ezo_orp.yaml ├── ezo_ph.yaml ├── ezo_pmp.yaml ├── ezo_pmp_blue.yaml ├── ezo_pmp_duo.yaml ├── ezo_pmp_orange.yaml ├── ezo_pmp_yellow.yaml ├── ezo_rtd.yaml ├── ir_receiver.yaml ├── ota_https.yaml ├── substitutions.yaml ├── temperature_dallas.yaml ├── temperature_dallas_2.yaml └── water_level.yaml └── static ├── _config.yml ├── about.md ├── aquapiai.html ├── blueprints.md ├── index.md └── setup.md /.gitattributes: -------------------------------------------------------------------------------- 1 | README.md merge=ours 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-firmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/workflows/publish-firmware.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.github/workflows/publish-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/.gitignore -------------------------------------------------------------------------------- /Atlas EZO docs/DO_EZO_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/DO_EZO_Datasheet.pdf -------------------------------------------------------------------------------- /Atlas EZO docs/EC_EZO_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/EC_EZO_Datasheet.pdf -------------------------------------------------------------------------------- /Atlas EZO docs/EZO_PMP_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/EZO_PMP_Datasheet.pdf -------------------------------------------------------------------------------- /Atlas EZO docs/EZO_RTD_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/EZO_RTD_Datasheet.pdf -------------------------------------------------------------------------------- /Atlas EZO docs/ORP_EZO_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/ORP_EZO_Datasheet.pdf -------------------------------------------------------------------------------- /Atlas EZO docs/pH_EZO_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/Atlas EZO docs/pH_EZO_Datasheet.pdf -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aquapi_config.factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/aquapi_config.factory.yaml -------------------------------------------------------------------------------- /aquapi_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/aquapi_config.yaml -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Case & IO.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Case & IO.3mf -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Case - Base v53.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Case - Base v53.stl -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Case - IO v54.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Case - IO v54.3mf -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Case - IO v54.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Case - IO v54.stl -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Case - Lid v45.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Case - Lid v45.stl -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Mount - Base v25.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Mount - Base v25.stl -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Mount - Hanger v25.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Mount - Hanger v25.stl -------------------------------------------------------------------------------- /assets/STLModels/AquaPiCase/AquaPi Mount.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/AquaPiCase/AquaPi Mount.3mf -------------------------------------------------------------------------------- /assets/STLModels/EZOCase/EZO Board - Case.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOCase/EZO Board - Case.3mf -------------------------------------------------------------------------------- /assets/STLModels/EZOCase/EZO Board - Lid v27.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOCase/EZO Board - Lid v27.stl -------------------------------------------------------------------------------- /assets/STLModels/EZOCase/EZO Board Case v36.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOCase/EZO Board Case v36.stl -------------------------------------------------------------------------------- /assets/STLModels/EZOPump/AquaPi Pump Case v25.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOPump/AquaPi Pump Case v25.stl -------------------------------------------------------------------------------- /assets/STLModels/EZOPump/AquaPi Pump Case.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOPump/AquaPi Pump Case.3mf -------------------------------------------------------------------------------- /assets/STLModels/EZOPump/AquaPi Pump Lid v25.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/EZOPump/AquaPi Pump Lid v25.stl -------------------------------------------------------------------------------- /assets/STLModels/LeakSensor/Leak Sensor - Mag v13.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/LeakSensor/Leak Sensor - Mag v13.stl -------------------------------------------------------------------------------- /assets/STLModels/LeakSensor/Leak Sensor - Mount.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/LeakSensor/Leak Sensor - Mount.3mf -------------------------------------------------------------------------------- /assets/STLModels/LeakSensor/Leak Sensor v14 - Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/LeakSensor/Leak Sensor v14 - Base.stl -------------------------------------------------------------------------------- /assets/STLModels/SnapCam/BallMount - ZipTie v9.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/SnapCam/BallMount - ZipTie v9.stl -------------------------------------------------------------------------------- /assets/STLModels/SnapCam/BallMount v9.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/SnapCam/BallMount v9.stl -------------------------------------------------------------------------------- /assets/STLModels/SnapCam/esp32Cam - Case v32.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/SnapCam/esp32Cam - Case v32.stl -------------------------------------------------------------------------------- /assets/STLModels/SnapCam/esp32Cam - Lid v32.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/SnapCam/esp32Cam - Lid v32.stl -------------------------------------------------------------------------------- /assets/STLModels/WaterLevelBracket/OpticalBracket - Back v42.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/WaterLevelBracket/OpticalBracket - Back v42.stl -------------------------------------------------------------------------------- /assets/STLModels/WaterLevelBracket/OpticalBracket - Holder v44.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/WaterLevelBracket/OpticalBracket - Holder v44.stl -------------------------------------------------------------------------------- /assets/STLModels/WaterLevelBracket/OpticalBracket - Holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/WaterLevelBracket/OpticalBracket - Holder.3mf -------------------------------------------------------------------------------- /assets/STLModels/WaterLevelBracket/OpticalBracket Extender.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/WaterLevelBracket/OpticalBracket Extender.3mf -------------------------------------------------------------------------------- /assets/STLModels/WaterLevelBracket/OpticalBracket Extender.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/WaterLevelBracket/OpticalBracket Extender.stl -------------------------------------------------------------------------------- /assets/STLModels/misc/Handle v2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/STLModels/misc/Handle v2.stl -------------------------------------------------------------------------------- /assets/image/AquaPi Logo Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/AquaPi Logo Blue.png -------------------------------------------------------------------------------- /assets/image/AquaPi Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/AquaPi Logo.png -------------------------------------------------------------------------------- /assets/image/AquaPi+-+Transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/AquaPi+-+Transp.png -------------------------------------------------------------------------------- /assets/image/AquaPiLogo150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/AquaPiLogo150px.png -------------------------------------------------------------------------------- /assets/image/AquaPiLogo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/AquaPiLogo_small.png -------------------------------------------------------------------------------- /assets/image/Gemini_Generated_Image_valg19valg19valg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/Gemini_Generated_Image_valg19valg19valg.jpg -------------------------------------------------------------------------------- /assets/image/Gemini_Generated_Image_w0boutw0boutw0bo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/Gemini_Generated_Image_w0boutw0boutw0bo.jpg -------------------------------------------------------------------------------- /assets/image/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/Schematic.png -------------------------------------------------------------------------------- /assets/image/Schematicv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/Schematicv2.png -------------------------------------------------------------------------------- /assets/image/Screenshot 2024-10-15 120850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/Screenshot 2024-10-15 120850.png -------------------------------------------------------------------------------- /assets/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/favicon.ico -------------------------------------------------------------------------------- /assets/image/logo88x88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/assets/image/logo88x88.png -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquapi_water_change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquapi_water_change.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquapi_water_change_quick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquapi_water_change_quick.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_ato_aquapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_ato_aquapi.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_ato_binary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_ato_binary.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_dosing_daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_dosing_daily.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_dosing_volume_automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_dosing_volume_automation.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_dosing_volume_daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_dosing_volume_daily.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/aquarium_lighting_automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/aquarium_lighting_automation.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/notify_trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/notify_trigger.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/sensor_alarm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/sensor_alarm.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/temperature_switch_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/temperature_switch_control.yaml -------------------------------------------------------------------------------- /blueprints/automation/TheRealFalseReality/toggle_water_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/automation/TheRealFalseReality/toggle_water_level.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquapi_dosing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquapi_dosing.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquapi_ezo_read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquapi_ezo_read.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquapi_quick_water_change_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquapi_quick_water_change_script.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquapi_water_change_script - Copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquapi_water_change_script - Copy.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquapi_water_change_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquapi_water_change_script.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquarium_dosing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquarium_dosing.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquarium_dosing_volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquarium_dosing_volume.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquarium_feeding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquarium_feeding.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/aquarium_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/aquarium_lights.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/ec_calibrate_aquapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/ec_calibrate_aquapi.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/notify_device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/notify_device.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/orp_calibrate_aquapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/orp_calibrate_aquapi.yaml -------------------------------------------------------------------------------- /blueprints/script/TheRealFalseReality/ph_calibrate_aquapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/blueprints/script/TheRealFalseReality/ph_calibrate_aquapi.yaml -------------------------------------------------------------------------------- /common/aquapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/aquapi.yaml -------------------------------------------------------------------------------- /common/binary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/binary.yaml -------------------------------------------------------------------------------- /common/binary_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/binary_input.yaml -------------------------------------------------------------------------------- /common/dac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/dac.yaml -------------------------------------------------------------------------------- /common/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/debug.yaml -------------------------------------------------------------------------------- /common/device_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/device_base.yaml -------------------------------------------------------------------------------- /common/dht.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/dht.yaml -------------------------------------------------------------------------------- /common/ezo_co2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_co2.yaml -------------------------------------------------------------------------------- /common/ezo_commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_commands.yaml -------------------------------------------------------------------------------- /common/ezo_do.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_do.yaml -------------------------------------------------------------------------------- /common/ezo_ec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_ec.yaml -------------------------------------------------------------------------------- /common/ezo_hum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_hum.yaml -------------------------------------------------------------------------------- /common/ezo_orp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_orp.yaml -------------------------------------------------------------------------------- /common/ezo_ph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_ph.yaml -------------------------------------------------------------------------------- /common/ezo_pmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_pmp.yaml -------------------------------------------------------------------------------- /common/ezo_pmp_blue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_pmp_blue.yaml -------------------------------------------------------------------------------- /common/ezo_pmp_duo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_pmp_duo.yaml -------------------------------------------------------------------------------- /common/ezo_pmp_orange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_pmp_orange.yaml -------------------------------------------------------------------------------- /common/ezo_pmp_yellow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_pmp_yellow.yaml -------------------------------------------------------------------------------- /common/ezo_rtd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ezo_rtd.yaml -------------------------------------------------------------------------------- /common/ir_receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ir_receiver.yaml -------------------------------------------------------------------------------- /common/ota_https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/ota_https.yaml -------------------------------------------------------------------------------- /common/substitutions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/substitutions.yaml -------------------------------------------------------------------------------- /common/temperature_dallas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/temperature_dallas.yaml -------------------------------------------------------------------------------- /common/temperature_dallas_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/temperature_dallas_2.yaml -------------------------------------------------------------------------------- /common/water_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/common/water_level.yaml -------------------------------------------------------------------------------- /static/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/_config.yml -------------------------------------------------------------------------------- /static/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/about.md -------------------------------------------------------------------------------- /static/aquapiai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/aquapiai.html -------------------------------------------------------------------------------- /static/blueprints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/blueprints.md -------------------------------------------------------------------------------- /static/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/index.md -------------------------------------------------------------------------------- /static/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRealFalseReality/aquapi/HEAD/static/setup.md --------------------------------------------------------------------------------