OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
dmx_led_parameter.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3#if defined(OSSIA_PROTOCOL_ARTNET)
4#include <ossia/detail/flat_map.hpp>
5#include <ossia/network/common/device_parameter.hpp>
6
7#include <cstdint>
8
9namespace ossia::net
10{
11struct dmx_buffer;
12class OSSIA_EXPORT dmx_led_parameter : public device_parameter
13{
14public:
15 dmx_led_parameter(
16 net::node_base& node, dmx_buffer& buffer, const unsigned int channel,
17 int8_t bytes_per_pixel, int num_pixels);
18 ~dmx_led_parameter();
19 int8_t m_bytes{};
20
21private:
22 void device_update_value() override;
23
24 dmx_buffer& m_buffer;
25 const uint32_t m_channel{};
26
27 int8_t m_bpp{};
28 int m_num_pixels{};
29};
30
31}
32#endif