initial, start porting Python MeterbusLib to node

This commit is contained in:
Wolfgang Hottgenroth
2017-08-09 14:45:17 +02:00
commit d1c969a793
12 changed files with 221 additions and 0 deletions

10
dist/meterbus.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
export declare namespace MeterbusLib {
class Telegram {
private _hexString;
private _telegram;
constructor();
readonly hexString: string;
readonly telegram: number[];
fromHexString(hexString: string): void;
}
}