forked from lmirel/MorphingClockRemix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Digit.h
42 lines (35 loc) · 955 Bytes
/
Digit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef DIGIT_H
#define DIGIT_H
#include <Arduino.h>
#include <PxMatrix.h> // https://github.com/2dom/PxMatrix
class Digit {
public:
Digit(PxMATRIX* d, byte value, uint16_t xo, uint16_t yo, uint16_t color);
void Draw(byte value);
void Morph(byte newValue);
byte Value();
void DrawColon(uint16_t c);
void SetColor(uint16_t c);
private:
PxMATRIX* _display;
byte _value;
uint16_t _color;
uint16_t xOffset;
uint16_t yOffset;
int animSpeed = 30;
void drawPixel(uint16_t x, uint16_t y, uint16_t c);
void drawFillRect(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t c);
void drawLine(uint16_t x, uint16_t y, uint16_t x2, uint16_t y2, uint16_t c);
void drawSeg(byte seg);
void Morph2();
void Morph3();
void Morph4();
void Morph5();
void Morph6();
void Morph7();
void Morph8();
void Morph9();
void Morph0();
void Morph1();
};
#endif