MakeCode für den Calliope
Go to file
Michal Moskal 19f40d27ff Merge branch 'master' of github.com:Microsoft/kindscript-microbit 2016-03-11 17:17:24 -08:00
libs added custom title 2016-03-10 23:09:38 -08:00
sim fixing pin value visibility 2016-03-11 16:51:35 -08:00
.gitattributes Move files from main kindscript repo 2016-03-10 14:01:04 -08:00
.gitignore Move files from main kindscript repo 2016-03-10 14:01:04 -08:00
.travis.yml Try forcing latest package versions 2016-03-11 17:17:16 -08:00
README.md updated docs 2016-03-10 21:32:05 -08:00
kindtarget.json folding sub-libs into single lib 2016-03-10 22:17:32 -08:00
package.json Add simulator 2016-03-10 16:24:11 -08:00

README.md

micro:bit target for KindScript

This target allow to program a BBC micro:bit using KindScript.

Build Status

Getting started

If you're making changes to kindscript repository itself, proceed to Local installation below.

  • Clone this repo and run
npm install
  • Install the KindScript tool and launch the local server:
npm install -g kindscript-cli
kind serve

To re-build the built/target.json file, re-run kind serve.

Local installation

  • Clone and build KindScript in a kindscript folder.
  • Clone this repo in a kindscript-microbit folder next to kindscript
npm install
  • To build and deploy new changes
npm install -g kindscript-cli
cd ../kindscript
jake
cd ../kindscript-microbit
npm link ../kindscript
  • run this command to build and launch a local editor
kind serve
  • open localhost:3232 to try your editor!