Skip to content
Snippets Groups Projects
dmx.h 296 B
Newer Older
 * Copyright 2022 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

class DMX {
	private:
		DMX(const DMX &copy);

	public:
		static unsigned char const num_frames = 32;
		unsigned char frames[num_frames];

		DMX() {}

		void setup();
		void write();
};

extern DMX dmx;