diff options
Diffstat (limited to 'MouseSpr.i')
| -rw-r--r-- | MouseSpr.i | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -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__ */ |
