muwerk Console Class
The console class implements a simple but effective console shell that is the base for ustd::SerialConsole and can also be used for implementing shells over other transport mechanisms. The simple interpreter has the follwing builtin commands:
help: displays a list of supported commands reboot: restarts the device sub: add or remove message subscriptions shown on console pub: allows to publish a message debug: enable or disable wifi diagnostics (if available) wifi: show wifi status (if available) info: show system status
If a file system is available (usually when compiling for ESP8266 or ESP32) there are additional builtin commands available:
ls: display directory contents cat: outputs the specified files rm: removes the specified files jf: read, write or delete values in json files
The commandline parser can be extended (see example below)
Sample of a serial console with extension
#include "scheduler.h"
#include "console.h"
void apploop() {}
void setup() {
con.
extend(
"hurz", []( String cmd, String args, Print *printer ) {
printer->println( "Der Wolf... Das Lamm.... Auf der grĂ¼nen Wiese.... HURZ!" );
while ( args.length() ) {
String arg = ustd::shift( args );
printer->println( arg + " HURZ!" );
}
} );
int tID = sched.add( apploop, "main", 50000 );
}
void loop() {
sched.loop();
}
int extend(String command, T_COMMANDFN handler)
Definition console.h:136
muwerk Scheduler Class
Definition scheduler.h:199
muwerk Serial Console Class
Definition console.h:890
void begin(Scheduler *_pSched, String initialCommand="", unsigned long pollRate=60)
Definition console.h:908