Skip to content

Commit

Permalink
Merge pull request #740 from Yadoms/hotfix/httpScreen
Browse files Browse the repository at this point in the history
Hotfix/http screen
  • Loading branch information
jano42 authored Oct 27, 2021
2 parents c1646a0 + 045fedb commit 8bc5b70
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/plugins/httpScreen/TftScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ void CTftScreen::update(const std::vector<CCommand>& cmds)
{
if (cmd.isControl())
{
m_controller->sendCommand(m_ip, "oledcmd", cmd.get());
m_controller->sendCommand(m_ip, "TFTCMD", cmd.get());
}
else
{
m_controller->sendCommand(m_ip, "oled", cmd.get());
m_controller->sendCommand(m_ip, "TFT", cmd.get());
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions sources/plugins/httpScreen/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.1.1
* Fix commands for TFT screens

### 1.1.0
* Fix #562 : update usage of CDataContainer for better memory optimizations

Expand Down
11 changes: 11 additions & 0 deletions sources/server/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 2.5.1-beta.4

#### Yadoms
* Fix HTTP SCREEN plugin for TFT screens (see local changelog)

### 2.5.1-beta.3

#### Yadoms
* Fix EnOcean plugin profile (see local changelog)


### 2.5.1-beta.2

#### Yadoms
Expand Down

0 comments on commit 8bc5b70

Please sign in to comment.