From c4edfb6e40bcdcff8154f8123463ccde69e77618 Mon Sep 17 00:00:00 2001 From: Francois BIOT Date: Sat, 3 Dec 2022 21:27:03 +0100 Subject: [PATCH] fix bug in simple-broker example --- examples/simple-broker/simple-broker.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-broker/simple-broker.ino b/examples/simple-broker/simple-broker.ino index bf88923..1b054bd 100644 --- a/examples/simple-broker/simple-broker.ino +++ b/examples/simple-broker/simple-broker.ino @@ -35,7 +35,7 @@ void setup() Serial << '.'; delay(500); } - Connect << TinyConsole::green << "Connected to " << ssid << "IP address: " << WiFi.localIP() << endl; + Console << TinyConsole::green << "Connected to " << ssid << "IP address: " << WiFi.localIP() << endl; broker.begin(); Console << "Broker ready : " << WiFi.localIP() << " on port " << PORT << endl;