Open Lighting Architecture 0.10.9
Loading...
Searching...
No Matches
VellemanK8062.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 * VellemanK8062.h
17 * The synchronous and asynchronous Velleman widgets.
18 * Copyright (C) 2014 Simon Newton
19 */
20
21#ifndef PLUGINS_USBDMX_VELLEMANK8062_H_
22#define PLUGINS_USBDMX_VELLEMANK8062_H_
23
24#include <libusb.h>
25#include <memory>
26#include <string>
27
28#include "libs/usb/LibUsbAdaptor.h"
29#include "ola/DmxBuffer.h"
30#include "ola/base/Macro.h"
31#include "ola/thread/Mutex.h"
32#include "plugins/usbdmx/Widget.h"
33
34namespace ola {
35namespace plugin {
36namespace usbdmx {
37
42 public:
43 explicit VellemanK8062(ola::usb::LibUsbAdaptor *adaptor,
44 libusb_device *usb_device)
45 : SimpleWidget(adaptor, usb_device) {
46 }
47};
48
55 public:
62 libusb_device *usb_device);
63
64 bool Init();
65
66 bool SendDMX(const DmxBuffer &buffer);
67
68 private:
69 std::auto_ptr<class VellemanThreadedSender> m_sender;
70
72 const SynchronousVellemanK8062 &operator=(const SynchronousVellemanK8062 &) = delete;
73};
74
79 public:
86 libusb_device *usb_device);
87
88 bool Init();
89
90 bool SendDMX(const DmxBuffer &buffer);
91
92 private:
93 std::auto_ptr<class VellemanAsyncUsbSender> m_sender;
94
96 const AsynchronousVellemanK8062 &operator=(const AsynchronousVellemanK8062 &) = delete;
97};
98} // namespace usbdmx
99} // namespace plugin
100} // namespace ola
101#endif // PLUGINS_USBDMX_VELLEMANK8062_H_
A class used to hold a single universe of DMX data.
Helper macros.
Used to hold a single universe of DMX data.
Definition DmxBuffer.h:49
An Velleman widget that uses asynchronous libusb operations.
Definition VellemanK8062.h:78
bool SendDMX(const DmxBuffer &buffer)
Send DMX data from this widget.
Definition VellemanK8062.cpp:512
bool Init()
Initialize the widget.
Definition VellemanK8062.cpp:508
AsynchronousVellemanK8062(ola::usb::LibUsbAdaptor *adaptor, libusb_device *usb_device)
Create a new AsynchronousVellemanK8062.
Definition VellemanK8062.cpp:501
A base simple widget class.
Definition Widget.h:66
SimpleWidget(ola::usb::LibUsbAdaptor *adaptor, libusb_device *usb_device)
Create a new SimpleWidget.
Definition Widget.h:73
An Velleman widget that uses synchronous libusb operations.
Definition VellemanK8062.h:54
SynchronousVellemanK8062(ola::usb::LibUsbAdaptor *adaptor, libusb_device *usb_device)
Create a new SynchronousVellemanK8062.
Definition VellemanK8062.cpp:298
bool SendDMX(const DmxBuffer &buffer)
Send DMX data from this widget.
Definition VellemanK8062.cpp:323
bool Init()
Initialize the widget.
Definition VellemanK8062.cpp:304
The interface for the Velleman Widgets.
Definition VellemanK8062.h:41
Wraps calls to libusb so we can test the code.
Definition LibUsbAdaptor.h:36
The namespace containing all OLA symbols.
Definition Credentials.cpp:44