├── .gitattributes ├── .gitignore ├── README.md ├── blecpp.cpp ├── blecpp.sln ├── blecpp.vcxproj ├── blecpp.vcxproj.filters ├── decoders.cpp ├── decoders.h ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /Release 3 | /Debug 4 | /*.user 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/README.md -------------------------------------------------------------------------------- /blecpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/blecpp.cpp -------------------------------------------------------------------------------- /blecpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/blecpp.sln -------------------------------------------------------------------------------- /blecpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/blecpp.vcxproj -------------------------------------------------------------------------------- /blecpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/blecpp.vcxproj.filters -------------------------------------------------------------------------------- /decoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/decoders.cpp -------------------------------------------------------------------------------- /decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/decoders.h -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucienator/ble-win-cpp/HEAD/pch.h --------------------------------------------------------------------------------