7 #ifdef libblinkstick_EXPORTS
8 #define BLINKSTICK_API __declspec(dllexport)
10 #define BLINKSTICK_API
13 #define BLINKSTICK_API
35static int const BLINKSTICK_VENDOR_ID = 8352;
36static int const BLINKSTICK_PRODUCT_ID = 16869;
38static int const BLINKSTICK_MODE_MSG_SIZE = 2;
39static int const BLINKSTICK_SINGLE_LED_MSG_SIZE = 4;
40static int const BLINKSTICK_INDEXED_LED_MSG_PACKET_SIZE = 6;
BLINKSTICK_API void blinkstick_destroy(blinkstick_device *device)
Frees the given blinkstick device.
Definition libblinkstick.c:285
BLINKSTICK_API bool blinkstick_set_mode(blinkstick_device *blinkstick, enum blinkstick_mode mode)
Set the mode of the blinkstick.
Definition libblinkstick.c:136
BLINKSTICK_API void blinkstick_debug()
Turns on debug logging.
Definition libblinkstick.c:25
BLINKSTICK_API blinkstick_color * blinkstick_get_color(struct blinkstick_device *blinkstick, const int index)
Reads the color from the blinkstick at a given index.
Definition libblinkstick.c:223
blinkstick_mode
Possible blink stick modes (only valid for Blinkstick Pro).
Definition libblinkstick.h:64
BLINKSTICK_API enum blinkstick_mode blinkstick_get_mode(blinkstick_device *blinkstick)
Read the mode currently set on the blinkstick.
Definition libblinkstick.c:153
BLINKSTICK_API blinkstick_device * blinkstick_find()
Find the first blinkstick device on the bus registered with HID.
Definition libblinkstick.c:85
BLINKSTICK_API bool blinkstick_off(blinkstick_device *blinkstick, const int channel, const int index)
Turns off the led at the specified index for the provided device. This is the same as using set_color...
Definition libblinkstick.c:281
struct blinkstick_device blinkstick_device
A blinkstick_device holds a pointer to the hid device and is used when setting colors,...
BLINKSTICK_API blinkstick_device ** blinkstick_find_many(const int count)
Given a count will return a pointer array of blinkstick devices. This will abort if the number found ...
Definition libblinkstick.c:45
BLINKSTICK_API bool blinkstick_set_color(blinkstick_device *blinkstick, const int channel, const int index, const int red, const int green, const int blue)
Sets the LED at the given index and channel to the specified color for the provided device.
Definition libblinkstick.c:170
Definition libblinkstick.h:55
A blinkstick_device holds a pointer to the hid device and is used when setting colors,...
Definition libblinkstick.h:54