├── .gitignore ├── .travis.yml ├── CrashButtonESP ├── .gitignore ├── CrashButtonConfig.h.example ├── CrashButtonESP.ino └── platformio.ini ├── README.md ├── docs ├── CrashButtonESPD1-brd.png ├── CrashButtonESPD1-sch.png ├── bigbutton-assembly.jpg ├── bigbutton-front-back.jpg ├── bigbutton-header.jpg └── sacrificial-neopixel.png └── schematic ├── CrashButtonESP8266D1.brd ├── CrashButtonESP8266D1.sch ├── CrashButtonESP8266test.brd └── CrashButtonESP8266test.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/.travis.yml -------------------------------------------------------------------------------- /CrashButtonESP/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/CrashButtonESP/.gitignore -------------------------------------------------------------------------------- /CrashButtonESP/CrashButtonConfig.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/CrashButtonESP/CrashButtonConfig.h.example -------------------------------------------------------------------------------- /CrashButtonESP/CrashButtonESP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/CrashButtonESP/CrashButtonESP.ino -------------------------------------------------------------------------------- /CrashButtonESP/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/CrashButtonESP/platformio.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/README.md -------------------------------------------------------------------------------- /docs/CrashButtonESPD1-brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/CrashButtonESPD1-brd.png -------------------------------------------------------------------------------- /docs/CrashButtonESPD1-sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/CrashButtonESPD1-sch.png -------------------------------------------------------------------------------- /docs/bigbutton-assembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/bigbutton-assembly.jpg -------------------------------------------------------------------------------- /docs/bigbutton-front-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/bigbutton-front-back.jpg -------------------------------------------------------------------------------- /docs/bigbutton-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/bigbutton-header.jpg -------------------------------------------------------------------------------- /docs/sacrificial-neopixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/docs/sacrificial-neopixel.png -------------------------------------------------------------------------------- /schematic/CrashButtonESP8266D1.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/schematic/CrashButtonESP8266D1.brd -------------------------------------------------------------------------------- /schematic/CrashButtonESP8266D1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/schematic/CrashButtonESP8266D1.sch -------------------------------------------------------------------------------- /schematic/CrashButtonESP8266test.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/schematic/CrashButtonESP8266test.brd -------------------------------------------------------------------------------- /schematic/CrashButtonESP8266test.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/crashspace-bigbutton/HEAD/schematic/CrashButtonESP8266test.sch --------------------------------------------------------------------------------