├── .gitattributes ├── .gitignore ├── Firmware ├── Arduija_Demo │ └── Arduija2_1_1.ino ├── EasyDriver_Example1 │ └── EasyDriver_Example1.ino ├── EasyDriver_Example2 │ └── EasyDriver_Example2.ino ├── EasyDriver_Example3 │ └── EasyDriver_Example3.ino ├── EasyDriver_Example4 │ └── EasyDriver_Example4.ino ├── EasyDriver_Example5 │ └── EasyDriver_Example5.ino ├── README.md └── SparkFun_Easy_Driver_Basic_Demo │ └── SparkFun_Easy_Driver_Basic_Demo.ino ├── Hardware ├── EasyDriver_v45.brd ├── EasyDriver_v45.sch ├── EasyDriver_v45_BOM.xls └── EasyDriver_v45_sch.pdf ├── Production └── EasyDriver_GiantPanel_v45.brd ├── README.md └── notes.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/.gitignore -------------------------------------------------------------------------------- /Firmware/Arduija_Demo/Arduija2_1_1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/Arduija_Demo/Arduija2_1_1.ino -------------------------------------------------------------------------------- /Firmware/EasyDriver_Example1/EasyDriver_Example1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/EasyDriver_Example1/EasyDriver_Example1.ino -------------------------------------------------------------------------------- /Firmware/EasyDriver_Example2/EasyDriver_Example2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/EasyDriver_Example2/EasyDriver_Example2.ino -------------------------------------------------------------------------------- /Firmware/EasyDriver_Example3/EasyDriver_Example3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/EasyDriver_Example3/EasyDriver_Example3.ino -------------------------------------------------------------------------------- /Firmware/EasyDriver_Example4/EasyDriver_Example4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/EasyDriver_Example4/EasyDriver_Example4.ino -------------------------------------------------------------------------------- /Firmware/EasyDriver_Example5/EasyDriver_Example5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/EasyDriver_Example5/EasyDriver_Example5.ino -------------------------------------------------------------------------------- /Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/README.md -------------------------------------------------------------------------------- /Firmware/SparkFun_Easy_Driver_Basic_Demo/SparkFun_Easy_Driver_Basic_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Firmware/SparkFun_Easy_Driver_Basic_Demo/SparkFun_Easy_Driver_Basic_Demo.ino -------------------------------------------------------------------------------- /Hardware/EasyDriver_v45.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Hardware/EasyDriver_v45.brd -------------------------------------------------------------------------------- /Hardware/EasyDriver_v45.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Hardware/EasyDriver_v45.sch -------------------------------------------------------------------------------- /Hardware/EasyDriver_v45_BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Hardware/EasyDriver_v45_BOM.xls -------------------------------------------------------------------------------- /Hardware/EasyDriver_v45_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Hardware/EasyDriver_v45_sch.pdf -------------------------------------------------------------------------------- /Production/EasyDriver_GiantPanel_v45.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/Production/EasyDriver_GiantPanel_v45.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/README.md -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Easy_Driver/HEAD/notes.txt --------------------------------------------------------------------------------