Difference between revisions of "Insteon PLM Ruby Code 350"
From LinuxMCE
(Updated to support X10) |
Langstonius (Talk | contribs) |
||
Line 13: | Line 13: | ||
$recvbuff = plmparse($recvbuff) | $recvbuff = plmparse($recvbuff) | ||
</pre> | </pre> | ||
+ | [[category: Insteon]] |
Revision as of 04:02, 21 June 2008
#### Written by Dan Damron #### #350 Process Incoming Data #### buff = '' #$recvbuff = "" while(true) buff=conn_.Recv(128,50) if(buff.length() == 0) break end $recvbuff = $recvbuff + buff end debugin($recvbuff) $recvbuff = plmparse($recvbuff)