UNPKG
@1st-setup/cul
Version:
latest (0.20.2)
0.20.2
0.20.1
0.20.0
0.18.0
Module to interact with Busware CUL / culfw
github.com/hobbyquaker/cul
hobbyquaker/cul
@1st-setup/cul
/
lib
/
tx.js
13 lines
(9 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
// http://sourceforge.net/p/fhem/code/HEAD/tree/trunk/fhem/FHEM/14_CUL_TX.pm
// http://www.f6fbb.org/domo/sensors/tx3_th.php
module
.
exports
.
parse
=
function
(
raw
) {
const
message = {}; message.
protocol
=
'TX'
; message.
raw
= raw;
return
message; };