diff --git a/things/HardwareSonoff.h b/things/HardwareSonoff.h index 16752f0..c185534 100644 --- a/things/HardwareSonoff.h +++ b/things/HardwareSonoff.h @@ -8,19 +8,16 @@ * - Upload Speed: "1152200" */ -#include "DeviceButton.h" #include "DeviceRelay.h" const char* FWNAME = "things@Sonoff"; const byte PIN_BUTTON = 0; -DeviceButton deviceButton(PIN_BUTTON); const byte PIN_RELAY = 12; DeviceRelay deviceRelay(PIN_RELAY, "relay"); Device* devices[] = { - &deviceButton, &deviceRelay, };