From 5b398f1de41bde94074c104cae52b18da20c6fe2 Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Wed, 20 Apr 2016 10:34:46 +0200 Subject: [PATCH] reformat, to ease configuration --- things/things.ino | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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++) {