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");