summaryrefslogtreecommitdiff
path: root/include/arch/atmega2560/driver/dmx2.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/atmega2560/driver/dmx2.h')
-rw-r--r--include/arch/atmega2560/driver/dmx2.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/arch/atmega2560/driver/dmx2.h b/include/arch/atmega2560/driver/dmx2.h
new file mode 100644
index 0000000..1c8cd67
--- /dev/null
+++ b/include/arch/atmega2560/driver/dmx2.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2022 Birte Kristina Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+class DMX2 {
+ private:
+ DMX2(const DMX2 &copy);
+
+ public:
+ static unsigned char const num_frames = 32;
+ unsigned char frames[num_frames];
+
+ DMX2() {}
+
+ void setup();
+ void write();
+};
+
+extern DMX2 dmx2;