From f518357b8ac9330486c16e393eaf0ce66f789422 Mon Sep 17 00:00:00 2001 From: rdotlee Date: Tue, 28 Mar 2017 14:59:51 -0500 Subject: [PATCH] Update for Analog Read A01 Dash Format --- .../examples/hologram_dash_cloud/hologram_dash_cloud.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/konektdash/libraries/DashExamples/examples/hologram_dash_cloud/hologram_dash_cloud.ino b/konektdash/libraries/DashExamples/examples/hologram_dash_cloud/hologram_dash_cloud.ino index bc1340b..b514ef0 100644 --- a/konektdash/libraries/DashExamples/examples/hologram_dash_cloud/hologram_dash_cloud.ino +++ b/konektdash/libraries/DashExamples/examples/hologram_dash_cloud/hologram_dash_cloud.ino @@ -64,7 +64,7 @@ void loop() { HologramCloud.connect(); //Buffer a message to send to the Hologram Cloud - HologramCloud.print("A0: "); + HologramCloud.print("A01: "); HologramCloud.println(analogRead(A0)); HologramCloud.print("Battery: "); HologramCloud.print(FuelGauge.percentage()); @@ -72,7 +72,7 @@ void loop() { HologramCloud.print("Signal Strength: "); HologramCloud.println(HologramCloud.getSignalStrength()); //Attach tags to the message for advanced routing and processing - HologramCloud.attachTag("A0"); + HologramCloud.attachTag("A01"); HologramCloud.attachTag("Battery"); HologramCloud.attachTag("SignalStrength");