Stuff from text.h is now const.
This commit is contained in:
@ -13,9 +13,9 @@ class BigClockEffect : public Effect {
|
||||
|
||||
void drawText(char *text, int x, int y, CRGB color);
|
||||
|
||||
unsigned char* font_char(unsigned char* font, char c);
|
||||
const unsigned char* font_char(const unsigned char* font, char c);
|
||||
|
||||
void drawSprite(unsigned char* sprite, int xOffset, int yOffset, CRGB color);
|
||||
void drawSprite(const unsigned char* sprite, int xOffset, int yOffset, CRGB color);
|
||||
|
||||
public:
|
||||
void loop();
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#include "functions.h"
|
||||
|
||||
static unsigned char font5x7[] = {
|
||||
const unsigned char font5x7[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00,// (space)
|
||||
0x00, 0x00, 0x5F, 0x00, 0x00,// !
|
||||
0x00, 0x07, 0x00, 0x07, 0x00,// "
|
||||
@ -102,7 +102,7 @@ static unsigned char font5x7[] = {
|
||||
0x08, 0x1C, 0x2A, 0x08, 0x08 // <-
|
||||
};
|
||||
|
||||
static unsigned char numbers4x7[] = {
|
||||
const unsigned char numbers4x7[] = {
|
||||
0x3E, 0x51, 0x45, 0x3E,// 0
|
||||
0x00, 0x42, 0x7F, 0x40,// 1
|
||||
0x42, 0x61, 0x49, 0x46,// 2
|
||||
@ -115,7 +115,7 @@ static unsigned char numbers4x7[] = {
|
||||
0x06, 0x49, 0x29, 0x1E // 9
|
||||
};
|
||||
|
||||
static unsigned char numbers3x5[] = {
|
||||
const unsigned char numbers3x5[] = {
|
||||
B01110, B10001, B01110, // 0
|
||||
B01000, B11111, B00000, // 1
|
||||
B01001, B10011, B01101, // 2
|
||||
@ -128,12 +128,12 @@ static unsigned char numbers3x5[] = {
|
||||
B11101, B10101, B11111, // 9
|
||||
};
|
||||
|
||||
void drawTextSprite(Window window, unsigned char* sprite, int w, int h, int xPos, int yPos, CRGB color, boolean invert);
|
||||
void drawTextSprite(Window window, const unsigned char* sprite, int w, int h, int xPos, int yPos, CRGB color, boolean invert);
|
||||
|
||||
void drawChar(Window window, unsigned char* font, int w, int h, int x, int y, char c, CRGB color);
|
||||
void drawChar(Window window, const unsigned char* font, int w, int h, int x, int y, char c, CRGB color);
|
||||
|
||||
void drawDigit(Window window, unsigned char* font, int w, int h, int x, int y, int digit, CRGB color, boolean invert);
|
||||
void drawDigit(Window window, const unsigned char* font, int w, int h, int x, int y, int digit, CRGB color, boolean invert);
|
||||
|
||||
void drawText(Window window, char *font, int w, int h, char *text, int x, int y, CRGB color);
|
||||
void drawText(Window window, const char *font, int w, int h, char *text, int x, int y, CRGB color);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user