├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── autoassign.yml │ ├── build.yml │ ├── ci.yml │ └── weekly.yml ├── .gitignore ├── Datasheets ├── DPS310_Datasheet.pdf ├── ESP-32-C3-Mini_Datasheet.pdf └── SCD40_CO2_Datasheet.pdf ├── Integrations └── ESPHome │ ├── .gitignore │ ├── AIR-1.yaml │ ├── AIR-1_BLE.yaml │ ├── AIR-1_Factory.yaml │ ├── Core.yaml │ └── README.md ├── License.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md └── static └── index.html /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/autoassign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/workflows/autoassign.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/.gitignore -------------------------------------------------------------------------------- /Datasheets/DPS310_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Datasheets/DPS310_Datasheet.pdf -------------------------------------------------------------------------------- /Datasheets/ESP-32-C3-Mini_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Datasheets/ESP-32-C3-Mini_Datasheet.pdf -------------------------------------------------------------------------------- /Datasheets/SCD40_CO2_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Datasheets/SCD40_CO2_Datasheet.pdf -------------------------------------------------------------------------------- /Integrations/ESPHome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Integrations/ESPHome/.gitignore -------------------------------------------------------------------------------- /Integrations/ESPHome/AIR-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Integrations/ESPHome/AIR-1.yaml -------------------------------------------------------------------------------- /Integrations/ESPHome/AIR-1_BLE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Integrations/ESPHome/AIR-1_BLE.yaml -------------------------------------------------------------------------------- /Integrations/ESPHome/AIR-1_Factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Integrations/ESPHome/AIR-1_Factory.yaml -------------------------------------------------------------------------------- /Integrations/ESPHome/Core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/Integrations/ESPHome/Core.yaml -------------------------------------------------------------------------------- /Integrations/ESPHome/README.md: -------------------------------------------------------------------------------- 1 | A place for yaml configurations -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/License.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/README.md -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAutomation/AIR-1/HEAD/static/index.html --------------------------------------------------------------------------------