From 71496c977f32ab98a8f862a02ed9b194a733234e Mon Sep 17 00:00:00 2001 From: Karlduino Date: Thu, 24 Dec 2015 22:00:13 -0600 Subject: [PATCH] Yun example: change one Serial -> Console --- examples/mqtt_yun/mqtt_yun.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mqtt_yun/mqtt_yun.ino b/examples/mqtt_yun/mqtt_yun.ino index b02d06d..b4d39b9 100644 --- a/examples/mqtt_yun/mqtt_yun.ino +++ b/examples/mqtt_yun/mqtt_yun.ino @@ -95,7 +95,7 @@ void loop() { // ping the server to keep the mqtt connection alive if(! mqtt.ping()) { - Serial.println(F("MQTT Ping failed.")); + Console.println(F("MQTT Ping failed.")); } delay(1000);