├── .gitignore ├── assets ├── pinouts-p1.png └── usb-p2.png ├── hardware └── schematic.pdf ├── pinouts.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /assets/pinouts-p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/cactus-whid/HEAD/assets/pinouts-p1.png -------------------------------------------------------------------------------- /assets/usb-p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/cactus-whid/HEAD/assets/usb-p2.png -------------------------------------------------------------------------------- /hardware/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/cactus-whid/HEAD/hardware/schematic.pdf -------------------------------------------------------------------------------- /pinouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/cactus-whid/HEAD/pinouts.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilBrother/cactus-whid/HEAD/readme.md --------------------------------------------------------------------------------