supla-device
All Classes Functions Variables Pages
correction.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 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15*/
16
17#ifndef SRC_SUPLA_CORRECTION_H_
18#define SRC_SUPLA_CORRECTION_H_
19
20#include <stdint.h>
21
22namespace Supla {
23
24class Correction {
25 public:
26 static void add(uint8_t channelNumber,
27 double correction,
28 bool forSecondaryValue = false);
29 static double get(uint8_t channelNumber, bool forSecondaryValue = false);
30 static Correction *getInstance(uint8_t channelNumber,
31 bool forSecondaryValue = false);
32 static void clear();
33
34 protected:
35 Correction(uint8_t channelNumber, double correction, bool forSecondaryValue);
36 ~Correction();
37
38 static Correction *first;
39
40 double correction = 0;
41 Correction *next = nullptr;
42
43 uint8_t channelNumber = 0;
44 bool forSecondaryValue = false;
45};
46
47}; // namespace Supla
48
49#endif // SRC_SUPLA_CORRECTION_H_