A rouge-like rpg, heavily inspired on the binding of isaac. Running on a FRDM-K64F Mbed board. C++.

Dependencies:   mbed MotionSensor

Revision:
25:112cbcb0b4a7
Parent:
4:d1aeb131e533
--- a/N5110/N5110.h	Fri Apr 26 01:14:51 2019 +0000
+++ b/N5110/N5110.h	Fri Apr 26 02:38:05 2019 +0000
@@ -189,6 +189,7 @@
 
 // variables
     unsigned char buffer[84][6];  // screen buffer - the 6 is for the banks - each one is 8 bits;
+    int screen_array[48][84];
 
 public:
     /** Create a N5110 object connected to the specified pins
@@ -422,6 +423,8 @@
                                int nrows,
                                int ncols,
                                int *sprite);
+                               
+    int * readScreen();
 
 
 private: