├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── diagram.json ├── petinator ├── configuration.h ├── fastMenu.cpp ├── fastMenu.h ├── petinator.ino └── stepper.h ├── photos ├── heater.jpg ├── puller.jpg └── pullstruder-messy.jpg ├── platformio.ini └── wokwi.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .pio/** 2 | .vscode/** -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/README.md -------------------------------------------------------------------------------- /diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/diagram.json -------------------------------------------------------------------------------- /petinator/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/petinator/configuration.h -------------------------------------------------------------------------------- /petinator/fastMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/petinator/fastMenu.cpp -------------------------------------------------------------------------------- /petinator/fastMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/petinator/fastMenu.h -------------------------------------------------------------------------------- /petinator/petinator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/petinator/petinator.ino -------------------------------------------------------------------------------- /petinator/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/petinator/stepper.h -------------------------------------------------------------------------------- /photos/heater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/photos/heater.jpg -------------------------------------------------------------------------------- /photos/puller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/photos/puller.jpg -------------------------------------------------------------------------------- /photos/pullstruder-messy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/photos/pullstruder-messy.jpg -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/platformio.ini -------------------------------------------------------------------------------- /wokwi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aamott/petinator/HEAD/wokwi.toml --------------------------------------------------------------------------------