Add some motor support

This commit is contained in:
Michal Moskal
2017-07-07 15:15:36 +01:00
parent ce3fe646fd
commit 99a25e07a7
5 changed files with 136 additions and 2 deletions

View File

@ -133,5 +133,14 @@ declare namespace screen {
//% shim=screen::setFont
function setFont(font: ScreenFont): void;
}
declare namespace output {
/**
* Create a new zero-initialized buffer.
* @param size number of bytes in the buffer
*/
//% shim=output::createBuffer
function createBuffer(size: int32): Buffer;
}
// Auto-generated. Do not edit. Really.