Merge remote-tracking branch 'origin/master'

This commit is contained in:
Matthias L. Jugel
2016-10-19 19:08:52 +02:00
19 changed files with 307 additions and 177 deletions

16
libs/core/enums.d.ts vendored
View File

@ -312,6 +312,22 @@ declare namespace motors {
//% block=9600
BaudRate9600 = 9600,
}
declare enum Delimiters {
//% block="new line"
NewLine = 1,
//% block=","
Comma = 2,
//% block="$"
Dollar = 3,
//% block=":"
Colon = 4,
//% block="."
Fullstop = 5,
//% block="#"
Hash = 6,
}
declare namespace serial {
}