updated category colors theme

This commit is contained in:
Peli de Halleux
2016-05-19 11:59:57 -07:00
parent f2bab5d122
commit 0b226bc9aa
12 changed files with 35 additions and 37 deletions

View File

@ -10,7 +10,6 @@ namespace serial {
//% help=serial/read-line
//% blockId=serial_read_line block="serial read line"
//% weight=20
//% async
StringData* readLine() {
return uBit.serial.readUntil(ManagedString("\n")).leakData();
}
@ -21,7 +20,6 @@ namespace serial {
//% help=serial/write-string
//% weight=87
//% blockId=serial_writestring block="serial write string %text"
//% async
void writeString(StringData *text) {
uBit.serial.send(ManagedString(text));
}