1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 23:56:13 +01:00

Update WiThrottle.cpp

Fix: turnout state should be 2/4, not T2/T4
This commit is contained in:
stevet 2023-04-25 16:02:42 -04:00
parent 91d36ae909
commit cc3aba1feb

View File

@ -127,7 +127,7 @@ void WiThrottle::parse(RingStream * stream, byte * cmdx) {
#endif
char tchar=Turnout::isClosed(id)?'2':'4';
if (tdesc==NULL) // turnout with no description
StringFormatter::send(stream,F("]\\[%d}|{T%d}|{T%c"), id,id,tchar);
StringFormatter::send(stream,F("]\\[%d}|{T%d}|{%c"), id,id,tchar);
else
StringFormatter::send(stream,F("]\\[%d}|{%S}|{%c"), id,tdesc,tchar);
}