diff --git a/sources/plugins/httpScreen/TftScreen.cpp b/sources/plugins/httpScreen/TftScreen.cpp index 49829f5f5..84b43ddba 100644 --- a/sources/plugins/httpScreen/TftScreen.cpp +++ b/sources/plugins/httpScreen/TftScreen.cpp @@ -30,11 +30,11 @@ void CTftScreen::update(const std::vector& 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()); } } }