diff --git a/DCCpp_Uno/Config.h b/DCCpp_Uno/Config.h index 126f909..b05b78c 100644 --- a/DCCpp_Uno/Config.h +++ b/DCCpp_Uno/Config.h @@ -13,8 +13,9 @@ Part of DCC++ BASE STATION for the Arduino // // 0 = ARDUINO MOTOR SHIELD (MAX 18V/2A PER CHANNEL) // 1 = POLOLU MC33926 MOTOR SHIELD (MAX 28V/3A PER CHANNEL) +// 2 = CESM DCC++ HAT (MAX 28V/5A PER CHANNEL) -#define MOTOR_SHIELD_TYPE 0 +#define MOTOR_SHIELD_TYPE 2 ///////////////////////////////////////////////////////////////////////////////////// // diff --git a/DCCpp_Uno/CurrentMonitor.h b/DCCpp_Uno/CurrentMonitor.h index f4c301a..12ae8b2 100644 --- a/DCCpp_Uno/CurrentMonitor.h +++ b/DCCpp_Uno/CurrentMonitor.h @@ -15,7 +15,7 @@ Part of DCC++ BASE STATION for the Arduino #define CURRENT_SAMPLE_SMOOTHING 0.01 #define CURRENT_SAMPLE_MAX 300 -#ifdef ARDUINO_AVR_UNO // Configuration for UNO +#ifdef ARDUINO_AVR_UNO // Configuration for UNO/DCC++ HAT #define CURRENT_SAMPLE_TIME 10 #else // Configuration for MEGA #define CURRENT_SAMPLE_TIME 1 diff --git a/DCCpp_Uno/DCCpp_Uno.h b/DCCpp_Uno/DCCpp_Uno.h index d0f5f8b..9fd493b 100644 --- a/DCCpp_Uno/DCCpp_Uno.h +++ b/DCCpp_Uno/DCCpp_Uno.h @@ -16,7 +16,7 @@ Part of DCC++ BASE STATION for the Arduino // RELEASE VERSION ///////////////////////////////////////////////////////////////////////////////////// -#define VERSION "1.2.1+" +#define VERSION "1.2.2+" ///////////////////////////////////////////////////////////////////////////////////// // AUTO-SELECT ARDUINO BOARD @@ -28,14 +28,22 @@ Part of DCC++ BASE STATION for the Arduino #if defined ARDUINO_AVR_UNO - #define ARDUINO_TYPE "UNO" + #if MOTOR_SHIELD_TYPE == 3 + + #define ARDUINO_TYPE "DCC++ HAT" + + #else + + #define ARDUINO_TYPE "UNO" + + #endif #define DCC_SIGNAL_PIN_MAIN 10 // Ardunio Uno - uses OC1B #define DCC_SIGNAL_PIN_PROG 5 // Arduino Uno - uses OC0B #if COMM_INTERFACE != 0 // Serial was not selected - #error CANNOT COMPILE - DCC++ FOR THE UNO CAN ONLY USE SERIAL COMMUNICATION - PLEASE SELECT THIS IN THE CONFIG FILE + #error CANNOT COMPILE - DCC++ FOR THE UNO/DCC++ HAT CAN ONLY USE SERIAL COMMUNICATION - PLEASE SELECT THIS IN THE CONFIG FILE #endif @@ -48,7 +56,7 @@ Part of DCC++ BASE STATION for the Arduino #else - #error CANNOT COMPILE - DCC++ ONLY WORKS WITH AN ARDUINO UNO OR AN ARDUINO MEGA 1280/2560 + #error CANNOT COMPILE - DCC++ ONLY WORKS WITH AN ARDUINO UNO, DCC++ HAT, OR AN ARDUINO MEGA 1280/2560 #endif @@ -82,6 +90,19 @@ Part of DCC++ BASE STATION for the Arduino #define DIRECTION_MOTOR_CHANNEL_PIN_A 7 #define DIRECTION_MOTOR_CHANNEL_PIN_B 8 +#elif MOTOR_SHIELD_TYPE == 2 + + #define MOTOR_SHIELD_NAME "DCC++ HAT - INTEGRATED MOTOR DRIVER" + + #define SIGNAL_ENABLE_PIN_MAIN 3 + #define SIGNAL_ENABLE_PIN_PROG 11 + + #define CURRENT_MONITOR_PIN_MAIN A0 + #define CURRENT_MONITOR_PIN_PROG A1 + + #define DIRECTION_MOTOR_CHANNEL_PIN_A 10 + #define DIRECTION_MOTOR_CHANNEL_PIN_B 5 + #else #error CANNOT COMPILE - PLEASE SELECT A PROPER MOTOR SHIELD TYPE diff --git a/DCCpp_Uno/DCCpp_Uno.ino b/DCCpp_Uno/DCCpp_Uno.ino index 9378374..b27fd29 100644 --- a/DCCpp_Uno/DCCpp_Uno.ino +++ b/DCCpp_Uno/DCCpp_Uno.ino @@ -22,9 +22,9 @@ COPYRIGHT (c) 2013-2016 Gregg E. Berman DCC++ BASE STATION is a C++ program written for the Arduino Uno and Arduino Mega using the Arduino IDE 1.6.6. -It allows a standard Arduino Uno or Mega with an Arduino Motor Shield (as well as others) -to be used as a fully-functioning digital command and control (DCC) base station -for controlling model train layouts that conform to current National Model +It allows a standard Arduino Uno or Mega with an Arduino Motor Shield (as well as others), +or a DCC++ Raspberry Pi HAT, to be used as a fully-functioning digital command and control +(DCC) base station for controlling model train layouts that conform to current National Model Railroad Association (NMRA) DCC standards. This version of DCC++ BASE STATION supports: @@ -46,11 +46,18 @@ This version of DCC++ BASE STATION supports: DCC++ BASE STATION is controlled with simple text commands received via the Arduino's serial interface. Users can type these commands directly into the Arduino IDE Serial Monitor, or can send such commands from another -device or computer program. +device or computer program. On the DCC++ HAT, serial commands are sent directly through +the UART port available on the GPIO haeder of the Raspberry Pi. When compiled for the Arduino Mega, an Ethernet Shield can be used for network communications instead of using serial communications. +When the DCC++ HAT is used, programming must be carried out by the ICSP header. The programmer +cab be most any arduino board. Upload the ArduinoISP program from the examples to the Arduino, +connect the ISP header to the Arduino as specified in the example code, and then plug the +Arduino into your computer and select Sketch>Upload using Programmer. Ensure that you have selected +the "Arduino/Genuino Uno" option and "Arduino as ISP" from the Tools menu. + DCC++ CONTROLLER, available separately under a similar open-source license, is a Java program written using the Processing library and Processing IDE that provides a complete and configurable graphic interface to control model train layouts @@ -79,8 +86,8 @@ REFERENCES: BRIEF NOTES ON THE THEORY AND OPERATION OF DCC++ BASE STATION: -DCC++ BASE STATION for the Uno configures the OC0B interrupt pin associated with Timer 0, -and the OC1B interupt pin associated with Timer 1, to generate separate 0-5V +DCC++ BASE STATION for the Uno/DCC++ HAT configures the OC0B interrupt pin associated +with Timer 0, and the OC1B interupt pin associated with Timer 1, to generate separate 0-5V unipolar signals that each properly encode zero and one bits conforming with DCC timing standards. When compiled for the Mega, DCC++ BASE STATION uses OC3B instead of OC0B. @@ -129,11 +136,14 @@ For the Mega, the OC1B output is produced directly on pin 12, so no jumper is ne Motor Shield's DIRECTION A input. However, one small jumper wire is needed to connect the Mega's OC3B output (pin 2) to the Motor Shield's DIRECTION B input (pin 13). +For the DCC++ HAT, all pins are properly connected to the motor driver chip (5A), and no jumpers are required. + Other Motor Shields may require different sets of jumper or configurations (see Config.h and DCCpp_Uno.h for details). When configured as such, the CHANNEL A and CHANNEL B outputs of the Motor Shield may be connected directly to the tracks. This software assumes CHANNEL A is connected -to the Main Operations Track, and CHANNEL B is connected to the Programming Track. +to the Main Operations Track, and CHANNEL B is connected to the Programming Track. The +Programming Track and the Main Operations Track are labelled on the DCC++ HAT. DCC++ BASE STATION in split into multiple modules, each with its own header file: @@ -234,7 +244,7 @@ void setup(){ if(!digitalRead(A5)) showConfiguration(); - Serial.print(" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +DCC++ HAT - 5 Amps +Revision 0.1 - 4/8/17 +Design by David Cutting +Copyright (C) 2017 CESM +MAIN +PROG + + + + + + + + + + + +GND V+ + + + + +Use ICSP header only when DCC++ +HAT is not plugged into Raspberry +Pi. Failure to do so will result +in destruction of Raspberry Pi. +RESET +Max Sustained Current Draw: 5A +Max Peak Current Draw: 6A +DCC++ +https://github.com/DccPlusPlus +(C) 2013-2016 Gregg E. Berman +C1 +C2 +C3 +C4 +C5 +C6 +C7 +C8 +C9 +C10 +R1 +R2 +R3 +R4 +R5 +R7 +U1 +U2 +U3 +Y1 + + + +<h3>SparkFun Capacitors</h3> +This library contains capacitors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<p><b>Generic 1608 (0603) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + +<b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package E</b> + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + +<b>Freescale</b><p> +www.freescale.com<br> +<author>Created by librarian@cadsoft.de</author> + + +<b>44 LEAD HSOP W/PROTRUDING HEADSINK</b><p> +Source: http://www.freescale.com/files/shared/doc/package_info/98ARH98330A.pdf + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>Screw Terminal 5mm Pitch -2 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 5mm/197mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole - 2x20 No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:40</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_20x2</li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>SparkFun Resistors</h3> +This library contains resistors. Reference designator:R. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<p><b>Generic 1608 (0603) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + + + +<h3>SparkFun Microcontrollers</h3> +This library contains microcontrollers. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>SparkFun Logic ICs</h3> +This library contains parts which fit into the standard logic IC families.<br><br> +This library is special as the devices are most generalized, with manufacturer specific variants stemming from the generalized numbers. It also uses individual gates for common parts with a power consort. Place the gates in a schematic such that they are easy to see in the circuit, and apply power to the power symbol for multigate packages. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>SOT353 aka SC70-5</h3> +Used on single circuit logic gates + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>SparkFun Clocks, Oscillators and Resonators</h3> +This library contains the real-time clocks, oscillators, resonators, and crystals we use. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>3.2x1.3mm 3-Pin SMD Resonator</h3> +<p><a href="http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p16e.ashx">Example datasheet</a> (CSTCE_VH3L)</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<b>Microchip PIC Microcontrollers and other Devices</b><p> +Based on the following sources : +<ul> +<li>Microchip Data Book, 1993 +<li>THE EMERGING WORLD STANDARD, 1995/1996 +<li>Microchip, Technical Library CD-ROM, June 1998 +<li>www.microchip.com +</ul> +<author>Created by librarian@cadsoft.de</author> + + +<B>Small Outline Narrow Plastic Gull Wing</B><p> +150-mil body, package type SN + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE +IPC SO8 +JEDEC MS-012 AA + + + + + + + + + + + + + +<h3>SparkFun Jumpers</h3> +In this library you'll find jumpers, or other semipermanent means of changing current paths. The least permanent form is the solder jumper. These can be changed by adding, removing, or moving solder. In cases that are less likely to be changed we have jumpers that are connected with traces. These can be cut with a razor, or reconnected with solder. Reference designator JP. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +>NAME +>VALUE + + + + + + + + + + + + + + +<h3>SparkFun Switches, Buttons, Encoders</h3> +In this library you'll find switches, buttons, joysticks, and anything that moves to create or disrupt an electrical connection. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 5.2mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://www.sparkfun.com/datasheets/Components/Buttons/SMD-Button.pdf">Dimensional Drawing</a></p> + + + + + + + + + + + + + + + + +>Name +>Value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +1 + + + + +<h3>SparkFun Aesthetics</h3> +This library contiains non-functional items such as logos, build/ordering notes, frame blocks, etc. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>Open-Source Hardware (OSHW) Logo - Large - Silkscreen</h3> +<p>Silkscreen logo for open-source hardware designs.</p> +<p>Devices using: +<ul><li>OSHW_LOGO</li></ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>Restriction of Hazardous Substances (RoHS) Logo - 0.18in Height</h3> +<p>Logo for RoHS-certified hardware.</p> +<p>Devices using: +<ul><li>ROHS_LOGO</li></ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>Lead-Free (No Pb) Logo - 0.12in Diameter</h3> +<p>Logo for lead-safe certified hardware.</p> +<p>Devices using: +<ul><li>NO_PB_LOGO</li></ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<b>Electronic and CadSoft EAGLE logos</b><p> + + +<b>Logo ESD 10 mm</b> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab. +<b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Since Version 6.2.2 text objects can contain more than one line, +which will not be processed correctly with this version. + + + diff --git a/Hardware/BoosterHC HAT V0_1.pdf b/Hardware/BoosterHC HAT V0_1.pdf new file mode 100644 index 0000000..48673ce Binary files /dev/null and b/Hardware/BoosterHC HAT V0_1.pdf differ diff --git a/Hardware/BoosterHC HAT V0_1.sch b/Hardware/BoosterHC HAT V0_1.sch new file mode 100644 index 0000000..5dc2d6f --- /dev/null +++ b/Hardware/BoosterHC HAT V0_1.sch @@ -0,0 +1,6064 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>Plated Through Hole - 2x20 Shrouded Header</h3> +<p>Specifications: +<ul><li>Pin count:40</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://cdn.sparkfun.com/datasheets/Dev/RaspberryPi/B-D-xx1X.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_20x2</li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + +<h3>Surface Mount - 2x20 Shrouded Header</h3> +<p>Specifications: +<ul><li>Pin count:40</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”http://sullinscorp.com/catalogs/145_PAGE118_.100_SBH11_SERIES_MALE_BOX_HDR_ST_RA_SMT.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_20x2</li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + +<h3>Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Molex 2-Pin Plated Through-Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>JST-Right Angle Male Header SMT</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +<li>JST_2MM_MALE</li> +</ul></p> + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.15"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + +>NAME +>VALUE + + +<h3>JST-Vertical Male Header SMT </h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Screw Terminal 5mm Pitch -2 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 5mm/197mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole - Locking Footprint</h3> +Holes are staggered by 0.005" from center to hold pins while soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Molex 2-Pin Plated Through-Hole Locking Footprint</h3> +Holes are offset from center by 0.005" to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole - Long Pads with Locking Footprint</h3> +Pins are staggered by 0.005" from center to hold pins in place while soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking</h3> +Holes are offset from center 0.005" to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole - Long Pads without Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + +>NAME +>VALUE + + +<h3>Plated Through Hole - No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + +>NAME +>VALUE + + +<h3>JST 2 Pin Right Angle Plated Through Hole</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + +>Name +>Value ++ +- + + + + + + + + + +<h3>Plated Through Hole - 0.1" holes</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.2"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + +>NAME +>VALUE + + +<h3>Pogo Pins Connector - No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + +>NAME +>VALUE + + +<h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + +>NAME +>VALUE + + +<h3>JST 2 Pin Right Angle Plated Through Hole- No Silk</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<br> No silk outline of connector. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + +>Name +>Value ++ +- + + +<h3>JST 2 Pin Right Angle Plated Through Hole - KIT</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<br> This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. +<br> This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + +>Name +>Value ++ +- + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>Spring Terminal- PCB Mount 2 Pin PTH</h3> +tDocu marks the spring arms +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/SpringTerminal.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + + + + + + + + + + + +<h3>2 Pin Screw Terminal - 2.54mm</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p> + + + + + + + + + +>NAME +>VALUE + + +2 pin poke-home connector + +part number 2062-2P from STA + + + + + + + + + +>NAME +>VALUE + + +<h3>Plated Through Hole - 2x20</h3> +<p>Specifications: +<ul><li>Pin count:40</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_20x2</li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>Plated Through Hole - 2x20 No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:40</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_20x2</li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>2 Pin Connection</h3> + + + + + + +>VALUE +>NAME + + + + +<h3> 40 Pin Connection</h3> +20x2 pin layout + + + + + + + + + + + + + + +>VALUE +>NAME + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> + +<p></p> +<b>On any of the 0.1 inch spaced packages, you can populate with these:</b> +<ul> +<li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> +<li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> +<li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> +<li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> +<li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> +</ul> + +<p></p> +<b> For SCREWTERMINALS and SPRING TERMINALS visit here:</b> +<ul> +<li><a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"> Screw Terimnals on SparkFun.com</a> (5mm/3.5mm/2.54mm spacing)</li> +</ul> + +<p></p> +<b>This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.</b> +<ul> +<li><a href="https://www.sparkfun.com/products/11375"> Hook-Up Wire - Assortment (Stranded, 22 AWG)</a> (PRT-11375)</li> +<li><a href="https://www.sparkfun.com/products/11367"> Hook-Up Wire - Assortment (Solid Core, 22 AWG)</a> (PRT-11367)</li> +<li><a href="https://www.sparkfun.com/categories/141"> View the entire wire category on our website here</a></li> +<p></p> +</ul> + +<p></p> +<b>Special notes:</b> + + Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.<br><br> + +2.54_SCREWTERM for use with PRT-10571.<br><br> + +3.5mm Screw Terminal footprints for PRT-08084<br><br> + +5mm Screw Terminal footprints for use with PRT-08432 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> + +<p></p> +<b>On any of the 0.1 inch spaced packages, you can populate with these:</b> +<ul> +<li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> +<li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> +<li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> +<li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> +<li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> +</ul> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Microcontrollers</h3> +This library contains microcontrollers. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +Symbol for Atmega328/168/88/48 chips, 32-pin version + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3></h3> +<p></p> +<p><a href="">Datasheet</a></p> +<h4>SparkFun Products</h4> +<ul> +<li><a href=""></a> ()</li> +<li><a href=""></a> ()</li> +</ul> + + +32-Pin Atmega328 part<BR> +Commonly used on Arduino compatible boards<br> +Available in QFP and QFN packages<br> +TQFP is IC-09069 +QFN is non-stock + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<b>Freescale</b><p> +www.freescale.com<br> +<author>Created by librarian@cadsoft.de</author> + + +<b>44 LEAD HSOP W/PROTRUDING HEADSINK</b><p> +Source: http://www.freescale.com/files/shared/doc/package_info/98ARH98330A.pdf + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<b>5.0 A Throttle Control H-Bridge</b><p> +Auto generated by <i>make-symbol-device-package-bsdl.ulp Rev. 33</i><br> +Source: http://www.freescale.com/files/analog/doc/data_sheet/MC33932.pdf?fpsp=1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Power Symbols</h3> +This library contains power, ground, and voltage-supply symbols. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + + + +<h3>3.3V Voltage Supply</h3> + + + +>VALUE + + +<h3>Digital Ground Supply</h3> + + +>VALUE + + +<h3>12V Voltage Supply</h3> + + + +>VALUE + + + + +<h3>3.3V Supply Symbol</h3> +<p>Power supply symbol for a specifically-stated 3.3V source.</p> + + + + + + + + + + + + +<h3>Ground Supply Symbol</h3> +<p>Generic signal ground supply symbol.</p> + + + + + + + + + + + + +<h3>12V Supply Symbol</h3> +<p>Power supply symbol for a specifically-stated 12V source.</p> + + + + + + + + + + + + + + +<h3>SparkFun Clocks, Oscillators and Resonators</h3> +This library contains the real-time clocks, oscillators, resonators, and crystals we use. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>3.2x1.3mm 3-Pin SMD Resonator</h3> +<p><a href="http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p16e.ashx">Example datasheet</a> (CSTCE_VH3L)</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + +<h3>Resonator</h3> + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + +<h3>8MHz Resonator</h3> +<p><a href="http://www.digikey.com/product-detail/en/murata-electronics-north-america/CSTCE10M0G55-R0/490-1196-1-ND/584633">Digikey Example</a></p> +<p><ul><li>Frequency: 8MHz</li> +<li>Frequency Stability: &plusmn;0.2%</li> +<li>Frequency Tolerance: &plusmn;0.5%</li> +<li>Capacitance: 33pF</li></ul></p> +<p>SparkFun Products</p> +<ul><li><a href=”https://www.sparkfun.com/products/11114”>Arduino Pro Mini 328- 3.3V/8MHz</a></li> +<li><a href=”https://www.sparkfun.com/products/12651”>SparkFun Digital Sandbox</a></li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Capacitors</h3> +This library contains capacitors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<p><b>Generic 1005 (0402) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + +<p><b>Generic 1608 (0603) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + +<h3>CAP-PTH-SMALL-KIT</h3> +Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).<br> +<br> +<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<p><b>Generic 2012 (0805) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + +>NAME +>VALUE + + + + + + +<p><b>Generic 3216 (1206) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + +EIA 7343 tantalum capacitor + + + + + + + + + + +>Name +>Value + + +2.5 mm spaced PTHs with 6.5 mm diameter outline + + + + +>Value +>Name + + + + +Some old package in our library + + + + + + + + + + + + +>NAME +>VALUE + + +<b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package E</b> + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + +>NAME +>VALUE + + + + + + + + +<h3>0.1µF ceramic capacitors</h3> +<p>A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>33nF ceramic capacitors</h3> +<p>A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</p> + + + + + + + + + + + + + + + + + + + +<h3>1µF ceramic capacitors</h3> +<p>A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>100µF polarized capacitors</h3> +<p>A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>47nF ceramic capacitors</h3> +<p>A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</p> + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Logic ICs</h3> +This library contains parts which fit into the standard logic IC families.<br><br> +This library is special as the devices are most generalized, with manufacturer specific variants stemming from the generalized numbers. It also uses individual gates for common parts with a power consort. Place the gates in a schematic such that they are easy to see in the circuit, and apply power to the power symbol for multigate packages. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>SOT353 aka SC70-5</h3> +Used on single circuit logic gates + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + +>NAME +>VALUE +VEE +VCC + + + + +<h3>Single Inverter</h3> +<p>IC NOT GATE INVERTER SNGL 1IN SOT353<br> +Supply: 1.65V to 5.5V +</p> +<p><a href="http://diodes.com/datasheets/74LVC1G04.pdf">Datasheet</a></p> +<h4>SparkFun Products</h4> +<ul> +<li><a href="https://www.sparkfun.com/products/13899">SparkFun Stepoko</a> (ROB-13899)</li> +<li><a href="https://www.sparkfun.com/products/13183">SparkFun CryptoShield</a> (DEV-13183)</li> +<li><a href="https://www.sparkfun.com/products/11006">SparkFun LogicBlocks Kit</a> (KIT-11006)</li> +<li><a href="https://www.sparkfun.com/products/9815">SparkFun ArduMoto</a> (DEV-09815)</li> +</ul> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Resistors</h3> +This library contains resistors. Reference designator:R. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<p><b>Generic 1608 (0603) package</b></p> +<p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + +<h3>200Ω resistor</h3> +<p>A resistor is a passive two-terminal electrical component that implements electrical resistance as a circuit element. Resistors act to reduce current flow, and, at the same time, act to lower voltage levels within circuits. - Wikipedia</p> + + + + + + + + + + + + + + + + + + + + + +<b>Microchip PIC Microcontrollers and other Devices</b><p> +Based on the following sources : +<ul> +<li>Microchip Data Book, 1993 +<li>THE EMERGING WORLD STANDARD, 1995/1996 +<li>Microchip, Technical Library CD-ROM, June 1998 +<li>www.microchip.com +</ul> +<author>Created by librarian@cadsoft.de</author> + + +<B>Small Outline Medium Plastic Gull Wing</B><p> +207-mil body, package type SM + + + + + + + + + + + + + + + +>NAME +>VALUE +SO8 Medium +Microchip + + + + + + + + + + +<B>Small Outline Narrow Plastic Gull Wing</B><p> +150-mil body, package type SL + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE +JEDEC MS-012 AB +IPC SO14 + + + + + + + + + + + + + + + + +<B>Dual In Line</B><p> +package type P + + + + + + + + + + + + + + +>NAME +>VALUE + + +<B>Small Outline Narrow Plastic Gull Wing</B><p> +150-mil body, package type SN + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE +IPC SO8 +JEDEC MS-012 AA + + + + + + + + + + + +<b>Thin Shrink Small Outline Package</b><p> +package type ST + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Array +VCC +GND +>NAME +>VALUE +EEPROM + + + + + + + + + + + + +Serial <B>EEPROM</B><p> +I2C + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Jumpers</h3> +In this library you'll find jumpers, or other semipermanent means of changing current paths. The least permanent form is the solder jumper. These can be changed by adding, removing, or moving solder. In cases that are less likely to be changed we have jumpers that are connected with traces. These can be cut with a razor, or reconnected with solder. Reference designator JP. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +>NAME +>VALUE + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + +<h3>Normally open jumper</h3> +<p>This jumper has two pads in close proximity to each other. Apply solder to close the connection.</p> + +<p>Round pads are easier to solder for beginners, but are a lot larger.</p> +<p>SparkFun Product that uses the round pads: +<ul><li><a href="https://www.sparkfun.com/products/12781">SparkFun EL Sequencer</a></li> +</ul></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<h3>SparkFun Switches, Buttons, Encoders</h3> +In this library you'll find switches, buttons, joysticks, and anything that moves to create or disrupt an electrical connection. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. + + +<h3>Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf">Datasheet</a> (B3F-1000)</p> + + + + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 4.5mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="http://spec_sheets.e-switch.com/specs/P010338.pdf">Dimensional Drawing</a></p> + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - PTH, 12mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf">Datasheet</a> (B3F-5050)</p> + + + + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 6.0 x 3.5 mm</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://www.sparkfun.com/datasheets/Components/1101.pdf">Datasheet</a></p> + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 6.2mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="http://www.apem.com/files/apem/brochures/ADTS6-ADTSM-KTSC6.pdf">Datasheet</a> (ADTSM63NVTR)</p> + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - PTH, Right-angle</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="http://cdn.sparkfun.com/datasheets/Components/Switches/SW016.JPG">Dimensional Drawing</a></p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 12mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://cdn.sparkfun.com/datasheets/Components/Switches/N301102.pdf">Datasheet</a></p> + + + + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</p> +<p><a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf">Datasheet</a> (B3F-1000)</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 5.2mm Square</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="https://www.sparkfun.com/datasheets/Components/Buttons/SMD-Button.pdf">Dimensional Drawing</a></p> + + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, Right-angle</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> + + + + + + + + + + + + + + + +>Name +>Value + + +<h3>Momentary Switch (Pushbutton) - SPST - SMD, 4.6 x 2.8mm</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<p><a href="http://www.ck-components.com/media/1479/kmr2.pdf">Datasheet</a></p> + + + + + + + + + + + + + + + + + +>Name +>Value + + + + +<h3>Momentary Switch (Pushbutton) - SPST</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> + + + + +>NAME +>VALUE + + + + + + +<h3>Momentary Switch (Pushbutton) - SPST</h3> +<p>Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</p> +<h4>Variants</h4> +<h5>PTH-12MM - 12mm square, through-hole</h5> +<ul><li><a href="https://www.sparkfun.com/products/9190">Momentary Pushbutton Switch - 12mm Square</a> (COM-09190)</li></ul> +<h5>PTH-6.0MM, PTH-6.0MM-KIT - 6.0mm square, through-hole</h5> +<ul><li><a href="https://www.sparkfun.com/products/97">Mini Pushbutton Switch</a> (COM-00097)</li> +<li>KIT package intended for soldering kit's - only one side of pads' copper is exposed.</li></ul> +<h5>PTH-RIGHT-ANGLE-KIT - Right-angle, through-hole</h5> +<ul><li><a href="https://www.sparkfun.com/products/10791">Right Angle Tactile Button</a> - Used on <a href="https://www.sparkfun.com/products/11734"> +SparkFun BigTime Watch Kit</a></li></ul> +<h5>SMD-12MM - 12mm square, surface-mount</h5> +<ul><li><a href="https://www.sparkfun.com/products/12993">Tactile Button - SMD (12mm)</a> (COM-12993)</li> +<li>Used on <a href="https://www.sparkfun.com/products/11888">SparkFun PicoBoard</a></li></ul> +<h5>SMD-4.5MM - 4.5mm Square Trackball Switch</h5> +<ul><li>Used on <a href="https://www.sparkfun.com/products/13169">SparkFun Blackberry Trackballer Breakout</a></li></ul> +<h5>SMD-4.6MMX2.8MM - 4.60mm x 2.80mm, surface mount</h5> +<ul><li>Used on <a href="https://www.sparkfun.com/products/13664">SparkFun SAMD21 Mini Breakout</a></li></ul> +<h5>SMD-5.2MM, SMD-5.2-REDUNDANT - 5.2mm square, surface-mount</h5> +<ul><li><a href="https://www.sparkfun.com/products/8720">Mini Pushbutton Switch - SMD</a> (COM-08720)</li> +<li>Used on <a href="https://www.sparkfun.com/products/11114">Arduino Pro Mini</a></li> +<li>REDUNDANT package connects both switch circuits together</li></ul> +<h5>SMD-6.0X3.5MM - 6.0 x 3.5mm, surface mount</h5> +<ul><li><a href="https://www.sparkfun.com/products/8229">Momentary Reset Switch SMD</a> (COM-08229)</li></ul> +<h5>SMD-6.2MM-TALL - 6.2mm square, surface mount</h5> +<ul><li><a href="https://www.sparkfun.com/products/12992">Tactile Button - SMD (6mm)</a></li> +<li>Used on <a href="https://www.sparkfun.com/products/12651">SparkFun Digital Sandbox</a></li></ul> +<h5>SMD-RIGHT-ANGLE - Right-angle, surface mount</h5> +<ul><li>Used on <a href="https://www.sparkfun.com/products/13036">SparkFun Block for Intel® Edison - Arduino</a></li></ul> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +1 + + + + + + + + +>NAME + + + + + + + + + + + + + + + + + + + + + +>NAME + + + + + + + + + + +<b>AVR ISP HEADER</b> +<br> +Standard 6 pin header for AVR programming + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Hardware/BoosterHC HAT V0_1.zip b/Hardware/BoosterHC HAT V0_1.zip new file mode 100644 index 0000000..3852958 Binary files /dev/null and b/Hardware/BoosterHC HAT V0_1.zip differ diff --git a/Hardware/BoosterHC HAT V0_2.pdf b/Hardware/BoosterHC HAT V0_2.pdf new file mode 100644 index 0000000..ae921a4 Binary files /dev/null and b/Hardware/BoosterHC HAT V0_2.pdf differ diff --git a/Hardware/BoosterHC HAT V0_3.pdf b/Hardware/BoosterHC HAT V0_3.pdf new file mode 100644 index 0000000..33bd6ff Binary files /dev/null and b/Hardware/BoosterHC HAT V0_3.pdf differ diff --git a/Hardware/BoosterHC HAT V1_0.pdf b/Hardware/BoosterHC HAT V1_0.pdf new file mode 100644 index 0000000..1b8c11f Binary files /dev/null and b/Hardware/BoosterHC HAT V1_0.pdf differ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..b372fff --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 David Cutting + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 9b63ac8..ed29777 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,24 @@ -What’s DCC++ +What’s DCC++? ------------ DCC++ is an open-source hardware and software system for the operation of DCC-equipped model railroads. The system consists of two parts, the DCC++ Base Station and the DCC++ Controller. -The DCC++ Base Station consists of an Arduino micro controller fitted with an Arduino Motor Shield that can be connected directly to the tracks of a model railroad. +The DCC++ Base Station consists of a DCC++ HAT for the Raspberry Pi or an Arduino microcontroller fitted with an Arduino Motor Shield that can be connected directly to the tracks of a model railroad. -The DCC++ Controller provides operators with a customizable GUI to control their model railroad. It is written in Java using the Processing graphics library and IDE and communicates with the DCC++ Base Station via a standard serial connection over a USB cable or wireless over BlueTooth. +The DCC++ Controller (https://github.com/DccPlusPlus/Controller) provides operators with a customizable GUI to control their model railroad. It is written in Java using the Processing graphics library and IDE and communicates with the DCC++ Base Station via a standard serial connection over a USB cable or wireless over BlueTooth. In the case of the DCC++ HAT, the seriall interface is used. What’s in this Repository ------------------------- -This repository, BaseStation-Uno, contains a complete DCC++ Base Station sketch designed for compiling and uploading into an Arduino Uno. All sketch files are in the folder named DCCpp_Uno. More information about the sketch can be found in the included PDF file. +This repository, BaseStationHAT, contains a complete DCC++ Base Station sketch designed for compiling and uploading into a DCC++ HAT. All sketch files are in the folder named DCCppHAT. More information about the sketch can be found in the comments in the sketch, as well as the support section of http://www.cescalemodels.com/dcc/ -To utilize this sketch, simply download a zip file of this repository and open the file DCCpp_Uno.ino within the DCCpp_Uno folder using your Arduino IDE. Please do not rename the folder containing the sketch code, nor add any files to that folder. The Arduino IDE relies on the structure and name of the folder to properly display and compile the code. +To utilize this sketch, simply download a zip file of this repository and open the file DCCppHAT.ino within the DCCppHAT folder using your Arduino IDE. Please do not rename the folder containing the sketch code, nor add any files to that folder. The Arduino IDE relies on the structure and name of the folder to properly display and compile the code. -The latest production release of the Master branch is 1.2.1: +The latest production release of the Master branch is 1.2.2: -* Supports both the Arduino Uno and Arduino Mega +* Supports the DCC++ HAT, Arduino Uno, Arduino Mega, and * Built-in configuration for both the original Arduino Motor Shield as well as a Pololu MC33926 Motor Shield * Built-in configuration and support of Ethernet Shields (for use with Mega only) @@ -33,5 +33,5 @@ The Master branch contains all of the Base Station functionality showed in the D Since these modules are very layout-specififc, they are not included in the Master branch. However, they are included in the Development branch. Please feel free to download and copy any relevant code to customize your own version of DCC++ Base Station. --December 27, 2015 +-April 12, 2017