├── .gitignore ├── Documentation └── STUSB4500_Datasheet.pdf ├── Hardware ├── SparkFun_STUSB4500_USB-PD.brd └── SparkFun_STUSB4500_USB-PD.sch ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | 8 | # Eagle project file 9 | # It contains a serial number and references to the file structure 10 | # on your computer. 11 | # comment the following line if you want to have your project file included. 12 | eagle.epf 13 | 14 | # CAM files 15 | *.$$$ 16 | *.cmp 17 | *.ly2 18 | *.l15 19 | *.sol 20 | *.plc 21 | *.stc 22 | *.sts 23 | *.crc 24 | *.crs 25 | 26 | *.dri 27 | *.drl 28 | *.gpi 29 | *.pls 30 | 31 | *.drd 32 | *.drd.* 33 | 34 | *.info 35 | 36 | *.eps 37 | -------------------------------------------------------------------------------- /Documentation/STUSB4500_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Power_Delivery_Board-USB-C/42134985243912d4803d1ff985458e44d11f1ee0/Documentation/STUSB4500_Datasheet.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Power_Delivery_Board-USB-C/42134985243912d4803d1ff985458e44d11f1ee0/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SparkFun Power Delivery Board - USB-C 2 | ======================================== 3 | 4 | ![SparkFun Power Delivery Board - USB-C](https://cdn.sparkfun.com/assets/parts/1/4/4/1/4/15801-SparkFun_Power_Delivery_Board_-_USB-C__Qwiic_-01.jpg) 5 | 6 | [*SparkFun Power Delivery Board - USB-C (15801)*](https://www.sparkfun.com/products/15801) 7 | 8 | 9 | 10 | Repository Contents 11 | ------------------- 12 | 13 | * **/Hardware** - Eagle design files (.brd, .sch) 14 | 15 | Documentation 16 | -------------- 17 | * **[Hookup Guide](https://learn.sparkfun.com/tutorials/power-delivery-board---usb-c-qwiic-hookup-guide)** - Basic hookup guide for the Power Delivery Board - USB-C. 18 | * **[Arduino Library](https://github.com/sparkfun/SparkFun_STUSB4500_Arduino_Library)** - Arduino Library for use with the Power Delivery Board. 19 | * **[SparkFun Fritzing repo](https://github.com/sparkfun/Fritzing_Parts)** - Fritzing diagrams for SparkFun products. 20 | 21 | License Information 22 | ------------------- 23 | 24 | This product is _**open source**_! 25 | 26 | Please review the LICENSE.md file for license information. 27 | 28 | If you have any questions or concerns on licensing, please contact technical support on our [SparkFun forums](https://forum.sparkfun.com/viewforum.php?f=152). 29 | 30 | Distributed as-is; no warranty is given. 31 | 32 | - Your friends at SparkFun. 33 | 34 | __ 35 | --------------------------------------------------------------------------------