├── .gitignore ├── LICENCE.md ├── OctoPlugout ├── OctoPlugout.config.h.RELEASE └── OctoPlugout.ino ├── README.md ├── eagle.flash.1m.ld ├── images ├── All states.jpg ├── SONOF reflashed working - fullres.jpg ├── SONOF reflashed working.jpg ├── States buttons.jpg ├── States_printer.jpg ├── config.jpg ├── diagram.txt ├── flash a S26.jpg ├── poweroff.jpg ├── reflash closeup.jpg └── shutdown.jpg ├── include └── README ├── lib └── README ├── platformio.ini ├── test └── README └── wificodes.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/LICENCE.md -------------------------------------------------------------------------------- /OctoPlugout/OctoPlugout.config.h.RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/OctoPlugout/OctoPlugout.config.h.RELEASE -------------------------------------------------------------------------------- /OctoPlugout/OctoPlugout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/OctoPlugout/OctoPlugout.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/README.md -------------------------------------------------------------------------------- /eagle.flash.1m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/eagle.flash.1m.ld -------------------------------------------------------------------------------- /images/All states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/All states.jpg -------------------------------------------------------------------------------- /images/SONOF reflashed working - fullres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/SONOF reflashed working - fullres.jpg -------------------------------------------------------------------------------- /images/SONOF reflashed working.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/SONOF reflashed working.jpg -------------------------------------------------------------------------------- /images/States buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/States buttons.jpg -------------------------------------------------------------------------------- /images/States_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/States_printer.jpg -------------------------------------------------------------------------------- /images/config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/config.jpg -------------------------------------------------------------------------------- /images/diagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/diagram.txt -------------------------------------------------------------------------------- /images/flash a S26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/flash a S26.jpg -------------------------------------------------------------------------------- /images/poweroff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/poweroff.jpg -------------------------------------------------------------------------------- /images/reflash closeup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/reflash closeup.jpg -------------------------------------------------------------------------------- /images/shutdown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/images/shutdown.jpg -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/platformio.ini -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/test/README -------------------------------------------------------------------------------- /wificodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruedli/OctoPlugout/HEAD/wificodes.txt --------------------------------------------------------------------------------