diff options
Diffstat (limited to 'MouseSpr.i')
| -rw-r--r-- | MouseSpr.i | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -1,18 +1,21 @@ #ifndef MOUSE_SPR_I__ #define MOUSE_SPR_I__ +#include <stdint.h> +#include <avr/pgmspace.h> +#include <Arduino.h> + const uint8_t PROGMEM MouseSprData[] = { - 8,8, //width and height - B11111100, - B10000100, - B10001000, - B10000100, - B10100010, - B11010001, - B00001010, - B00000100, - + 8,8, //width and height + B11111100, + B10000100, + B10001000, + B10000100, + B10100010, + B11010001, + B00001010, + B00000100 }; -#endif // MOUSE_SPR_I__ +#endif /* MOUSE_SPR_I__ */ |
