adding stubs for bluetooth functions

This commit is contained in:
Peli de Halleux 2016-09-15 09:40:58 -07:00
parent dbaf406703
commit b7da28285e
1 changed files with 16 additions and 0 deletions

View File

@ -135,5 +135,21 @@ namespace pxsim.bluetooth {
export function startButtonService(): void {
// TODO
}
export function startUartService(): void {
// TODO
}
export function uartWrite(s : string): void {
// TODO
}
export function uartRead(): string {
// TODO
return ""
}
export function onBluetoothConnected(a : RefAction) {
// TODO
}
export function onBluetoothDisconnected(a : RefAction) {
// TODO
}
}