├── .gitattributes ├── .gitignore ├── Documentation ├── README.md ├── Redboardv2.pdf └── Redboardv2.svg ├── Hardware ├── README.md ├── RedBoard.brd └── RedBoard.sch ├── LICENSE.md ├── Production └── RedBoard_panel_v22.brd └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/Redboardv2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Documentation/Redboardv2.pdf -------------------------------------------------------------------------------- /Documentation/Redboardv2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Documentation/Redboardv2.svg -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Hardware/README.md -------------------------------------------------------------------------------- /Hardware/RedBoard.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Hardware/RedBoard.brd -------------------------------------------------------------------------------- /Hardware/RedBoard.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Hardware/RedBoard.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Production/RedBoard_panel_v22.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/Production/RedBoard_panel_v22.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/RedBoard/HEAD/README.md --------------------------------------------------------------------------------