mirror of https://github.com/MLXXXp/Arduboy2.git
Fix information for drawCompressed
- Fix URLs for new Team ARG source code. - Add size in bytes for different logo formats.
This commit is contained in:
parent
3f9e86ab99
commit
37ab2b522d
|
@ -87,7 +87,7 @@ https://github.com/yyyc514/ArduboyExtra
|
|||
Copyright (c) 2015 Josh Goebel
|
||||
|
||||
Code for drawing compressed bitmaps:
|
||||
https://github.com/TEAMarg/drawCompressed
|
||||
https://github.com/Team-ARG-Museum/drawCompressed
|
||||
Copyright (c) 2016 TEAM a.r.g.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
|
|
@ -704,8 +704,8 @@ class Arduboy2Base : public Arduboy2Core
|
|||
* Draw a bitmap starting at the given coordinates from an array that has
|
||||
* been compressed using an algorthm implemented by Team A.R.G.
|
||||
* For more information see:
|
||||
* https://github.com/TEAMarg/drawCompressed
|
||||
* https://github.com/TEAMarg/Cabi
|
||||
* https://github.com/Team-ARG-Museum/drawCompressed
|
||||
* https://github.com/Team-ARG-Museum/Cabi
|
||||
*
|
||||
* Bits set to 1 in the provided bitmap array will have their corresponding
|
||||
* pixel set to the specified color. For bits set to 0 in the array, the
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// arduboy_logo.png
|
||||
// drawBitmap() format
|
||||
// 88x16
|
||||
// 88x16 px (176 bytes)
|
||||
const uint8_t arduboy_logo[] PROGMEM = {
|
||||
0xF0, 0xF8, 0x9C, 0x8E, 0x87, 0x83, 0x87, 0x8E, 0x9C, 0xF8,
|
||||
0xF0, 0x00, 0x00, 0xFE, 0xFF, 0x03, 0x03, 0x03, 0x03, 0x03,
|
||||
|
@ -35,7 +35,7 @@ const uint8_t arduboy_logo[] PROGMEM = {
|
|||
|
||||
// arduboy_logo.png
|
||||
// drawCompressed() format
|
||||
// 88x16
|
||||
// 88x16 px (151 bytes)
|
||||
const uint8_t arduboy_logo_compressed[] PROGMEM = {
|
||||
0x57, 0x0F, 0x9C, 0x53, 0x72, 0x75, 0x29, 0xE5, 0x9C, 0x92,
|
||||
0xCE, 0x95, 0x52, 0xAD, 0x4E, 0x49, 0xE7, 0x08, 0x09, 0xED,
|
||||
|
@ -57,7 +57,7 @@ const uint8_t arduboy_logo_compressed[] PROGMEM = {
|
|||
|
||||
// arduboy_logo.png
|
||||
// Sprites::drawSelfMasked() format
|
||||
// 88x16
|
||||
// 88x16 px (178 bytes)
|
||||
const uint8_t arduboy_logo_sprite[] PROGMEM = {
|
||||
88, 16,
|
||||
0xF0, 0xF8, 0x9C, 0x8E, 0x87, 0x83, 0x87, 0x8E, 0x9C, 0xF8,
|
||||
|
|
Loading…
Reference in New Issue