2020-05-24 17:07:16 +02:00
|
|
|
#include "DCC.h"
|
2020-05-24 00:02:54 +02:00
|
|
|
#include "DIAG.h"
|
2020-06-04 21:55:18 +02:00
|
|
|
#include "DCCEXParser.h"
|
2020-06-11 14:35:16 +02:00
|
|
|
#include "WifiInterface.h"
|
2020-05-24 00:22:12 +02:00
|
|
|
|
2020-06-22 11:54:57 +02:00
|
|
|
// this code is here to demonstrate use of the DCC API and other techniques
|
2020-05-24 00:22:12 +02:00
|
|
|
|
2020-06-19 11:45:08 +02:00
|
|
|
// myFilter is an example of an OPTIONAL command filter used to intercept < > commands from
|
|
|
|
// the usb or wifi streamm. It demonstrates how a command may be intercepted
|
2020-06-22 11:54:57 +02:00
|
|
|
// or even a new command created without having to break open the API library code.
|
|
|
|
// The filter is permitted to use or modify the parameter list before passing it on to
|
2020-06-19 11:45:08 +02:00
|
|
|
// the standard parser. By setting the opcode to ZERO, the standard parser will
|
|
|
|
// just ignore the command on the assumption that you have already handled it.
|
|
|
|
//
|
|
|
|
// The filter must be enabled by calling the DCC EXParser::setFilter method, see use in setup().
|
|
|
|
|
|
|
|
void myFilter(Stream & stream, byte & opcode, byte & paramCount, int p[]) {
|
|
|
|
switch (opcode) {
|
|
|
|
case 'T': // Intercept turnout functions because I have special hardware
|
|
|
|
DIAG(F("\nStop messing with Turnouts!"));
|
|
|
|
opcode=0; // tell parssr to ignore ithis command
|
|
|
|
break;
|
2020-06-22 11:54:57 +02:00
|
|
|
case 'F': // Invent new command to call the new Loco Function API <F cab func 1|0>
|
|
|
|
DIAG(F("Setting loco %d F%d %S"),p[0],p[1],p[2]?F("ON"):F("OFF"));
|
|
|
|
DCC::setFn(p[0],p[1],p[2]==1);
|
|
|
|
opcode=0; // tell parser to ignore this command
|
|
|
|
break;
|
2020-06-19 11:45:08 +02:00
|
|
|
case '#': // Diagnose parser <#....>
|
|
|
|
DIAG(F("# paramCount=%d\n"),paramCount);
|
|
|
|
for (int i=0;i<paramCount;i++) DIAG(F("p[%d]=%d (0x%x)\n"),i,p[i],p[i]);
|
|
|
|
opcode=0; // Normal parser wont understand #,
|
|
|
|
break;
|
|
|
|
default: // drop through and parser will use the command unaltered.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-05-24 17:07:16 +02:00
|
|
|
|
2020-06-19 11:45:08 +02:00
|
|
|
// Callback functions are necessary if you call any API that must wait for a response from the
|
|
|
|
// programming track. The API must return immediately otherwise other loop() functions would be blocked.
|
|
|
|
// Your callback function will be invoked when the data arrives from the prog track.
|
2020-05-26 13:44:02 +02:00
|
|
|
|
2020-06-07 17:29:53 +02:00
|
|
|
void myCallback(int result) {
|
2020-06-08 14:04:47 +02:00
|
|
|
DIAG(F("\n getting Loco Id callback result=%d"),result);
|
2020-06-07 17:29:53 +02:00
|
|
|
}
|
2020-05-24 00:02:54 +02:00
|
|
|
|
2020-06-18 20:36:37 +02:00
|
|
|
|
2020-06-19 11:45:08 +02:00
|
|
|
// Create a serkial command parser... This is OPTIONAL if you don't need to handle JMRI type commands
|
|
|
|
// from the Serial port.
|
2020-06-11 14:35:16 +02:00
|
|
|
DCCEXParser serialParser;
|
2020-06-10 18:31:26 +02:00
|
|
|
|
2020-05-24 00:02:54 +02:00
|
|
|
void setup() {
|
2020-06-19 11:45:08 +02:00
|
|
|
Serial.begin(SERIAL_BAUD_RATE);
|
2020-06-11 14:35:16 +02:00
|
|
|
DCC::begin();
|
2020-06-12 15:28:35 +02:00
|
|
|
if (WIFI_PORT>0) WifiInterface::setup();
|
2020-06-08 14:04:47 +02:00
|
|
|
DIAG(F("\n===== CVReader demonstrating DCC::getLocoId() call ==========\n"));
|
|
|
|
DCC::getLocoId(myCallback); // myCallback will be called with the result
|
|
|
|
DIAG(F("\n===== DCC::getLocoId has returned, but wont be executed until we are in loop() ======\n"));
|
2020-06-19 11:45:08 +02:00
|
|
|
|
|
|
|
// Optionally tell parser to use my example filter
|
2020-06-18 20:36:37 +02:00
|
|
|
DCCEXParser::setFilter(myFilter);
|
2020-06-19 11:45:08 +02:00
|
|
|
|
|
|
|
DIAG(F("\nReady for JMRI commands\n"));
|
|
|
|
|
2020-05-24 00:02:54 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 14:35:16 +02:00
|
|
|
void loop() {
|
|
|
|
DCC::loop(); // required to keep locos running and check powwer
|
2020-05-26 13:44:02 +02:00
|
|
|
|
2020-06-04 21:55:18 +02:00
|
|
|
// This line passes input on Serial to the DCCEXParser
|
2020-06-11 14:35:16 +02:00
|
|
|
serialParser.loop(Serial);
|
2020-06-19 11:45:08 +02:00
|
|
|
|
|
|
|
// This line passes input on Wifi to another DCCEXParser
|
2020-06-13 10:36:10 +02:00
|
|
|
if (WIFI_PORT>0) WifiInterface::loop();
|
2020-05-26 00:03:11 +02:00
|
|
|
}
|