Added lighting preset recall on backend and frontend, fixed things in other scripts - things should *mostly* be working now
This commit is contained in:
parent
61a8aa8ebc
commit
d00651a66c
14 changed files with 851 additions and 74 deletions
|
@ -69,9 +69,11 @@ class BarcoRLMW_TCP:
|
|||
|
||||
def parse_response(self, line):
|
||||
matches = RE_STATUS.findall(line)
|
||||
|
||||
if len(matches) == 0:
|
||||
return None
|
||||
match = matches[0]
|
||||
|
||||
if len(match) == 2:
|
||||
return ACK(match[1])
|
||||
if len(match) == 3:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue