supla-device
Loading...
Searching...
No Matches
button_aggregator.h
1/*
2 Copyright (C) AC SOFTWARE SP. Z O.O
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17*/
18
19#ifndef SRC_SUPLA_CONTROL_BUTTON_AGGREGATOR_H_
20#define SRC_SUPLA_CONTROL_BUTTON_AGGREGATOR_H_
21
22#include <supla/control/button.h>
23#include <stdint.h>
24
25#define BUTTON_AGGREGATOR_MAX_BUTTONS 10
26
27namespace Supla {
28namespace Control {
29
30class ButtonAggregator : public Supla::Control::Button {
31 public:
32 ButtonAggregator();
33 virtual ~ButtonAggregator();
34
35 void onTimer() override;
36 void handleAction(int event, int action) override;
37 bool addButton(Supla::Control::Button* button);
38
39 protected:
40 Supla::Control::Button* buttons[BUTTON_AGGREGATOR_MAX_BUTTONS] = {};
41 int pressCount = 0;
42 int buttonCount = 0;
43 bool stateChanged = false;
44 uint32_t allPressedTimestamp = 0;
45};
46
47} // namespace Control
48} // namespace Supla
49
50#endif // SRC_SUPLA_CONTROL_BUTTON_AGGREGATOR_H_
void onTimer() override
Method called on timer interupt.
Definition button_aggregator.cpp:33
Definition button.h:30