1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-04-15 01:40:13 +02:00

fix: all values except the opcode are case insensetive and threated as uppercase.

Extended accessory now uses an E instead of an A.
This commit is contained in:
Reinder Feenstra 2025-03-29 08:45:40 +01:00
parent 31f89ad4c4
commit 8740af814d

View File

@ -153,11 +153,11 @@ void CommandDistributor::broadcastSensor(int16_t id, bool on ) {
}
void CommandDistributor::broadcastAccessory(int16_t address, byte port, bool gate, bool on) {
broadcastReply(COMMAND_TYPE, F("<y a %d %d %c %c>\n"), address, port, gate?'1':'0', on?'1':'0');
broadcastReply(COMMAND_TYPE, F("<y A %d %d %c %c>\n"), address, port, gate?'1':'0', on?'1':'0');
}
void CommandDistributor::broadcastExtendedAccessory(int16_t address, int16_t value) {
broadcastReply(COMMAND_TYPE, F("<y A %d %d>\n"), address, value);
broadcastReply(COMMAND_TYPE, F("<y E %d %d>\n"), address, value);
}
void CommandDistributor::broadcastTurnout(int16_t id, bool isClosed ) {