def __init__(self, protoConfig):
super().__init__()
wioChannel = grpc.insecure_channel('localhost:%s' % protoConfig.ports.wioPort)
self.wioStub = sensors_pb2.WioLinkStub(wioChannel)
arduinoChannel = grpc.insecure_channel('localhost:%s' % protoConfig.ports.arduinoPort)
self.arduinoStub = sensors_pb2.ArduinoStub(arduinoChannel)
评论列表
文章目录