2019-05-29 22:49:54 +00:00
|
|
|
#include "effect_clock.h"
|
|
|
|
#include <FastLED.h>
|
|
|
|
#include "functions.h"
|
2019-06-11 17:48:09 +00:00
|
|
|
#include "fonts.h"
|
2019-05-29 22:49:54 +00:00
|
|
|
#include "ntp.h"
|
|
|
|
|
|
|
|
void ClockEffect::loop() {
|
|
|
|
loop(false, CRGB(0xFFFFFF), CRGB(0x000000));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClockEffect::loop(boolean invert, CRGB fg_color, CRGB bg_color) {
|
2019-06-07 04:24:16 +00:00
|
|
|
if (!invert) {
|
2019-06-11 17:48:09 +00:00
|
|
|
window->clear(&bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
} else {
|
|
|
|
// Manually clear the needed parts
|
2019-06-11 17:48:09 +00:00
|
|
|
for(int i=0; i<window->width; i++) window->setPixel(i, 0, &bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
for(int y=0; y<6; y++) {
|
2019-06-11 17:48:09 +00:00
|
|
|
window->setPixel(3, y, &bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
if (y!=2 && y!=4) {
|
2019-06-11 17:48:09 +00:00
|
|
|
window->setPixel(7, y, &bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
}
|
2019-06-11 17:48:09 +00:00
|
|
|
window->setPixel(8, y, &bg_color);
|
|
|
|
window->setPixel(12, y, &bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
}
|
|
|
|
fg_color = bg_color;
|
|
|
|
}
|
|
|
|
if (ntpClient.isTimeSet()==false && (ntpClient.getSeconds() & 1)==0) {
|
2019-06-11 17:48:09 +00:00
|
|
|
window->clear(&bg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
int h = ntpClient.getHours();
|
2019-06-11 17:48:09 +00:00
|
|
|
//void drawChar(Font f, uint8_t x, uint8_t y, const char c, CRGB* color, bool mask=false);
|
2019-09-25 04:35:30 +00:00
|
|
|
window->drawChar(&font_numbers3x5, 0<<8, 1<<8, '0' + (h / 10), &fg_color, invert);
|
|
|
|
window->drawChar(&font_numbers3x5, 4<<8, 1<<8, '0' + (h % 10), &fg_color, invert);
|
2019-06-07 04:24:16 +00:00
|
|
|
int m = ntpClient.getMinutes();
|
2019-09-25 04:35:30 +00:00
|
|
|
window->drawChar(&font_numbers3x5, 9<<8, 1<<8, '0' + (m / 10), &fg_color, invert);
|
|
|
|
window->drawChar(&font_numbers3x5, 13<<8, 1<<8, '0' + (m % 10), &fg_color, invert);
|
2019-06-07 04:24:16 +00:00
|
|
|
if (ntpClient.getSeconds() & 1) {
|
2019-06-11 17:48:09 +00:00
|
|
|
window->setPixel(7, 2, &fg_color);
|
|
|
|
window->setPixel(7, 4, &fg_color);
|
2019-06-07 04:24:16 +00:00
|
|
|
}
|
2019-05-29 22:49:54 +00:00
|
|
|
}
|
2019-06-19 20:23:49 +00:00
|
|
|
|
|
|
|
ClockEffect::~ClockEffect() {
|
|
|
|
delete window;
|
|
|
|
}
|