From 64f7fd8f5f7734d193d80f9d34cf13b0b79fd073 Mon Sep 17 00:00:00 2001 From: Gus Class Date: Fri, 8 May 2020 10:56:58 -0700 Subject: [PATCH] Add example command for docs [(#3708)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/3708) --- samples/api-client/manager/manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/api-client/manager/manager.py b/samples/api-client/manager/manager.py index 27e1fa07..1701940b 100644 --- a/samples/api-client/manager/manager.py +++ b/samples/api-client/manager/manager.py @@ -618,6 +618,7 @@ def send_command( device_path = client.device_path( project_id, cloud_region, registry_id, device_id) + # command = 'Hello IoT Core!' data = command.encode('utf-8') return client.send_command_to_device(device_path, data)