├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Toorcamp 2018 Badge BOM.pdf ├── firmware ├── badge │ ├── Makefile │ ├── README.md │ ├── fireflies.c │ ├── fireflies.hex │ └── waveform.h └── jig │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── badge_firmware.h │ ├── leds.c │ ├── leds.h │ ├── main.c │ ├── tests.c │ └── tests.h ├── hardware ├── badge │ ├── fp-lib-table │ ├── toorcamp2018badge-cache.lib │ ├── toorcamp2018badge.kicad_pcb │ ├── toorcamp2018badge.pro │ └── toorcamp2018badge.sch └── jig │ ├── fp-lib-table │ ├── toorcamp2018jig-cache.lib │ ├── toorcamp2018jig-enclosure.svg │ ├── toorcamp2018jig.kicad_pcb │ ├── toorcamp2018jig.pro │ └── toorcamp2018jig.sch └── toorcamp2018badge-jar.jpeg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/README.md -------------------------------------------------------------------------------- /Toorcamp 2018 Badge BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/Toorcamp 2018 Badge BOM.pdf -------------------------------------------------------------------------------- /firmware/badge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/badge/Makefile -------------------------------------------------------------------------------- /firmware/badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/badge/README.md -------------------------------------------------------------------------------- /firmware/badge/fireflies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/badge/fireflies.c -------------------------------------------------------------------------------- /firmware/badge/fireflies.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/badge/fireflies.hex -------------------------------------------------------------------------------- /firmware/badge/waveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/badge/waveform.h -------------------------------------------------------------------------------- /firmware/jig/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /firmware/jig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/jig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/README.md -------------------------------------------------------------------------------- /firmware/jig/badge_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/badge_firmware.h -------------------------------------------------------------------------------- /firmware/jig/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/leds.c -------------------------------------------------------------------------------- /firmware/jig/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/leds.h -------------------------------------------------------------------------------- /firmware/jig/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/main.c -------------------------------------------------------------------------------- /firmware/jig/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/tests.c -------------------------------------------------------------------------------- /firmware/jig/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/firmware/jig/tests.h -------------------------------------------------------------------------------- /hardware/badge/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/badge/fp-lib-table -------------------------------------------------------------------------------- /hardware/badge/toorcamp2018badge-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/badge/toorcamp2018badge-cache.lib -------------------------------------------------------------------------------- /hardware/badge/toorcamp2018badge.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/badge/toorcamp2018badge.kicad_pcb -------------------------------------------------------------------------------- /hardware/badge/toorcamp2018badge.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/badge/toorcamp2018badge.pro -------------------------------------------------------------------------------- /hardware/badge/toorcamp2018badge.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/badge/toorcamp2018badge.sch -------------------------------------------------------------------------------- /hardware/jig/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/fp-lib-table -------------------------------------------------------------------------------- /hardware/jig/toorcamp2018jig-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/toorcamp2018jig-cache.lib -------------------------------------------------------------------------------- /hardware/jig/toorcamp2018jig-enclosure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/toorcamp2018jig-enclosure.svg -------------------------------------------------------------------------------- /hardware/jig/toorcamp2018jig.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/toorcamp2018jig.kicad_pcb -------------------------------------------------------------------------------- /hardware/jig/toorcamp2018jig.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/toorcamp2018jig.pro -------------------------------------------------------------------------------- /hardware/jig/toorcamp2018jig.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/hardware/jig/toorcamp2018jig.sch -------------------------------------------------------------------------------- /toorcamp2018badge-jar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/toorcamp2018badge/HEAD/toorcamp2018badge-jar.jpeg --------------------------------------------------------------------------------