diff --git a/examples/OneWireHubTest/OneWireHubTest.ino b/examples/OneWireHubTest/OneWireHubTest.ino index 0fe4252..f1f57f6 100644 --- a/examples/OneWireHubTest/OneWireHubTest.ino +++ b/examples/OneWireHubTest/OneWireHubTest.ino @@ -84,7 +84,7 @@ void loop() { // following function must be called periodically hub.poll(); - // this part is just for debugging (dbg_HINT in OneWire.h must be enables for output) + // this part is just for debugging (USE_SERIAL_DEBUG in OneWire.h must be enabled for output) if (hub.getError()) hub.printError(); // Blink triggers the state-change diff --git a/examples/Sensor_DS18B20/Sensor_DS18B20.ino b/examples/Sensor_DS18B20/Sensor_DS18B20.ino index a34ad19..a650316 100644 --- a/examples/Sensor_DS18B20/Sensor_DS18B20.ino +++ b/examples/Sensor_DS18B20/Sensor_DS18B20.ino @@ -53,7 +53,7 @@ void loop() { // following function must be called periodically hub.poll(); - // this part is just for debugging (dbg_HINT in OneWire.h must be enables for output) + // this part is just for debugging (USE_SERIAL_DEBUG in OneWire.h must be enabled for output) if (hub.getError()) hub.printError(); // Blink triggers the state-change diff --git a/examples/Sensor_DS2408/Sensor_DS2408.ino b/examples/Sensor_DS2408/Sensor_DS2408.ino index 2f93f46..55c1dc3 100644 --- a/examples/Sensor_DS2408/Sensor_DS2408.ino +++ b/examples/Sensor_DS2408/Sensor_DS2408.ino @@ -48,7 +48,7 @@ void loop() { // following function must be called periodically hub.poll(); - // this part is just for debugging (dbg_HINT in OneWire.h must be enables for output) + // this part is just for debugging (USE_SERIAL_DEBUG in OneWire.h must be enabled for output) if (hub.getError()) hub.printError(); // Blink triggers the state-change diff --git a/examples/debug-codesize-4slaves/debug-codesize-4slaves.ino b/examples/debug-codesize-4slaves/debug-codesize-4slaves.ino index ca3d1cb..9e5593b 100644 --- a/examples/debug-codesize-4slaves/debug-codesize-4slaves.ino +++ b/examples/debug-codesize-4slaves/debug-codesize-4slaves.ino @@ -22,7 +22,7 @@ auto ds2401b = DS2401( 0x01, 0x00, 0x0D, 0x24, 0x01, 0x00, 0x0B ); bool blinking() { - const uint32_t interval = 500; // interval at which to blink (milliseconds) + const uint32_t interval = 5000; // interval at which to blink (milliseconds) static uint32_t nextMillis = millis(); // will store next time LED will updated if (millis() > nextMillis)