From 7f3b8d427bd58955acd9892075fe9cd8e9934141 Mon Sep 17 00:00:00 2001 From: Gus Class Date: Thu, 7 May 2020 14:52:42 -0700 Subject: [PATCH] Add example command for docs --- iot/api-client/manager/manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/iot/api-client/manager/manager.py b/iot/api-client/manager/manager.py index 27e1fa075adf..1701940b0494 100644 --- a/iot/api-client/manager/manager.py +++ b/iot/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)