Open Lighting Architecture  Latest Git
NanoleafDevice.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Library General Public License for more details.
11  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15  *
16  * NanoleafDevice.h
17  * Interface for the Nanoleaf device
18  * Copyright (C) 2017 Peter Newman
19  */
20 
21 #ifndef PLUGINS_NANOLEAF_NANOLEAFDEVICE_H_
22 #define PLUGINS_NANOLEAF_NANOLEAFDEVICE_H_
23 
24 #include <string>
25 #include <vector>
26 
28 #include "olad/Device.h"
29 
30 namespace ola {
31 namespace plugin {
32 namespace nanoleaf {
33 
34 class NanoleafDevice: public ola::Device {
35  public:
37  class Preferences *preferences,
38  class PluginAdaptor *plugin_adaptor,
39  const ola::network::IPV4Address &controller);
40 
41  std::string DeviceId() const;
42 
43  protected:
44  bool StartHook();
45  void PrePortStop();
46  void PostPortStop();
47 
48  private:
49  class NanoleafNode *m_node;
50  class Preferences *m_preferences;
51  class PluginAdaptor *m_plugin_adaptor;
52  const ola::network::IPV4Address m_controller;
53 
54  void SetDefaults();
55  std::string IPPortKey() const;
56  std::string PanelsKey() const;
57 
58  static const uint16_t DEFAULT_STREAMING_PORT = 60221;
59 };
60 } // namespace nanoleaf
61 } // namespace plugin
62 } // namespace ola
63 #endif // PLUGINS_NANOLEAF_NANOLEAFDEVICE_H_
Definition: NanoleafNode.h:40
std::string DeviceId() const
The device ID.
Definition: NanoleafDevice.cpp:112
Definition: Device.h:95
void PrePortStop()
Definition: NanoleafDevice.cpp:141
Represents a IPv4 Address.
Definition: IPV4Address.h:55
Definition: PluginAdaptor.h:41
Represents an IPv4 Address.
Definition: Preferences.h:147
Definition: NanoleafDevice.h:34
The namespace containing all OLA symbols.
Definition: Credentials.cpp:44
Definition: Plugin.h:38
bool StartHook()
Called during Start().
Definition: NanoleafDevice.cpp:70