Skip to content
A Blocks / JavaScript code editor for the micro:bit built on Microsoft MakeCode
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github/ISSUE_TEMPLATE Update issue template for microbit May 17, 2018
.vscode fixing getting started Apr 29, 2017
clients removed chrome extension code Oct 2, 2018
docfiles Beta release fixes (#1850) Feb 26, 2019
docs Include a local 'translate' page (#2009) Apr 18, 2019
editor
electron Release Electron app v0.9.15 Mar 7, 2017
external/sha
fieldeditors Add field gesture and field images for the different gestures (#803) May 25, 2018
libs Rewriting the radio in TypeScript (#2000) Apr 12, 2019
pxtwapp super basic trouble shooting page for windows app (#585) Dec 5, 2017
resources
sim
tests Update tests. remove converted test for the time being Apr 21, 2018
theme Set dimmer background to blue (#1949) Apr 2, 2019
.clang-format Implement tagged integers in C++ (#813) May 29, 2018
.gitattributes Add own manifest Apr 9, 2016
.gitignore updated language list Mar 12, 2018
.travis.yml
CONTRIBUTING.md Updating with the MIT license text and contributing guideline Nov 29, 2016
LICENSE.txt Updating with the MIT license text and contributing guideline Nov 29, 2016
README.md Modify readme info (#1720) Dec 9, 2018
THIRD-PARTY-NOTICES.txt enfore v0 sounds (#1231) Sep 13, 2018
faviconDescription.json
microbit.code-workspace Remove logo glow to optimize gif generation (#1894) Mar 20, 2019
package-lock.json 1.4.6 Apr 17, 2019
package.json
ptrcheck-ignore update ignore file Jul 14, 2016
pxtarget.json update to latest pxt / common (#2006) Apr 16, 2019
targetconfig.json add dht11-12 (#1943) Apr 9, 2019
travis-tests.sh Remove 3 converter tests with overflowing numbers Oct 4, 2016
tslint.json fixing various lint violations May 5, 2016
webmanifest.json Updating all pxt.microbit.org reference to makecode.microbit.org (#460) Jul 24, 2017

README.md

micro:bit target for PXT

Build Status

pxt-microbit is a Microsoft Programming Experience Toolkit (PXT) target that allows you to program a BBC micro:bit.

Issue tracking

Please add an issue if you discover an (unreported) bug.

Developing new extensions

Authoring and testing of new extensions can be done directly from the web editor. See our documentation on how to get started. If you want to run the editor locally, keep reading.

Local server

The local server lets you to run the editor and serve the documentation from your own computer. It is meant for a single developer used and not designed to serve the editor to a large amount of users.

Developer Setup

This is the typical setup used by the MakeCode team to work on the microbit.

  1. Install Node.js 8.9.4 or higher.
  2. Install Docker if you plan to build .cpp files.
  3. Clone the pxt repository.
git clone https://github.com/microsoft/pxt
cd pxt
  1. Install the dependencies of pxt and build it
npm install
npm run build
cd ..
  1. Clone the pxt-common-packages repository
git clone https://github.com/microsoft/pxt-common-packages
cd pxt-common-packages
npm install
cd ..
  1. Clone this repository.
git clone https://github.com/microsoft/pxt-microbit
cd pxt-microbit
  1. Install the PXT command line (add sudo for Mac/Linux shells).
npm install -g pxt
  1. Install the pxt-microbit dependencies.
npm install
  1. Link pxt-microbit back to base pxt repo (add sudo for Mac/Linux shells). This step is only required if you intend to make changes to pxt and/or pxt-common-packages repos. If all you want is serve a local Makecode, you can skip this step.
npm link ../pxt
npm link ../pxt-common-packages

Note the above command assumes the folder structure of

       makecode
          |
  ----------------------------------
  |       |                        |
 pxt      pxt-common-packages  pxt-microbit

Running

Run this command from inside pxt-microbit to open a local web server

pxt serve

If the local server opens in the wrong browser, make sure to copy the URL containing the local token. Otherwise, the editor will not be able to load the projects.

If you need to modify the .cpp files (and have installed yotta), enable yotta compilation using the --localbuild flag:

pxt serve --local

If you want to speed up the build, you can use the rebundle option, which skips building and simply refreshes the target information

pxt serve --rebundle

Cleaning

Sometimes, your built folder might be in a bad state, clean it and try again.

pxt clean

Updates

Make sure to pull changes from all repos regularly. More instructions are at https://github.com/Microsoft/pxt#running-a-target-from-localhost

Repos

The pxt-microbit target depends on several other repos. The main ones are:

History

See the MakeCode blog.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

You can’t perform that action at this time.