Luke Cartwright / Mbed 2 deprecated ELEC2645_Project_el18loc_nearlythere

Dependencies:   mbed

Revision:
7:33cb5f2db1ee
Child:
9:f6ba53e355a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LUTs/LUTs.h	Tue May 05 14:32:04 2020 +0000
@@ -0,0 +1,33 @@
+#ifndef LUTs_H
+#define LUTs_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+/** LUTs class
+ * @author Luke Cartwright, University of Leeds
+ * @brief generates LUTs
+ * @date May 2020
+*/
+class LUTs
+{
+public:
+    //constructor
+    LUTs();
+    //destructior
+    ~LUTs();
+
+    //variables
+    float wavtable[4096];
+    float sin_d[4096];
+
+    //methods
+    void sin_wavetable();
+
+private:
+//variables
+
+    
+};
+#endif
\ No newline at end of file