Open Lighting Architecture
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DmxTriDevice.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  * DmxTriDevice.h
17  * The Jese DMX-TRI device.
18  * Copyright (C) 2010 Simon Newton
19  */
20 
21 #ifndef PLUGINS_USBPRO_DMXTRIDEVICE_H_
22 #define PLUGINS_USBPRO_DMXTRIDEVICE_H_
23 
24 #include <string>
25 #include "ola/DmxBuffer.h"
26 #include "plugins/usbpro/DmxTriWidget.h"
27 #include "plugins/usbpro/UsbSerialDevice.h"
28 
29 namespace ola {
30 namespace plugin {
31 namespace usbpro {
32 
33 
34 /*
35  * An DMX TRI Device
36  */
38  public:
40  const string &name,
41  DmxTriWidget *widget,
42  uint16_t esta_id,
43  uint16_t device_id,
44  uint32_t serial);
45  ~DmxTriDevice() {}
46 
47  string DeviceId() const { return m_device_id; }
48  void PrePortStop();
49 
50  private:
51  string m_device_id;
52  DmxTriWidget *m_tri_widget;
53 };
54 
55 
56 /*
57  * A single output port per device
58  */
60  public:
62  DmxTriWidget *widget,
63  const string &serial);
64 
66 
67  bool WriteDMX(const DmxBuffer &buffer, uint8_t priority);
68  string Description() const { return m_serial; }
69 
70  void SendRDMRequest(const ola::rdm::RDMRequest *request,
71  ola::rdm::RDMCallback *callback) {
72  m_tri_widget->SendRDMRequest(request, callback);
73  }
74 
75  void RunFullDiscovery(ola::rdm::RDMDiscoveryCallback *callback) {
76  m_tri_widget->RunFullDiscovery(callback);
77  }
78 
79  void RunIncrementalDiscovery(ola::rdm::RDMDiscoveryCallback *callback) {
80  m_tri_widget->RunIncrementalDiscovery(callback);
81  }
82 
83  private:
84  DmxTriWidget *m_tri_widget;
85  const string m_serial;
86 };
87 } // namespace usbpro
88 } // namespace plugin
89 } // namespace ola
90 #endif // PLUGINS_USBPRO_DMXTRIDEVICE_H_