mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2025-04-20 20:21:18 +02:00
Compare commits
1 Commits
635d5912ae
...
1aeae3eaee
Author | SHA1 | Date | |
---|---|---|---|
|
1aeae3eaee |
@ -153,11 +153,11 @@ void CommandDistributor::broadcastSensor(int16_t id, bool on ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CommandDistributor::broadcastAccessory(int16_t address, byte port, bool gate, 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) {
|
void CommandDistributor::broadcastExtendedAccessory(int16_t address, int16_t value) {
|
||||||
broadcastReply(COMMAND_TYPE, F("<y E %d %d>\n"), address, value);
|
broadcastReply(COMMAND_TYPE, F("<y A %d %d>\n"), address, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CommandDistributor::broadcastTurnout(int16_t id, bool isClosed ) {
|
void CommandDistributor::broadcastTurnout(int16_t id, bool isClosed ) {
|
||||||
|
@ -217,7 +217,7 @@
|
|||||||
#define BROADCAST(msg)
|
#define BROADCAST(msg)
|
||||||
#define CALL(route)
|
#define CALL(route)
|
||||||
#define CLEAR_STASH(id)
|
#define CLEAR_STASH(id)
|
||||||
#define CLEAR_ALL_STASH
|
#define CLEAR_ALL_STASH(id)
|
||||||
#define CLOSE(id)
|
#define CLOSE(id)
|
||||||
#define CONFIGURE_SERVO(vpin,pos1,pos2,profile)
|
#define CONFIGURE_SERVO(vpin,pos1,pos2,profile)
|
||||||
#define DCC_SIGNAL(id,add,subaddr)
|
#define DCC_SIGNAL(id,add,subaddr)
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.4.7"
|
#define VERSION "5.4.6"
|
||||||
// 5.4.7 - Bugfix: EXRAIL fix CLEAR_ALL_STASH
|
|
||||||
// 5.4.6 - Bugfix: Do not drop further commands in same packet
|
// 5.4.6 - Bugfix: Do not drop further commands in same packet
|
||||||
// 5.4.5 - ESP32: Better detection of correct IDF version
|
// 5.4.5 - ESP32: Better detection of correct IDF version
|
||||||
// - track power is always turned on after setJoin() not by setJoin()
|
// - track power is always turned on after setJoin() not by setJoin()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user