fix(example): Use Serial in printBoundDevices()

This commit is contained in:
Jan Procházka 2024-12-11 14:35:32 +01:00
parent 07a3e629c8
commit 3a8d4c5244

View file

@ -142,6 +142,6 @@ void loop() {
static uint32_t last_print = 0;
if (millis() - last_print > 30000) {
last_print = millis();
zbSwitch.printBoundDevices();
zbSwitch.printBoundDevices(Serial);
}
}