diff --git a/things/things.ino b/things/things.ino index b46763c..dbed565 100644 --- a/things/things.ino +++ b/things/things.ino @@ -25,7 +25,12 @@ DeviceDht deviceDht(PIN_DHT, TYPE_DHT); #define PIN_POWER D0 DeviceIrRx deviceIrRx(PIN_IRRX, PIN_POWER); -Device* devices[] = { &deviceLed, &deviceLdr, &deviceDht, &deviceIrRx }; +Device* devices[] = { + &deviceLed, + &deviceLdr, + &deviceDht, + &deviceIrRx, +}; void setupHandler() { for (int i = 0; i < sizeof(devices) / sizeof(*devices); i++) {