Example #1
0
 def __init__(self, name, API):
     IPCThread.__init__(self, name, API)
     source.init(self)
 def __init__(self, name, API):
     IPCThread.__init__(self, name, API)
Example #3
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("servo", { "working": False })
Example #4
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("audio", {"playing": False})
Example #5
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("opencv", {"x": 0, "y": 0})
Example #6
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("opencv", {"x": 0, "y": 0})
Example #7
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("audio", {"playing": False}) # providing default value makes dependants more stable. takes in any dictionary object or another DynamicObject
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput(
            "audio", {"playing": False}
        )  # providing default value makes dependants more stable. takes in any dictionary object or another DynamicObject
Example #9
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

        self.registerOutput("audio", {"playing": False})
Example #10
0
 def __init__(self, name, API):
     IPCThread.__init__(self, name, API)
     source.init(self)