summaryrefslogtreecommitdiff
path: root/MouseSpr.i
diff options
context:
space:
mode:
Diffstat (limited to 'MouseSpr.i')
-rw-r--r--MouseSpr.i30
1 files changed, 29 insertions, 1 deletions
diff --git a/MouseSpr.i b/MouseSpr.i
index 91bc2ef..374e40d 100644
--- a/MouseSpr.i
+++ b/MouseSpr.i
@@ -1,11 +1,31 @@
#ifndef MOUSE_SPR_I__
#define MOUSE_SPR_I__
+/* *******************************************************************
+ * Includes
+ * ******************************************************************/
+
#include <stdint.h>
#include <avr/pgmspace.h>
#include <Arduino.h>
-const uint8_t PROGMEM MouseSprData[] =
+/* *******************************************************************
+ * Defines
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Types definition
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Global variables definition
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Local variables definition
+ * ******************************************************************/
+
+const uint8_t MouseSprData[] PROGMEM =
{
8,8, //width and height
B11111100,
@@ -18,4 +38,12 @@ const uint8_t PROGMEM MouseSprData[] =
B00000100
};
+/* *******************************************************************
+ * Local prototypes declaration
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Functions definition
+ * ******************************************************************/
+
#endif /* MOUSE_SPR_I__ */