├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── examples ├── Calibration │ └── Calibration.cpp ├── Multi │ └── Multi.cpp ├── Simple │ └── Simple.cpp └── Simulator │ └── Simulator.cpp ├── keywords.txt ├── library.json ├── library.properties ├── platformio.ini └── src ├── FlowMeter.cpp ├── FlowMeter.h ├── FlowSensorCalibration.h ├── FlowSensorProperties.cpp └── FlowSensorProperties.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/README.md -------------------------------------------------------------------------------- /examples/Calibration/Calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/examples/Calibration/Calibration.cpp -------------------------------------------------------------------------------- /examples/Multi/Multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/examples/Multi/Multi.cpp -------------------------------------------------------------------------------- /examples/Simple/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/examples/Simple/Simple.cpp -------------------------------------------------------------------------------- /examples/Simulator/Simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/examples/Simulator/Simulator.cpp -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/FlowMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/src/FlowMeter.cpp -------------------------------------------------------------------------------- /src/FlowMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/src/FlowMeter.h -------------------------------------------------------------------------------- /src/FlowSensorCalibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/src/FlowSensorCalibration.h -------------------------------------------------------------------------------- /src/FlowSensorProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/src/FlowSensorProperties.cpp -------------------------------------------------------------------------------- /src/FlowSensorProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sekdiy/FlowMeter/HEAD/src/FlowSensorProperties.h --------------------------------------------------------------------------------