- AP_DCC_Library: dcc.input()
- RSBus library: RSbusConnection
- Common Hardware Functions: decoderHardware.init() and decoderHardware.update()
- Configuration Variables: List of CVs, cvValues.init(), cvValues.read() and cvValues.write()
- CvProgramming: cvProgramming.processMessage(...)
- LEDs: BasicLed, FlashLed, DCCLed
- Buttons: DccButton, ToggleButton
- Timers: DccTimer
- Relays: DccRelay
- Pin assignments: boards.h
Implements the common core functions and objects needed by every DCC decoder that supports Configuration Variables (CVs) and feedback via RS-Bus messages. It builds upon the AP_DCC_library and the RSBus library.
The DCC decoder core initialises the DCC and RS-Bus hardware, by using the pin and USART settings as defined in boards.h.
The core functions handle most of the Programming on the Main (PoM) and Service Mode (Programming track) messages and support Configuration Variables (CVs) for different kind of decoders; these CVs can be remotely accessed via SM and PoM. A speciality is that PoM feedback messages will not be send via RailCom, but via the RS-Bus using address 128. Dedicated MAC programs are available that use this setup to configure these CVs; these programs can be downloaded from:
If the user pushes the programming button, the core functions respond by initialising the decoder's DCC and/or RS-Bus addresses based on the next DCC address that is received. The core functions provide an onboard LED object, to signal events to the user, and an onboard button object, to allow the user to configure a new address.
The library has been tested on traditional ATMega processors, such as the ATMega 16A, ATMega 328 (UNO, Nano) and ATMega2560 (Mega), but also on the newer MegaAVR processors, such as 4808 (Thinary), 4809 (Nano Every) and the AVR128DA. For the design of new boards the use of these newer processors is recommended. Note that dedicated "boards" may need to be installed in the Arduino IDE to support these processors, such as MightyCore, MegaCore, MegaCoreX and DxCore. For each board the mapping between external (DCC and RS-Bus) signals and Arduino pin numbers is defined in the boards.h file.
The only library file that needs to be included by the main sketch is AP_Accessory_Common.h
. This header file includes the following header files and libraries: CvValues.h
, AP_DCC_library
, RSbus
, AP_DccButton
, AP_DccLED
and AP_DccTimer
. Instead of AP_Accessory_Common.h
, it is also possible to include individual header files if limited functionality is needed only.
The following objects and classes become available to the user sketch:
-
decoderHardware (class: CommonDecHwFunctions): initialises the following decoder hardware: DCC interface, RS-Bus interface, onboard LED and the programming button. Provides two functions that must be included in the user sketch:
init()
andupdate()
. -
dcc (class:Dcc): the Dcc class informs the main sketch which kind of DCC command has been received. The main loop of the user sketch should call
dcc.input()
to check if a new DCC message is received. If a new DCC message is received, thedcc.cmdType
should be inspected to determine the kind of DCC command. Three main command types are possible: accessory command, loco (multi-function) command or CV access (POM, SM) command. The Dcc class is defined as part of the AP_DCC_library.- accCmd (class: Accessory): if
dcc.cmdType
is of typeMyAccessoryCmd
, additional information, such as theturnout
andposition
, is provided by theaccCmd
object. - locoCmd (class: Loco): if
dcc.cmdType
returns any of the loco types (such asMyLocoSpeedCmd
orMyLocoF0F4Cmd
), additional information is provided by thelocoCmd
object. - cvCmd (class: CvAccess): if
dcc.cmdType
returnsMyPomCmd
, the number and value of the received CV can be obtained via thecvCmd
object.
- accCmd (class: Accessory): if
-
CvProgramming (class CvProgramming): processes a received PoM or SM command. Reads or modifies the CV that is targetted by this command. If
dcc.cmdType
returnsMyPomCmd
orSmCmd
, the main sketch should callcvProgramming.processMessage()
to ensure that the targetted CV is indeed being read or modified. -
cvValues (class CvValues): allows the main sketch to
read()
orwrite()
individual CV values. To select the matching set of CV default values for this type of decoder,setup()
of the main sketch should callcvValues.init()
. -
RS-Bus: To send feedback messages via the RS-Bus, the user sketch may instantiated one or more RS-Bus objects of class RSbusConnection. Note that the user sketch does not need to instantiate the RSbusHardware class itself or create RS-Bus objects for PoM feedback, since the decoderHardware object already takes care of that.
-
onBoardLed (defined in AP_DccLED.h): the onboard LED may be used to inform the user of specific events. To accommodate different LED behaviour, the following classes are defined:
-
Buttons: the user sketch may need to read the status of (debounced) buttons. Two different classes are provided: the DccButton class for normal buttons and the ToggleButton class for toggle buttons. The onboardButton is of class DccButton, but this button should not be used by the user sketch.
-
Timers: the DccTimer class allows the user sketch to include (non-blocking) timers based on Arduino's
millis()
. -
Relays: the Relays class allows the user sketch to include bi-stable relays. Mono-stable relays are not implemented.
A skeleton that shows the basic usage of the core functions (without RS-Bus feedback) is shown below.
Each decoder should call in setup()
cvValues.init()
as well as decoderHardware.init()
. The main loop should call dcc.input()
to check if a new DCC message has been received, and decoderHardware.update()
to update the onboard LED and check if the programming button was pushed.
#include <AP_DCC_Decoder_Core.h>
void setup() {
cvValues.init(SwitchDecoder, 20);
decoderHardware.init();
}
void loop() {
// Do something with the DCC message received ...
if (dcc.input()) {};
// Check if the programming button is pushed; handle CV PoM and SM messages
decoderHardware.update();
}
A more elaborate example, which includes feedback via the RS_Bus, is shown BasicDecoder.md.