/*----------------------------------------------------------------------------- * Author: Nelso G. Jost (nelsojost@gmail.com) * License: GPLv2 * Purpose: Entry point for the Arduino Toolchain. *---------------------------------------------------------------------------*/ #include #include "repl.h" #include "repl_gpio.h" #include "repl_sdcard.h" #include "wifi.h" void REPL_WIFISCAN(String command); REPL_COMMAND commands[] =\ { ALLCMD_REPL_GPIO, ALLCMD_REPL_SDCARD, {"wifiscan", REPL_WIFISCAN, "wifiscan", "List all availables SSID in range for connection."}, {NULL} }; REPL repl(commands); void setup() { Serial.begin(9600); repl.run(); } void loop() { } void REPL_WIFISCAN(REPL * repl) { wifiscan(); }