diff --git a/TODO.md b/TODO.md index a6305c4..7a11b2a 100644 --- a/TODO.md +++ b/TODO.md @@ -6,13 +6,15 @@ - [ ] indicator on all screen but fullscreen and clock - [ ] refreshing an icon screen should extend the display time - [ ] scroll left to right +- [x] size of indicator and alarm - [x] center text - [x] alarm unabhängig von screen - [x] del_screen with * and filter by type do delete all clocks etc. - [x] force_screen with * and filter by type do delete all clocks etc. - [x] gauge mit farbe und del_gaugeall clocks etc. -- [ ] second point moveable -- [ ] second point to clock screen only +- [ ] seconds point moveable +- [ ] seconds point to clock screen only +- [x] rainbow icon and text ## ux @@ -20,7 +22,7 @@ - [ ] Color in blueprints - [ ] all modes in one blueprint - [x] default values for all functions -- [ ] provide sample font from [url](https://www.pentacom.jp/pentacom/bitfontmaker2/) +- [x] provide sample font from [url](https://www.pentacom.jp/pentacom/bitfontmaker2/) - [x] start animation ## style diff --git a/components/ehmtx/EHMTX_queue.cpp b/components/ehmtx/EHMTX_queue.cpp index 475b861..48e6164 100644 --- a/components/ehmtx/EHMTX_queue.cpp +++ b/components/ehmtx/EHMTX_queue.cpp @@ -256,12 +256,4 @@ namespace esphome this->endtime = this->config_->clock->now().timestamp + et * 60; this->icon = icon; } - - void EHMTX_queue::set_text_color(uint8_t icon_id, Color text_color) - { - if (this->icon == icon_id) - { - this->text_color = text_color; - } - } }