More example usage, commented out

This commit is contained in:
sparky8512 2020-12-23 07:25:30 -08:00 committed by GitHub
parent d384481e46
commit 04b25d2da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,4 +14,11 @@ with grpc.insecure_channel('192.168.100.1:9200') as channel:
stub = spacex.api.device.device_pb2_grpc.DeviceStub(channel) stub = spacex.api.device.device_pb2_grpc.DeviceStub(channel)
response = stub.Handle(spacex.api.device.device_pb2.Request(get_status={})) response = stub.Handle(spacex.api.device.device_pb2.Request(get_status={}))
# Dump everything
print(response) print(response)
## Just the software version
#print(response.dish_get_status.device_info.software_version)
## Check if connected
#print("Connected" if response.dish_get_status.state == spacex.api.device.dish_pb2.DishState.CONNECTED else "Not connected")