This commit is contained in:
Peli de Halleux 2017-04-17 11:47:43 -07:00
commit 8bfce47800
5 changed files with 8 additions and 2 deletions

View File

@ -32,6 +32,8 @@ If you are using the Google Chrome browser, you can use our extension to get ser
* Restart Chrome and open the [web editor](https://pxt.microbit.org) * Restart Chrome and open the [web editor](https://pxt.microbit.org)
* The serial data will show below the simulator * The serial data will show below the simulator
If the extension is enabled, it will not be possible to access the port/device for the micro:bit from other programs than Chrome.
### Windows ### Windows
You must install a device driver (for the computer to recognize the You must install a device driver (for the computer to recognize the

View File

@ -10,8 +10,7 @@ Fun games to build with your @boardname@.
[{ [{
"name": "Flashing Heart", "name": "Flashing Heart",
"url":"/projects/flashing-heart", "url":"/projects/flashing-heart",
"imageUrl": "/static/mb/projects/a1-display.png", "imageUrl": "/static/mb/projects/a1-display.png"
"cardType": "tutorial"
},{ },{
"name": "Smiley Buttons", "name": "Smiley Buttons",
"url":"/projects/smiley-buttons", "url":"/projects/smiley-buttons",

View File

@ -28,6 +28,7 @@
"BaudRate.BaudRate28800|block": "28800", "BaudRate.BaudRate28800|block": "28800",
"BaudRate.BaudRate300|block": "300", "BaudRate.BaudRate300|block": "300",
"BaudRate.BaudRate38400|block": "38400", "BaudRate.BaudRate38400|block": "38400",
"BaudRate.BaudRate31250|block": "31250",
"BaudRate.BaudRate4800|block": "4800", "BaudRate.BaudRate4800|block": "4800",
"BaudRate.BaudRate57600|block": "57600", "BaudRate.BaudRate57600|block": "57600",
"BaudRate.BaudRate9600|block": "9600", "BaudRate.BaudRate9600|block": "9600",

View File

@ -447,6 +447,8 @@ declare namespace led {
BaudRate57600 = 57600, BaudRate57600 = 57600,
//% block=38400 //% block=38400
BaudRate38400 = 38400, BaudRate38400 = 38400,
//% block=31250
BaudRate31250 = 31250,
//% block=28800 //% block=28800
BaudRate28800 = 28800, BaudRate28800 = 28800,
//% block=19200 //% block=19200

View File

@ -19,6 +19,8 @@ enum BaudRate {
BaudRate57600 = 57600, BaudRate57600 = 57600,
//% block=38400 //% block=38400
BaudRate38400 = 38400, BaudRate38400 = 38400,
//% block=31250
BaudRate31250 = 31250,
//% block=28800 //% block=28800
BaudRate28800 = 28800, BaudRate28800 = 28800,
//% block=19200 //% block=19200