#include "DCC.h" #include "DIAG.h" #include "DCCEXParser.h" #include "WifiInterface.h" // this code is here to demonstrate use of the DCC API and other techniques // 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 // 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 // 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 'F': // Invent new command to call the new Loco Function API 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; case '#': // Diagnose parser <#....> DIAG(F("# paramCount=%d\n"),paramCount); for (int i=0;i0) WifiInterface::setup(); 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")); // Optionally tell parser to use my example filter DCCEXParser::setFilter(myFilter); malloc(1); DIAG(F("\nReady for JMRI commands\n")); } void loop() { DCC::loop(); // required to keep locos running and check powwer // This line passes input on Serial to the DCCEXParser serialParser.loop(Serial); // This line passes input on Wifi to another DCCEXParser if (WIFI_PORT>0) WifiInterface::loop(); // Report any decrease in memory int freeNow=freeMemory(); if (freeNow