supla-device
Loading...
Searching...
No Matches
pwm_frequency_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_PWM_FREQUENCY_PARAMETERS_H_
5#define SRC_SUPLA_NETWORK_HTML_PWM_FREQUENCY_PARAMETERS_H_
6
7#include <supla/network/html_element.h>
8
9namespace Supla {
10class WebSender;
11
12namespace Control {
13class LightingPwmBase;
14} // namespace Control
15
16namespace Html {
17
19 public:
22 void send(Supla::WebSender* sender) override;
23 bool handleResponse(const char* key, const char* value) override;
24
25 private:
26 Supla::Control::LightingPwmBase *rgbCct = nullptr;
27};
28
29} // namespace Html
30} // namespace Supla
31
32#endif // SRC_SUPLA_NETWORK_HTML_PWM_FREQUENCY_PARAMETERS_H_
Definition lighting_pwm_base.h:48
Definition html_element.h:22
Definition pwm_frequency_parameters.h:18
Definition web_sender.h:160