├── .gitattributes ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── EXTENSIONS.md ├── LICENSE ├── Makefile ├── README.md ├── config.json ├── examples ├── README.md ├── extension.cpp └── tcs34725.cpp ├── generated ├── extconfig.h ├── extensions.inc ├── extpointers.inc ├── metainfo.json └── pointers.inc ├── microbit-touchdevelop ├── BMP085.h ├── BitVM.h ├── I2CCommon.h ├── MicroBitTouchDevelop.h └── TCS34725.h ├── module.json ├── run.sh ├── scripts ├── functionTable.js └── generateEmbedInfo.js └── source ├── BMP085.cpp ├── I2CCommon.cpp ├── MicroBitCustomConfig.h ├── MicroBitTouchDevelop.cpp ├── TCS34725.cpp ├── bitvm.cpp └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /EXTENSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/EXTENSIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/config.json -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/examples/extension.cpp -------------------------------------------------------------------------------- /examples/tcs34725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/examples/tcs34725.cpp -------------------------------------------------------------------------------- /generated/extconfig.h: -------------------------------------------------------------------------------- 1 | /* Replaced by bitvm extension build process. */ 2 | -------------------------------------------------------------------------------- /generated/extensions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/generated/extensions.inc -------------------------------------------------------------------------------- /generated/extpointers.inc: -------------------------------------------------------------------------------- 1 | /* Replaced by bitvm extension build process. */ 2 | -------------------------------------------------------------------------------- /generated/metainfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/generated/metainfo.json -------------------------------------------------------------------------------- /generated/pointers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/generated/pointers.inc -------------------------------------------------------------------------------- /microbit-touchdevelop/BMP085.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/microbit-touchdevelop/BMP085.h -------------------------------------------------------------------------------- /microbit-touchdevelop/BitVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/microbit-touchdevelop/BitVM.h -------------------------------------------------------------------------------- /microbit-touchdevelop/I2CCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/microbit-touchdevelop/I2CCommon.h -------------------------------------------------------------------------------- /microbit-touchdevelop/MicroBitTouchDevelop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/microbit-touchdevelop/MicroBitTouchDevelop.h -------------------------------------------------------------------------------- /microbit-touchdevelop/TCS34725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/microbit-touchdevelop/TCS34725.h -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/module.json -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/functionTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/scripts/functionTable.js -------------------------------------------------------------------------------- /scripts/generateEmbedInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/scripts/generateEmbedInfo.js -------------------------------------------------------------------------------- /source/BMP085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/BMP085.cpp -------------------------------------------------------------------------------- /source/I2CCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/I2CCommon.cpp -------------------------------------------------------------------------------- /source/MicroBitCustomConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/MicroBitCustomConfig.h -------------------------------------------------------------------------------- /source/MicroBitTouchDevelop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/MicroBitTouchDevelop.cpp -------------------------------------------------------------------------------- /source/TCS34725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/TCS34725.cpp -------------------------------------------------------------------------------- /source/bitvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/bitvm.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/microbit-touchdevelop/HEAD/source/main.cpp --------------------------------------------------------------------------------