Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit d33a734

Browse files
authored
Merge pull request #28 from lubeda/2023.1.0
2023.1.0
2 parents d3b7247 + c54092e commit d33a734

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ components/ehmtx/EHMTX_icons._cpp
1919
.vscode/settings.json
2020
ehmtx8266-select.yaml
2121
svganimtest.html
22+
servicetest

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 LuBeDa
3+
Copyright (c) 2022,2023 LuBeDa
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ parameters:
487487

488488
Service **del_screen**
489489

490-
Removes a screen from the display by icon name.
490+
Removes a screen from the display by icon name. If this screen is actually display while sending this command the screen will be displayed until its "show_screen"-time has ended.
491491

492492
parameters:
493493
- ```icon_name``` The name of the icons as in the yaml (see installation)

components/ehmtx/EHMTX.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const uint8_t TEXTSCROLLSTART = 8;
88
const uint8_t TEXTSTARTOFFSET = (32 - 8);
99

1010
const uint16_t TICKINTERVAL = 1000; // each 1000ms
11-
static const char *const EHMTX_VERSION = "Version: 2022.7.0";
11+
static const char *const EHMTX_VERSION = "Version: 2023.1.0";
1212
static const char *const TAG = "EHMTX";
1313

1414
namespace esphome

components/ehmtx/EHMTX_screen.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ namespace esphome
1717
if (this->icon == _icon)
1818
{
1919
this->endtime = 0;
20-
this->icon = 0;
2120
ESP_LOGD(TAG, "delete screen icon: %d", _icon);
2221
return true;
2322
}

0 commit comments

Comments
 (0)