gitextract_n8jre_j7/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── scripts/ │ │ ├── install-arduino-core-esp32.sh │ │ ├── install-arduino-ide.sh │ │ ├── install-platformio.sh │ │ └── on-push.sh │ └── workflows/ │ └── push.yml ├── .gitignore ├── Documentation.md ├── LICENSE.txt ├── README.md ├── examples/ │ ├── Example1_BasicESPStepperMotorServer/ │ │ └── Example1_BasicESPStepperMotorServer.ino │ ├── Example2_StepperMotorServer_with_hardcoded_config/ │ │ └── Example2_StepperMotorServer_with_hardcoded_config.ino │ ├── Example3_StepperMotorServer_with_static_IP_address/ │ │ └── Example3_StepperMotorServer_with_static_IP_address.ino │ └── Example4_StepperMotorServer_with_user_cli_command/ │ └── Example4_StepperMotorServer_with_user_cli_command.ino ├── library.json ├── library.properties ├── platformio.ini └── src/ ├── ESPStepperMotorServer.cpp ├── ESPStepperMotorServer.h ├── ESPStepperMotorServer_CLI.cpp ├── ESPStepperMotorServer_CLI.h ├── ESPStepperMotorServer_Configuration.cpp ├── ESPStepperMotorServer_Configuration.h ├── ESPStepperMotorServer_Logger.cpp ├── ESPStepperMotorServer_Logger.h ├── ESPStepperMotorServer_MacroAction.cpp ├── ESPStepperMotorServer_MacroAction.h ├── ESPStepperMotorServer_MotionController.cpp ├── ESPStepperMotorServer_MotionController.h ├── ESPStepperMotorServer_PositionSwitch.cpp ├── ESPStepperMotorServer_PositionSwitch.h ├── ESPStepperMotorServer_RestAPI.cpp ├── ESPStepperMotorServer_RestAPI.h ├── ESPStepperMotorServer_RotaryEncoder.cpp ├── ESPStepperMotorServer_RotaryEncoder.h ├── ESPStepperMotorServer_StepperConfiguration.cpp ├── ESPStepperMotorServer_StepperConfiguration.h ├── ESPStepperMotorServer_WebInterface.cpp ├── ESPStepperMotorServer_WebInterface.h └── main.cpp