├── .gitignore ├── LICENSE ├── README.md ├── parts_built_together.png ├── shutterserial.png ├── shutterserver.png └── src ├── credentials.h ├── main.ino └── vars.h /.gitignore: -------------------------------------------------------------------------------- 1 | stepper_32v5_en/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/README.md -------------------------------------------------------------------------------- /parts_built_together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/parts_built_together.png -------------------------------------------------------------------------------- /shutterserial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/shutterserial.png -------------------------------------------------------------------------------- /shutterserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/shutterserver.png -------------------------------------------------------------------------------- /src/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/src/credentials.h -------------------------------------------------------------------------------- /src/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/src/main.ino -------------------------------------------------------------------------------- /src/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoturDeal/ESP32Stepper/HEAD/src/vars.h --------------------------------------------------------------------------------