-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41584fa
commit f82bbc5
Showing
49 changed files
with
157 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
|
||
import os | ||
import unittest | ||
|
||
from ola import PidStore | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
|
||
|
||
from __future__ import print_function | ||
|
||
import textwrap | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,12 @@ | |
"""Fetch some ArtNet parameters.""" | ||
|
||
from __future__ import print_function | ||
|
||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
from ola import ArtNetConfigMessages_pb2 | ||
import sys | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,12 @@ | |
"""List candidate ports for patching.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
|
||
import argparse | ||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Marchi)' | ||
|
||
wrapper = None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,11 @@ | |
"""Lists the devices / ports.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
|
||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
wrapper = None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,12 @@ | |
"""Gets a current frame of DMX for a universe.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
|
||
import getopt | ||
import textwrap | ||
import sys | ||
import textwrap | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,13 @@ | |
"""Patch and unpatch ports.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
from ola.OlaClient import OlaClient | ||
|
||
import argparse | ||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
from ola.OlaClient import OlaClient | ||
|
||
__author__ = '[email protected] (Simon Marchi)' | ||
|
||
wrapper = None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,12 @@ | |
"""Lists the loaded plugins.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
|
||
import getopt | ||
import textwrap | ||
import sys | ||
import textwrap | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,11 @@ | |
'''Show the UIDs for a universe.''' | ||
|
||
from __future__ import print_function | ||
|
||
import getopt | ||
import textwrap | ||
import sys | ||
import textwrap | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,18 +19,21 @@ | |
'''Get a PID from a UID.''' | ||
|
||
from __future__ import print_function | ||
|
||
import cmd | ||
import getopt | ||
import os.path | ||
import readline | ||
import sys | ||
import textwrap | ||
from ola import PidStore | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
from ola.OlaClient import OlaClient, RDMNack | ||
from ola.RDMAPI import RDMAPI | ||
from ola.UID import UID | ||
|
||
from ola import PidStore | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,9 @@ | |
"""Receive DMX data.""" | ||
|
||
import getopt | ||
import textwrap | ||
import sys | ||
import textwrap | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,12 @@ | |
"""Send some DMX data.""" | ||
|
||
from __future__ import print_function | ||
from ola.ClientWrapper import ClientWrapper | ||
|
||
import array | ||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
wrapper = None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,11 @@ | |
"""Lists the active universes.""" | ||
|
||
from __future__ import print_function | ||
|
||
import sys | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
from ola.OlaClient import Universe | ||
import sys | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,14 @@ | |
import pprint | ||
import sys | ||
import textwrap | ||
from ola import PidStore | ||
|
||
from ola.ClientWrapper import ClientWrapper | ||
from ola.OlaClient import OlaClient, RDMNack | ||
from ola.RDMAPI import RDMAPI | ||
from ola.UID import UID | ||
|
||
from ola import PidStore | ||
|
||
'''Quick script to collect the settings from a rig.''' | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,13 @@ | |
import socket | ||
import struct | ||
import sys | ||
from ola.rpc.StreamRpcChannel import StreamRpcChannel | ||
|
||
from ola.rpc.SimpleRpcController import SimpleRpcController | ||
from ola import Ola_pb2 | ||
from ola.rpc.StreamRpcChannel import StreamRpcChannel | ||
from ola.UID import UID | ||
|
||
from ola import Ola_pb2 | ||
|
||
"""The client used to communicate with the Ola Server.""" | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,19 +17,20 @@ | |
# Holds all the information about RDM PIDs | ||
|
||
from __future__ import print_function | ||
|
||
import binascii | ||
import math | ||
import os | ||
import socket | ||
import struct | ||
import sys | ||
|
||
from google.protobuf import text_format | ||
from ola import PidStoreLocation | ||
from ola import Pids_pb2 | ||
from ola.MACAddress import MACAddress | ||
from ola import RDMConstants | ||
from ola.UID import UID | ||
|
||
from ola import Pids_pb2, PidStoreLocation, RDMConstants | ||
|
||
"""The PID Store.""" | ||
|
||
__author__ = '[email protected] (Simon Newton)' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.