Exemplo n.º 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)
Exemplo n.º 3
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

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

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

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

        self.registerOutput("opencv", {"x": 0, "y": 0})
Exemplo n.º 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
Exemplo n.º 8
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
Exemplo n.º 9
0
    def __init__(self, name, API):
        IPCThread.__init__(self, name, API)

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