Open Lighting Architecture
 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 using std::string;
36 using ola::Device;
37 using std::auto_ptr;
38 
39 class FtdiDmxDevice : public Device {
40  public:
42  const FtdiWidgetInfo &widget_info,
43  unsigned int frequency);
44  ~FtdiDmxDevice();
45 
46  string DeviceId() const { return m_widget->Serial(); }
47  string Description() const { return m_widget_info.Description(); }
48  FtdiWidget* GetDevice() {return m_widget.get(); }
49 
50  protected:
51  bool StartHook();
52 
53  private:
54  auto_ptr<FtdiWidget> m_widget;
55  const FtdiWidgetInfo m_widget_info;
56  unsigned int m_frequency;
57 };
58 } // namespace ftdidmx
59 } // namespace plugin
60 } // namespace ola
61 #endif // PLUGINS_FTDIDMX_FTDIDMXDEVICE_H_