supla-device
Loading...
Searching...
No Matches
rgbw_button_parameters.h
1// SPDX-FileCopyrightText: AC SOFTWARE SP. Z O.O.
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#ifndef SRC_SUPLA_NETWORK_HTML_RGBW_BUTTON_PARAMETERS_H_
5#define SRC_SUPLA_NETWORK_HTML_RGBW_BUTTON_PARAMETERS_H_
6
7#include <supla/network/html/select_input_parameter.h>
8
9namespace Supla {
10
11namespace Html {
12
14 public:
15 // if id is -1, it is applied to all rgbw elements
16 // otherwise it should be channel number
17 explicit RgbwButtonParameters(int id = -1, const char *label = nullptr);
18
19 protected:
20};
21
22}; // namespace Html
23}; // namespace Supla
24
25
26#endif // SRC_SUPLA_NETWORK_HTML_RGBW_BUTTON_PARAMETERS_H_
Definition rgbw_button_parameters.h:13
Definition select_input_parameter.h:23