From 23d3c314c285ed04c704acdbaa8943f6b3123f78 Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Fri, 23 Dec 2016 00:02:50 +0100 Subject: [PATCH] deconfigure button --- things/HardwareSonoff.h | 3 --- 1 file changed, 3 deletions(-) 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, };