Skip to content

Commit ef2e83f

Browse files
committed
Update Booster with reserve/free
1 parent f80e26f commit ef2e83f

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

  • docs/products/ex-commandstation/trackmanager

docs/products/ex-commandstation/trackmanager/booster.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# EX-CSB1 in DCC Booster Mode
22

3-
The EX-CSB1 can be configured as a DCC Booster. As a booster it can take input from any DCC Command Station, not just an EX-CommandStation, to provide additional two power districts to your layout. With the addition of an EX-MotorShield8874, it can provide up to 4 power districts.
3+
The EX-CSB1 can be configured as a DCC Booster. As a booster it can take input from any DCC Command Station, not just an EX-CommandStation, to provide two additional power districts to your layout. With the addition of an EX-MotorShield8874, it can provide up to 4 power districts.
44

5-
To configure the EX-CSB1 as a DCC Booster, you will need to install the EX-CommandStation software on it with the addition of the following commands to the ``myAutomation.h`` file:
5+
To configure the EX-CSB1 as a DCC Booster, you will need to install the EX-CommandStation software on it with the addition of the following commands in the ``myAutomation.h`` file:
66

77
```c++
88
AUTOSTART
@@ -15,21 +15,26 @@ AUTOSTART
1515
PRINT("Waiting for RAILSYNC")
1616
DONE
1717

18+
// BOOSTER_INPUT pin requires define in config.h
1819
ONRAILSYNCON
20+
RESERVE(111)
1921
SET_TRACK(A, BOOST)
2022
SET_POWER(A, ON)
2123
PRINT("RAILSYNC ON TRACK A BOOST")
2224
SET_TRACK(B, BOOST)
2325
SET_POWER(B, ON)
26+
FREE(111)
2427
PRINT("RAILSYNC ON TRACK B BOOST")
2528
LCD(4, "BOOSTER A B ON")
2629
DONE
2730

2831
ONRAILSYNCOFF
32+
RESERVE(111)
2933
SET_TRACK(A, MAIN)
3034
SET_TRACK(B, MAIN)
3135
SET_POWER(A, OFF)
3236
SET_POWER(B, OFF)
37+
FREE(111)
3338
LCD(4, "BOOSTER OFF")
3439
PRINT("RAILSYNC OFF")
3540
DONE

0 commit comments

Comments
 (0)