Starting sensor support

This commit is contained in:
Michal Moskal
2017-07-08 11:16:12 +01:00
parent b86a552a5b
commit 51b22e2d93
6 changed files with 130 additions and 1 deletions

36
libs/base/enums.d.ts vendored Normal file
View File

@ -0,0 +1,36 @@
// Auto-generated. Do not edit.
declare enum NumberFormat {
Int8LE = 1,
UInt8LE = 2,
Int16LE = 3,
UInt16LE = 4,
Int32LE = 5,
Int8BE = 6,
UInt8BE = 7,
Int16BE = 8,
UInt16BE = 9,
Int32BE = 10,
UInt32LE = 11,
UInt32BE = 12,
Float32LE = 13,
Float64LE = 14,
Float32BE = 15,
Float64BE = 16,
}
declare enum ValType {
Undefined = 0,
Boolean = 1,
Number = 2,
String = 3,
Object = 4,
Function = 5,
}
declare namespace serial {
}
// Auto-generated. Do not edit. Really.