fadecandy_driver.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Eurotec, Netherlands
3  * All rights reserved.
4  *
5  * Author: Jad Haj Mustafa
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include <iomanip>
36 
37 #include "./fadecandy_driver.h"
38 
40 {
41 constexpr int USB_PACKET_SIZE = 64;
42 constexpr int USB_PRODUCT_ID = 0x607a;
43 constexpr int USB_VENDOR_ID = 0x1d50;
44 constexpr int USB_ENDPOINT = 1;
45 constexpr int INTERFACE_NO = 0x00;
46 
48 {
49  int r = libusb_init(&context_);
50  if (r < 0)
51  {
52  throw std::runtime_error("Could not start USB session.");
53  }
54 }
55 
57 {
58  libusb_exit(context_);
59 }
60 
62 {
64 
65  // Find usb device.
66  libusb_device_descriptor fadecandy_device_descriptor = findUsbDevice();
67 
68  dev_handle_ = libusb_open_device_with_vid_pid(context_, USB_VENDOR_ID, USB_PRODUCT_ID);
69 
70  if (dev_handle_ == NULL)
71  {
72  throw std::runtime_error("Could not open device.");
73  }
74 
75  // Check if kernel driver, detach
76  if (libusb_kernel_driver_active(dev_handle_, INTERFACE_NO) == 1)
77  {
78  if (libusb_detach_kernel_driver(dev_handle_, INTERFACE_NO) != 0)
79  {
80  dev_handle_ = NULL;
81  throw std::runtime_error("Could not detach kernel driver.");
82  }
83  }
84 
85  // Claim interface
86  int r = libusb_claim_interface(dev_handle_, INTERFACE_NO);
87  if (r < 0)
88  {
89  dev_handle_ = NULL;
90  throw std::runtime_error("Could not claim device interface.");
91  }
92 
93  unsigned char serial[USB_PACKET_SIZE];
94  libusb_get_string_descriptor_ascii(dev_handle_, fadecandy_device_descriptor.iSerialNumber, serial, USB_PACKET_SIZE);
95  std::string serial_number = reinterpret_cast<char*>(serial);
96 
97  // Prepare command
98  int actual_written;
99  const int timeout = 10000;
100 
101  std::vector<int> array = makeDefaultLookupTable();
102  std::vector<std::vector<unsigned char>> packets = makeLookupTablePackets(array, array, array);
103  for (auto& packet : packets)
104  {
105  r = libusb_bulk_transfer(dev_handle_, USB_ENDPOINT, packet.data(), USB_PACKET_SIZE, &actual_written, timeout);
106  if (r != 0 && actual_written != USB_PACKET_SIZE)
107  {
108  dev_handle_ = NULL;
109  throw std::runtime_error("Failed to write data on device.");
110  }
111  }
112 
113  return serial_number;
114 }
115 
117 {
118  return dev_handle_ != NULL;
119 }
120 
121 void FadecandyDriver::setColors(std::vector<std::vector<Color>> led_colors)
122 {
123  if (!isConnected())
124  {
125  throw std::runtime_error("Not connected");
126  }
127 
128  std::vector<std::vector<unsigned char>> usb_packets = makeVideoUsbPackets(led_colors);
129  for (auto& usb_packet : usb_packets)
130  {
131  int actual_written;
132  const int timeout = 10000;
133  int r =
134  libusb_bulk_transfer(dev_handle_, USB_ENDPOINT, usb_packet.data(), USB_PACKET_SIZE, &actual_written, timeout);
135  if (r != 0 || actual_written != USB_PACKET_SIZE)
136  {
138  throw std::runtime_error("Could not write on the driver.");
139  }
140  }
141 }
142 
143 libusb_device_descriptor FadecandyDriver::findUsbDevice()
144 {
145  libusb_device** device_list = nullptr;
146  libusb_device_descriptor fadecandy_device_descriptor;
147 
148  unsigned count = libusb_get_device_list(context_, &device_list);
149  for (size_t idx = 0; idx < count; ++idx)
150  {
151  libusb_device* device = device_list[idx];
152  libusb_device_descriptor desc;
153 
154  int r = libusb_get_device_descriptor(device, &desc);
155  if (r < 0)
156  {
157  libusb_free_device_list(device_list, count);
158  throw std::runtime_error("Could not get device descriptor.");
159  }
160  if (desc.idVendor == USB_VENDOR_ID && desc.idProduct == USB_PRODUCT_ID)
161  {
162  fadecandy_device_descriptor = desc;
163  }
164  }
165  libusb_free_device_list(device_list, count);
166  return fadecandy_device_descriptor;
167 }
168 
170 {
171  if (isConnected())
172  {
173  int r = libusb_release_interface(dev_handle_, INTERFACE_NO);
174  if (r < 0)
175  {
176  dev_handle_ = NULL;
177  throw std::runtime_error("Could not release device; the device might be disconnected.");
178  }
179  libusb_close(dev_handle_);
180  dev_handle_ = NULL;
181  }
182 }
183 } // namespace fadecandy_driver
fadecandy_driver::USB_PACKET_SIZE
constexpr int USB_PACKET_SIZE
Definition: fadecandy_driver.cpp:41
fadecandy_driver::FadecandyDriver::findUsbDevice
libusb_device_descriptor findUsbDevice()
findUsbDevice Search the fadcandy device with particular vendor and product id
Definition: fadecandy_driver.cpp:143
fadecandy_driver::FadecandyDriver::~FadecandyDriver
~FadecandyDriver()
Definition: fadecandy_driver.cpp:56
fadecandy_driver::FadecandyDriver::connect
std::string connect()
connect Initialize the Fadecandy device
Definition: fadecandy_driver.cpp:61
fadecandy_driver::makeVideoUsbPackets
std::vector< std::vector< unsigned char > > makeVideoUsbPackets(const std::vector< std::vector< Color >> &led_array_colors)
makeVideoUsbPackets Construct the USB packets to set all LED strips to the given colors....
Definition: util.cpp:78
fadecandy_driver::FadecandyDriver::dev_handle_
libusb_device_handle * dev_handle_
dev_handle_ USB device handle
Definition: fadecandy_driver.h:75
fadecandy_driver.h
fadecandy_driver::USB_ENDPOINT
constexpr int USB_ENDPOINT
Definition: fadecandy_driver.cpp:44
fadecandy_driver::makeDefaultLookupTable
std::vector< int > makeDefaultLookupTable()
makeLookupTablePackets Return lookup tables as 3 lists of lookup values - one for the red channel,...
Definition: util.cpp:221
fadecandy_driver::FadecandyDriver::FadecandyDriver
FadecandyDriver()
Definition: fadecandy_driver.cpp:47
fadecandy_driver::FadecandyDriver::setColors
void setColors(std::vector< std::vector< Color >> led_colors)
setColors Transfer the LED color stream to the driver
Definition: fadecandy_driver.cpp:121
fadecandy_driver::USB_VENDOR_ID
constexpr int USB_VENDOR_ID
Definition: fadecandy_driver.cpp:43
fadecandy_driver::USB_PRODUCT_ID
constexpr int USB_PRODUCT_ID
Definition: fadecandy_driver.cpp:42
fadecandy_driver::INTERFACE_NO
constexpr int INTERFACE_NO
Definition: fadecandy_driver.cpp:45
fadecandy_driver
Definition: fadecandy_driver.cpp:39
fadecandy_driver::FadecandyDriver::isConnected
bool isConnected()
isConnected
Definition: fadecandy_driver.cpp:116
fadecandy_driver::makeLookupTablePackets
std::vector< std::vector< unsigned char > > makeLookupTablePackets(const std::vector< int > &red_lookup_values, const std::vector< int > &green_lookup_values, const std::vector< int > &blue_lookup_values)
makeLookupTablePackets Create USB packets for a simple color lookup table. The entire red lookup tabl...
Definition: util.cpp:152
fadecandy_driver::FadecandyDriver::context_
libusb_context * context_
context_ Lib USB Context
Definition: fadecandy_driver.h:70
fadecandy_driver::FadecandyDriver::releaseInterface
void releaseInterface()
releaseInterface Release fadecandy device interface
Definition: fadecandy_driver.cpp:169


fadecandy_driver
Author(s):
autogenerated on Wed Mar 2 2022 00:19:01