merging ble changes

This commit is contained in:
Peli de Halleux
2016-10-18 21:55:02 -07:00
18 changed files with 305 additions and 175 deletions

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

@ -311,6 +311,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 {
}