├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DISCUSSION_TEMPLATE │ └── support.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── maf-data.md ├── issue-branch.yaml └── workflows │ └── create-branch.yaml ├── .gitignore ├── 3D Parts ├── 110mm Dia MAF Mount v4.f3d └── 110mm Dia MAF Mount v4.stl ├── ESP32 └── DIY-Flow-Bench │ ├── API.cpp │ ├── API.h │ ├── DIY-Flow-Bench.ino │ ├── calculations.cpp │ ├── calculations.h │ ├── calibration.cpp │ ├── calibration.h │ ├── comms.cpp │ ├── comms.h │ ├── constants.h │ ├── data │ └── spiffs.bin │ ├── datahandler.cpp │ ├── datahandler.h │ ├── hardware.cpp │ ├── hardware.h │ ├── html │ ├── calibration.html │ ├── calibration.js │ ├── config.html │ ├── config.js │ ├── cookies.js │ ├── data.html │ ├── data.js │ ├── footer.html │ ├── header.html │ ├── index.html │ ├── index.js │ ├── mimic.html │ ├── mimic.js │ ├── pins.html │ ├── preload.html │ ├── serial.html │ ├── settings.html │ ├── settings.js │ ├── settings_modals.html │ └── style.css │ ├── html_data.h │ ├── htmldata.h │ ├── language │ └── EN_language.json │ ├── mafdata.h │ ├── messages.cpp │ ├── messages.h │ ├── miniz.c │ ├── miniz.h │ ├── publichtml.cpp │ ├── publichtml.h │ ├── release │ ├── V2.0-RC9_2502110001_install.bin │ └── V2.0-RC9_2502110001_update.bin │ ├── sensors.cpp │ ├── sensors.h │ ├── sketch.json │ ├── structs.h │ ├── system.h │ ├── tools │ ├── MAF polynomial calcs V3.xlsx │ ├── htmlToBytes copy.py │ ├── htmlToBytes.py │ ├── mafConvertMGStoKGH.py │ ├── mafData.json │ ├── mafScaleJsonValues.py │ ├── mafTransferFunctionGenerator.py │ ├── user_actions_post.py │ ├── user_actions_pre.py │ ├── user_merge_firmware.py │ └── ~$MAF polynomial calcs V3.xlsx │ ├── version.json │ ├── webserver.cpp │ └── webserver.h ├── LICENSE ├── PCB ├── LICENSE ├── PCB 3D.png ├── PCB Bottom.png ├── PCB Top.png ├── README.md ├── Schematic_DIY-FLOW-BENCH-V2-3.jpg └── Schematic_DIY-FLOW-BENCH-V2-3.pdf ├── README.md ├── docs ├── BOM_DIY-FLOW-BENCH-V2-3.csv ├── CHANGELOG.md ├── Hardware Schema_V2.1 ├── Hardware_Schema_V1.0 ├── QuickStart.md ├── Serial API Specification.docx └── iBom-DIY-FLOW-BENCH-V2-3.html ├── gulpfile.js ├── package.json ├── partitions-default.csv └── platformio.ini /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/DISCUSSION_TEMPLATE/support.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maf-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/ISSUE_TEMPLATE/maf-data.md -------------------------------------------------------------------------------- /.github/issue-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/issue-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/create-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.github/workflows/create-branch.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/.gitignore -------------------------------------------------------------------------------- /3D Parts/110mm Dia MAF Mount v4.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/3D Parts/110mm Dia MAF Mount v4.f3d -------------------------------------------------------------------------------- /3D Parts/110mm Dia MAF Mount v4.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/3D Parts/110mm Dia MAF Mount v4.stl -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/API.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/API.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/DIY-Flow-Bench.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/DIY-Flow-Bench.ino -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/calculations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/calculations.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/calculations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/calculations.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/calibration.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/calibration.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/comms.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/comms.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/constants.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/data/spiffs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/data/spiffs.bin -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/datahandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/datahandler.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/datahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/datahandler.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/hardware.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/hardware.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/calibration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/calibration.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/calibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/calibration.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/config.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/config.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/cookies.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/data.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/data.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/footer.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/header.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/index.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/index.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/mimic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/mimic.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/mimic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/mimic.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/pins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/pins.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/preload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/preload.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/serial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/serial.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/settings.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/settings.js -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/settings_modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/settings_modals.html -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html/style.css -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/html_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/html_data.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/htmldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/htmldata.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/language/EN_language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/language/EN_language.json -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/mafdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/mafdata.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/messages.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/messages.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/miniz.c -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/miniz.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/publichtml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/publichtml.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/publichtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/publichtml.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/release/V2.0-RC9_2502110001_install.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/release/V2.0-RC9_2502110001_install.bin -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/release/V2.0-RC9_2502110001_update.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/release/V2.0-RC9_2502110001_update.bin -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/sensors.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/sensors.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/sketch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/sketch.json -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/structs.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/system.h -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/MAF polynomial calcs V3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/MAF polynomial calcs V3.xlsx -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/htmlToBytes copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/htmlToBytes copy.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/htmlToBytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/htmlToBytes.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/mafConvertMGStoKGH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/mafConvertMGStoKGH.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/mafData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/mafData.json -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/mafScaleJsonValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/mafScaleJsonValues.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/mafTransferFunctionGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/mafTransferFunctionGenerator.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/user_actions_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/user_actions_post.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/user_actions_pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/user_actions_pre.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/user_merge_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/user_merge_firmware.py -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/tools/~$MAF polynomial calcs V3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/tools/~$MAF polynomial calcs V3.xlsx -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/version.json -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/webserver.cpp -------------------------------------------------------------------------------- /ESP32/DIY-Flow-Bench/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/ESP32/DIY-Flow-Bench/webserver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/LICENSE -------------------------------------------------------------------------------- /PCB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/LICENSE -------------------------------------------------------------------------------- /PCB/PCB 3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/PCB 3D.png -------------------------------------------------------------------------------- /PCB/PCB Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/PCB Bottom.png -------------------------------------------------------------------------------- /PCB/PCB Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/PCB Top.png -------------------------------------------------------------------------------- /PCB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/README.md -------------------------------------------------------------------------------- /PCB/Schematic_DIY-FLOW-BENCH-V2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/Schematic_DIY-FLOW-BENCH-V2-3.jpg -------------------------------------------------------------------------------- /PCB/Schematic_DIY-FLOW-BENCH-V2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/PCB/Schematic_DIY-FLOW-BENCH-V2-3.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/README.md -------------------------------------------------------------------------------- /docs/BOM_DIY-FLOW-BENCH-V2-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/BOM_DIY-FLOW-BENCH-V2-3.csv -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/Hardware Schema_V2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/Hardware Schema_V2.1 -------------------------------------------------------------------------------- /docs/Hardware_Schema_V1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/Hardware_Schema_V1.0 -------------------------------------------------------------------------------- /docs/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/QuickStart.md -------------------------------------------------------------------------------- /docs/Serial API Specification.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/Serial API Specification.docx -------------------------------------------------------------------------------- /docs/iBom-DIY-FLOW-BENCH-V2-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/docs/iBom-DIY-FLOW-BENCH-V2-3.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/package.json -------------------------------------------------------------------------------- /partitions-default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/partitions-default.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeeEmm/DIY-Flow-Bench/HEAD/platformio.ini --------------------------------------------------------------------------------