52 throw std::runtime_error(
"Could not start USB session.");
66 libusb_device_descriptor fadecandy_device_descriptor =
findUsbDevice();
72 throw std::runtime_error(
"Could not open device.");
76 if (libusb_kernel_driver_active(
dev_handle_, INTERFACE_NO) == 1)
78 if (libusb_detach_kernel_driver(
dev_handle_, INTERFACE_NO) != 0)
81 throw std::runtime_error(
"Could not detach kernel driver.");
86 int r = libusb_claim_interface(
dev_handle_, INTERFACE_NO);
90 throw std::runtime_error(
"Could not claim device interface.");
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);
99 const int timeout = 10000;
103 for (
auto& packet : packets)
106 if (r != 0 && actual_written != USB_PACKET_SIZE)
109 throw std::runtime_error(
"Failed to write data on device.");
113 return serial_number;
125 throw std::runtime_error(
"Not connected");
129 for (
auto& usb_packet : usb_packets)
132 const int timeout = 10000;
135 if (r != 0 || actual_written != USB_PACKET_SIZE)
138 throw std::runtime_error(
"Could not write on the driver.");
145 libusb_device** device_list =
nullptr;
146 libusb_device_descriptor fadecandy_device_descriptor;
148 unsigned count = libusb_get_device_list(
context_, &device_list);
149 for (
size_t idx = 0; idx < count; ++idx)
151 libusb_device* device = device_list[idx];
152 libusb_device_descriptor desc;
154 int r = libusb_get_device_descriptor(device, &desc);
157 libusb_free_device_list(device_list, count);
158 throw std::runtime_error(
"Could not get device descriptor.");
160 if (desc.idVendor == USB_VENDOR_ID && desc.idProduct == USB_PRODUCT_ID)
162 fadecandy_device_descriptor = desc;
165 libusb_free_device_list(device_list, count);
166 return fadecandy_device_descriptor;
173 int r = libusb_release_interface(
dev_handle_, INTERFACE_NO);
177 throw std::runtime_error(
"Could not release device; the device might be disconnected.");
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...
void releaseInterface()
releaseInterface Release fadecandy device interface
bool isConnected()
isConnected
constexpr int USB_PRODUCT_ID
void setColors(std::vector< std::vector< Color >> led_colors)
setColors Transfer the LED color stream to the driver
libusb_device_handle * dev_handle_
dev_handle_ USB device handle
constexpr int INTERFACE_NO
constexpr int USB_PACKET_SIZE
constexpr int USB_VENDOR_ID
std::vector< int > makeDefaultLookupTable()
makeLookupTablePackets Return lookup tables as 3 lists of lookup values - one for the red channel...
constexpr int USB_ENDPOINT
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. To simplify things, we always send values for all 8 * 64 LEDs. If the physical strips are shorter, or there are less then 8 strips, the extra data doesn't do anything. If the user gives us values for less than the total number of strips, or less than the total number of LEDs in any given strip, all unspecified LEDs are left dark.
libusb_context * context_
context_ Lib USB Context
std::string connect()
connect Initialize the Fadecandy device
libusb_device_descriptor findUsbDevice()
findUsbDevice Search the fadcandy device with particular vendor and product id