├── .gitignore ├── .travis.yml ├── .vscode ├── settings.json └── tasks.json ├── KeyValueService.cpp ├── KeyValueService.h ├── Makefile ├── README.md ├── enums.d.ts ├── extension.cpp ├── extension.ts ├── icon.png ├── pxt.json ├── shims.d.ts ├── test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /KeyValueService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/KeyValueService.cpp -------------------------------------------------------------------------------- /KeyValueService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/KeyValueService.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/README.md -------------------------------------------------------------------------------- /enums.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/enums.d.ts -------------------------------------------------------------------------------- /extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/extension.cpp -------------------------------------------------------------------------------- /extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/extension.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/icon.png -------------------------------------------------------------------------------- /pxt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/pxt.json -------------------------------------------------------------------------------- /shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/shims.d.ts -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE/HEAD/tsconfig.json --------------------------------------------------------------------------------