diff options
author | Ben Connors <benconnors@outlook.com> | 2019-07-02 16:29:53 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-07-02 16:30:06 -0400 |
commit | 4b803acbb9b4c50efe8bc11efbfb57590ea76af2 (patch) | |
tree | 9b07c346bd747626f20da99f25bfa3c8586f85bb | |
parent | 9466bf8d90063b2add9c099cd7f4133bb1ddd617 (diff) |
Fix OLA output
- Index from 0 instead of 1
-rw-r--r-- | blc/ola.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -18,6 +18,7 @@ class OLAOutput(LightingOutput): send = set() for c, v in values: univ, addr = c + addr -= 1 if univ in self.universe_map: au = self.universe_map[univ] else: |