Open Lighting Architecture  0.9.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FtdiDmxDevice.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  * FtdiDmxDevice.h
17  * The FTDI usb chipset DMX plugin for ola
18  * Copyright (C) 2011 Rui Barreiros
19  */
20 
21 #ifndef PLUGINS_FTDIDMX_FTDIDMXDEVICE_H_
22 #define PLUGINS_FTDIDMX_FTDIDMXDEVICE_H_
23 
24 #include <string>
25 #include <memory>
26 #include "ola/DmxBuffer.h"
27 #include "olad/Device.h"
28 #include "olad/Preferences.h"
29 #include "plugins/ftdidmx/FtdiWidget.h"
30 
31 namespace ola {
32 namespace plugin {
33 namespace ftdidmx {
34 
35 class FtdiDmxDevice : public Device {
36  public:
38  const FtdiWidgetInfo &widget_info,
39  unsigned int frequency);
40  ~FtdiDmxDevice();
41 
42  std::string DeviceId() const { return m_widget->Serial(); }
43  std::string Description() const { return m_widget_info.Description(); }
44  FtdiWidget* GetDevice() {return m_widget.get(); }
45 
46  protected:
47  bool StartHook();
48 
49  private:
50  std::auto_ptr<FtdiWidget> m_widget;
51  const FtdiWidgetInfo m_widget_info;
52  unsigned int m_frequency;
53 };
54 } // namespace ftdidmx
55 } // namespace plugin
56 } // namespace ola
57 #endif // PLUGINS_FTDIDMX_FTDIDMXDEVICE_H_