Add endstops, light_sensor, test, many fixes

- Added endstop and light_sensor module
 - Improved configuration by splitting wiring configs to boards.h
 - Added a unit test for argument parsing
 - Fixed many smaller bugs
This commit is contained in:
Filip Ayazi 2021-05-25 01:40:09 +01:00
parent 8f66bb7da9
commit 35d969aadd
16 changed files with 875 additions and 64 deletions

View file

@ -1,3 +1,5 @@
#include "config.h"
#ifdef HELP
#include "help.h"
void help_setup()
@ -68,4 +70,5 @@ void help(String command)
Serial.println(F("<d> - a decimal integer."));
Serial.println("");
Serial.println("--END--");
}
}
#endif