├── .gitignore ├── Doc └── images │ ├── 001_banner.png │ ├── 002_EngineeringPrototype.jpg │ ├── 003_ProtoTypeInTest.png │ ├── 004_Overview-temp.png │ ├── 005_HW.png │ ├── 006_Applications.png │ └── 007_Structure.png ├── LICENSE └── ReadMe.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Doc/images/001_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/001_banner.png -------------------------------------------------------------------------------- /Doc/images/002_EngineeringPrototype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/002_EngineeringPrototype.jpg -------------------------------------------------------------------------------- /Doc/images/003_ProtoTypeInTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/003_ProtoTypeInTest.png -------------------------------------------------------------------------------- /Doc/images/004_Overview-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/004_Overview-temp.png -------------------------------------------------------------------------------- /Doc/images/005_HW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/005_HW.png -------------------------------------------------------------------------------- /Doc/images/006_Applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/006_Applications.png -------------------------------------------------------------------------------- /Doc/images/007_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/Doc/images/007_Structure.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWaterFound/SensorCube/HEAD/ReadMe.md --------------------------------------------------------------------------------