supla-device
Loading...
Searching...
No Matches
home_screen_content.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_HOME_SCREEN_CONTENT_H_
5#define SRC_SUPLA_NETWORK_HTML_HOME_SCREEN_CONTENT_H_
6
7#include <supla/network/html/select_input_parameter.h>
8
9namespace Supla {
10
11namespace Html {
13 public:
14 explicit HomeScreenContentParameters(const char *label);
15 void onProcessingEnd() override;
16 void initFields(uint64_t fieldBits);
17
18 private:
19 bool channelConfigChanged = false;
20};
21
22} // namespace Html
23} // namespace Supla
24
25#endif // SRC_SUPLA_NETWORK_HTML_HOME_SCREEN_CONTENT_H_
Definition home_screen_content.h:12
Definition select_input_parameter.h:23