├── .gitignore ├── BOM.pdf ├── Case ├── SAMPad_5rows.svg └── SAMPad_6rows.svg ├── PCB.png ├── PCB.svg ├── PCB ├── LICENSE ├── SAMPad.cmp ├── SAMPad.kicad_pcb ├── SAMPad.net ├── SAMPad.pro ├── SAMPad.sch ├── fp-lib-table ├── gerbers │ ├── SAMPad-B.Cu.gbl │ ├── SAMPad-B.Mask.gbs │ ├── SAMPad-B.Paste.gbp │ ├── SAMPad-B.SilkS.gbo │ ├── SAMPad-Edge.Cuts.gm1 │ ├── SAMPad-F.Cu.gtl │ ├── SAMPad-F.Mask.gts │ ├── SAMPad-F.Paste.gtp │ ├── SAMPad-F.SilkS.gto │ ├── SAMPad-NPTH.drl │ ├── SAMPad.drl │ └── SAMPad.gvp ├── ledmatrix.sch ├── lib │ └── SAMPad.lib ├── mcu.sch └── prettylib │ ├── BUZZER_SMT.kicad_mod │ ├── BreakHoles.kicad_mod │ ├── DIPS4.kicad_mod │ ├── ENCODER_12MM.kicad_mod │ ├── FID.kicad_mod │ ├── Fuse_SMD1206.kicad_mod │ ├── HM-10.kicad_mod │ ├── INSW_LEDS_REG.kicad_mod │ ├── Inductor_Bourn_4mmx4mm.kicad_mod │ ├── JLINK_NEEDLE.kicad_mod │ ├── JST_PH_2.kicad_mod │ ├── JUMPER_SMD_2.kicad_mod │ ├── JUMPER_SMD_3.kicad_mod │ ├── Jumper_SMD_3way.kicad_mod │ ├── LED-3MM.kicad_mod │ ├── LED_0805.kicad_mod │ ├── MSOP-10.kicad_mod │ ├── MSOP-8.kicad_mod │ ├── MXALPS.kicad_mod │ ├── MXALPS2.kicad_mod │ ├── MX_200.kicad_mod │ ├── MX_ISO.kicad_mod │ ├── NX3225SA.kicad_mod │ ├── OSHW.kicad_mod │ ├── Pin_Header_1x02.kicad_mod │ ├── Pin_Header_1x05.kicad_mod │ ├── Pin_Header_1x06.kicad_mod │ ├── Pin_Header_1x10.kicad_mod │ ├── Pin_Header_2x10.kicad_mod │ ├── SAMPad-Logo.kicad_mod │ ├── SMD_0805.kicad_mod │ ├── SOD123-DIODE.kicad_mod │ ├── SOT-23-5.kicad_mod │ ├── SOT-23-6.kicad_mod │ ├── SOT-23.kicad_mod │ ├── SOT457.kicad_mod │ ├── SSOP-24.kicad_mod │ ├── TACT_5.2x5.2.kicad_mod │ ├── TC2030_BIG.kicad_mod │ ├── TQFP-64.kicad_mod │ ├── TQFP44.kicad_mod │ ├── TS65-LOGO.kicad_mod │ ├── TSSOP-16.kicad_mod │ ├── USB3_AFEMALE_MOD.kicad_mod │ ├── USB3_MICROB.kicad_mod │ ├── USB_Micro-B.kicad_mod │ ├── VSSOP8.kicad_mod │ └── WS2812B.kicad_mod ├── README.md ├── layouts.png └── schematics.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | .apdisk 49 | *.bak 50 | *.bck 51 | *.kicad_pcb-bak 52 | *.bck 53 | *.dcm 54 | /PCB/*-cache.lib 55 | /Local/ -------------------------------------------------------------------------------- /BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitg11/SAMPad/7abb9d1b25d0cdf6a313904ca391be4438a21741/BOM.pdf -------------------------------------------------------------------------------- /PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitg11/SAMPad/7abb9d1b25d0cdf6a313904ca391be4438a21741/PCB.png -------------------------------------------------------------------------------- /PCB/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /PCB/SAMPad.cmp: -------------------------------------------------------------------------------- 1 | Cmp-Mod V01 Created by PcbNew date = 5/21/2016 1:01:05 AM 2 | 3 | BeginCmp 4 | TimeStamp = 56F93292 5 | Path = /549878F0/56D9FDD4 6 | Reference = U1; 7 | ValeurCmp = ATMEGA32U4; 8 | IdModule = prettylib:TQFP44; 9 | EndCmp 10 | 11 | BeginCmp 12 | TimeStamp = 56F815B3 13 | Path = /56C7A6BF 14 | Reference = STAB6; 15 | ValeurCmp = MISC; 16 | IdModule = prettylib:MX_200; 17 | EndCmp 18 | 19 | BeginCmp 20 | TimeStamp = 56F81170 21 | Path = /54B2C0DD/57003988 22 | Reference = CLED1; 23 | ValeurCmp = 0.1 uF; 24 | IdModule = prettylib:SMD_0805; 25 | EndCmp 26 | 27 | BeginCmp 28 | TimeStamp = 56F8161B 29 | Path = /549878F0/549A5A7F 30 | Reference = X1; 31 | ValeurCmp = CRYSTAL; 32 | IdModule = prettylib:NX3225SA; 33 | EndCmp 34 | 35 | BeginCmp 36 | TimeStamp = 56F81613 37 | Path = /549878F0/56E6FA49 38 | Reference = U5; 39 | ValeurCmp = PAM2804; 40 | IdModule = prettylib:SOT-23-5; 41 | EndCmp 42 | 43 | BeginCmp 44 | TimeStamp = 56F81601 45 | Path = /549878F0/56C7D369 46 | Reference = U3; 47 | ValeurCmp = IP4234CZ6; 48 | IdModule = prettylib:SOT457; 49 | EndCmp 50 | 51 | BeginCmp 52 | TimeStamp = 56F815AB 53 | Path = /56C6EA58 54 | Reference = STAB5; 55 | ValeurCmp = MISC; 56 | IdModule = prettylib:MX_200; 57 | EndCmp 58 | 59 | BeginCmp 60 | TimeStamp = 56F815A3 61 | Path = /56C6F49D 62 | Reference = STAB4; 63 | ValeurCmp = MISC; 64 | IdModule = prettylib:MX_200; 65 | EndCmp 66 | 67 | BeginCmp 68 | TimeStamp = 56F8159B 69 | Path = /56C6EF7A 70 | Reference = STAB3; 71 | ValeurCmp = MISC; 72 | IdModule = prettylib:MX_200; 73 | EndCmp 74 | 75 | BeginCmp 76 | TimeStamp = 56F81593 77 | Path = /56C72EB7 78 | Reference = STAB2; 79 | ValeurCmp = MISC; 80 | IdModule = prettylib:MX_200; 81 | EndCmp 82 | 83 | BeginCmp 84 | TimeStamp = 56F8158B 85 | Path = /56C7340C 86 | Reference = STAB1; 87 | ValeurCmp = MISC; 88 | IdModule = prettylib:MX_200; 89 | EndCmp 90 | 91 | BeginCmp 92 | TimeStamp = 56F81428 93 | Path = /54B2C0DD/56E0C3D9 94 | Reference = RI7; 95 | ValeurCmp = 470; 96 | IdModule = prettylib:SMD_0805; 97 | EndCmp 98 | 99 | BeginCmp 100 | TimeStamp = 56F81422 101 | Path = /54B2C0DD/56F77854 102 | Reference = RI6; 103 | ValeurCmp = 470; 104 | IdModule = prettylib:SMD_0805; 105 | EndCmp 106 | 107 | BeginCmp 108 | TimeStamp = 56F8141C 109 | Path = /54B2C0DD/56F77533 110 | Reference = RI5; 111 | ValeurCmp = 470; 112 | IdModule = prettylib:SMD_0805; 113 | EndCmp 114 | 115 | BeginCmp 116 | TimeStamp = 56F81416 117 | Path = /54B2C0DD/56DE6D47 118 | Reference = RI4; 119 | ValeurCmp = 470; 120 | IdModule = prettylib:SMD_0805; 121 | EndCmp 122 | 123 | BeginCmp 124 | TimeStamp = 56F81410 125 | Path = /54B2C0DD/56EC2F49 126 | Reference = RI3; 127 | ValeurCmp = 470; 128 | IdModule = prettylib:SMD_0805; 129 | EndCmp 130 | 131 | BeginCmp 132 | TimeStamp = 56F8140A 133 | Path = /54B2C0DD/56EC2C84 134 | Reference = RI2; 135 | ValeurCmp = 470; 136 | IdModule = prettylib:SMD_0805; 137 | EndCmp 138 | 139 | BeginCmp 140 | TimeStamp = 56F81404 141 | Path = /54B2C0DD/56EC29C2 142 | Reference = RI1; 143 | ValeurCmp = 470; 144 | IdModule = prettylib:SMD_0805; 145 | EndCmp 146 | 147 | BeginCmp 148 | TimeStamp = 56F813FE 149 | Path = /549878F0/56FAB54B 150 | Reference = R35; 151 | ValeurCmp = 10k; 152 | IdModule = prettylib:SMD_0805; 153 | EndCmp 154 | 155 | BeginCmp 156 | TimeStamp = 56F813F8 157 | Path = /549878F0/56FA79F8 158 | Reference = R34; 159 | ValeurCmp = 10k; 160 | IdModule = prettylib:SMD_0805; 161 | EndCmp 162 | 163 | BeginCmp 164 | TimeStamp = 56F813EC 165 | Path = /549878F0/56E9353F 166 | Reference = R25; 167 | ValeurCmp = RLED; 168 | IdModule = prettylib:SMD_0805; 169 | EndCmp 170 | 171 | BeginCmp 172 | TimeStamp = 56F813E6 173 | Path = /54B2C0DD/56CFEE86 174 | Reference = R24; 175 | ValeurCmp = 330; 176 | IdModule = prettylib:SMD_0805; 177 | EndCmp 178 | 179 | BeginCmp 180 | TimeStamp = 56F813E0 181 | Path = /549878F0/56DA9C11 182 | Reference = R14; 183 | ValeurCmp = 100k; 184 | IdModule = prettylib:SMD_0805; 185 | EndCmp 186 | 187 | BeginCmp 188 | TimeStamp = 56F813BC 189 | Path = /549878F0/56C7D2F4 190 | Reference = R4; 191 | ValeurCmp = 22; 192 | IdModule = prettylib:SMD_0805; 193 | EndCmp 194 | 195 | BeginCmp 196 | TimeStamp = 56F813B6 197 | Path = /549878F0/56C7D2E9 198 | Reference = R3; 199 | ValeurCmp = 22; 200 | IdModule = prettylib:SMD_0805; 201 | EndCmp 202 | 203 | BeginCmp 204 | TimeStamp = 56F813AA 205 | Path = /549878F0/56DCBDB6 206 | Reference = P6; 207 | ValeurCmp = ISP6; 208 | IdModule = prettylib:TC2030_BIG; 209 | EndCmp 210 | 211 | BeginCmp 212 | TimeStamp = 56F8134F 213 | Path = /54B2C0DD/56E0C3D1 214 | Reference = LEDI7; 215 | ValeurCmp = LED; 216 | IdModule = prettylib:LED_0805; 217 | EndCmp 218 | 219 | BeginCmp 220 | TimeStamp = 56F81349 221 | Path = /54B2C0DD/56F7784D 222 | Reference = LEDI6; 223 | ValeurCmp = LED; 224 | IdModule = prettylib:INSW_LEDS_REG; 225 | EndCmp 226 | 227 | BeginCmp 228 | TimeStamp = 56F81343 229 | Path = /54B2C0DD/56F7752C 230 | Reference = LEDI5; 231 | ValeurCmp = LED; 232 | IdModule = prettylib:INSW_LEDS_REG; 233 | EndCmp 234 | 235 | BeginCmp 236 | TimeStamp = 56F8133D 237 | Path = /54B2C0DD/56DE6D40 238 | Reference = LEDI4; 239 | ValeurCmp = LED; 240 | IdModule = prettylib:INSW_LEDS_REG; 241 | EndCmp 242 | 243 | BeginCmp 244 | TimeStamp = 56F81325 245 | Path = /54B2C0DD/57013087 246 | Reference = LEDG4; 247 | ValeurCmp = WS2812B; 248 | IdModule = prettylib:WS2812B; 249 | EndCmp 250 | 251 | BeginCmp 252 | TimeStamp = 56F8131D 253 | Path = /54B2C0DD/56CFEEA4 254 | Reference = LEDG3; 255 | ValeurCmp = WS2812B; 256 | IdModule = prettylib:WS2812B; 257 | EndCmp 258 | 259 | BeginCmp 260 | TimeStamp = 56F81315 261 | Path = /54B2C0DD/56CFEED6 262 | Reference = LEDG2; 263 | ValeurCmp = WS2812B; 264 | IdModule = prettylib:WS2812B; 265 | EndCmp 266 | 267 | BeginCmp 268 | TimeStamp = 56F8130D 269 | Path = /54B2C0DD/5700397E 270 | Reference = LEDG1; 271 | ValeurCmp = WS2812B; 272 | IdModule = prettylib:WS2812B; 273 | EndCmp 274 | 275 | BeginCmp 276 | TimeStamp = 56F81305 277 | Path = /54B2C0DD/56F83D30 278 | Reference = LED6:4_3; 279 | ValeurCmp = LED; 280 | IdModule = prettylib:INSW_LEDS_REG; 281 | EndCmp 282 | 283 | BeginCmp 284 | TimeStamp = 56F812FF 285 | Path = /54B2C0DD/56F81C71 286 | Reference = LED6:4_2; 287 | ValeurCmp = LED; 288 | IdModule = prettylib:INSW_LEDS_REG; 289 | EndCmp 290 | 291 | BeginCmp 292 | TimeStamp = 56F812F9 293 | Path = /54B2C0DD/56F81C99 294 | Reference = LED6:4; 295 | ValeurCmp = LED; 296 | IdModule = prettylib:INSW_LEDS_REG; 297 | EndCmp 298 | 299 | BeginCmp 300 | TimeStamp = 56F812F3 301 | Path = /54B2C0DD/56F81C78 302 | Reference = LED6:3; 303 | ValeurCmp = LED; 304 | IdModule = prettylib:INSW_LEDS_REG; 305 | EndCmp 306 | 307 | BeginCmp 308 | TimeStamp = 56F812ED 309 | Path = /54B2C0DD/56F81C7F 310 | Reference = LED6:2; 311 | ValeurCmp = LED; 312 | IdModule = prettylib:INSW_LEDS_REG; 313 | EndCmp 314 | 315 | BeginCmp 316 | TimeStamp = 56F812E7 317 | Path = /54B2C0DD/56F8367C 318 | Reference = LED6:1_3; 319 | ValeurCmp = LED; 320 | IdModule = prettylib:INSW_LEDS_REG; 321 | EndCmp 322 | 323 | BeginCmp 324 | TimeStamp = 56F812E1 325 | Path = /54B2C0DD/56F81C8D 326 | Reference = LED6:1_2; 327 | ValeurCmp = LED; 328 | IdModule = prettylib:INSW_LEDS_REG; 329 | EndCmp 330 | 331 | BeginCmp 332 | TimeStamp = 56F812DB 333 | Path = /54B2C0DD/56F81C86 334 | Reference = LED6:1; 335 | ValeurCmp = LED; 336 | IdModule = prettylib:INSW_LEDS_REG; 337 | EndCmp 338 | 339 | BeginCmp 340 | TimeStamp = 56F812D5 341 | Path = /54B2C0DD/56DF492E 342 | Reference = LED5:4; 343 | ValeurCmp = LED; 344 | IdModule = prettylib:INSW_LEDS_REG; 345 | EndCmp 346 | 347 | BeginCmp 348 | TimeStamp = 56F812CF 349 | Path = /54B2C0DD/56DF4934 350 | Reference = LED5:3; 351 | ValeurCmp = LED; 352 | IdModule = prettylib:INSW_LEDS_REG; 353 | EndCmp 354 | 355 | BeginCmp 356 | TimeStamp = 56F812C9 357 | Path = /54B2C0DD/569E7EB7 358 | Reference = LED5:2; 359 | ValeurCmp = LED; 360 | IdModule = prettylib:INSW_LEDS_REG; 361 | EndCmp 362 | 363 | BeginCmp 364 | TimeStamp = 56F812C3 365 | Path = /54B2C0DD/56DF4941 366 | Reference = LED5:1; 367 | ValeurCmp = LED; 368 | IdModule = prettylib:INSW_LEDS_REG; 369 | EndCmp 370 | 371 | BeginCmp 372 | TimeStamp = 56F812BD 373 | Path = /54B2C0DD/56DF492D 374 | Reference = LED4:4_2; 375 | ValeurCmp = LED; 376 | IdModule = prettylib:INSW_LEDS_REG; 377 | EndCmp 378 | 379 | BeginCmp 380 | TimeStamp = 56F812B7 381 | Path = /54B2C0DD/56F81237 382 | Reference = LED4:4; 383 | ValeurCmp = LED; 384 | IdModule = prettylib:INSW_LEDS_REG; 385 | EndCmp 386 | 387 | BeginCmp 388 | TimeStamp = 56F812B1 389 | Path = /54B2C0DD/56DF4933 390 | Reference = LED4:3; 391 | ValeurCmp = LED; 392 | IdModule = prettylib:INSW_LEDS_REG; 393 | EndCmp 394 | 395 | BeginCmp 396 | TimeStamp = 56F812AB 397 | Path = /54B2C0DD/56DF4938 398 | Reference = LED4:2; 399 | ValeurCmp = LED; 400 | IdModule = prettylib:INSW_LEDS_REG; 401 | EndCmp 402 | 403 | BeginCmp 404 | TimeStamp = 56F812A5 405 | Path = /54B2C0DD/569D1123 406 | Reference = LED4:1_2; 407 | ValeurCmp = LED; 408 | IdModule = prettylib:INSW_LEDS_REG; 409 | EndCmp 410 | 411 | BeginCmp 412 | TimeStamp = 56F8129F 413 | Path = /54B2C0DD/559326B2 414 | Reference = LED4:1; 415 | ValeurCmp = LED; 416 | IdModule = prettylib:INSW_LEDS_REG; 417 | EndCmp 418 | 419 | BeginCmp 420 | TimeStamp = 56F81299 421 | Path = /54B2C0DD/56DF4932 422 | Reference = LED3:4; 423 | ValeurCmp = LED; 424 | IdModule = prettylib:INSW_LEDS_REG; 425 | EndCmp 426 | 427 | BeginCmp 428 | TimeStamp = 56F81293 429 | Path = /54B2C0DD/55932370 430 | Reference = LED3:3; 431 | ValeurCmp = LED; 432 | IdModule = prettylib:INSW_LEDS_REG; 433 | EndCmp 434 | 435 | BeginCmp 436 | TimeStamp = 56F8128D 437 | Path = /54B2C0DD/5593260C 438 | Reference = LED3:2; 439 | ValeurCmp = LED; 440 | IdModule = prettylib:INSW_LEDS_REG; 441 | EndCmp 442 | 443 | BeginCmp 444 | TimeStamp = 56F81287 445 | Path = /54B2C0DD/56F80A9F 446 | Reference = LED3:1; 447 | ValeurCmp = LED; 448 | IdModule = prettylib:INSW_LEDS_REG; 449 | EndCmp 450 | 451 | BeginCmp 452 | TimeStamp = 56F8127B 453 | Path = /54B2C0DD/56DF4931 454 | Reference = LED2:3; 455 | ValeurCmp = LED; 456 | IdModule = prettylib:INSW_LEDS_REG; 457 | EndCmp 458 | 459 | BeginCmp 460 | TimeStamp = 56F81275 461 | Path = /54B2C0DD/55932330 462 | Reference = LED2:2; 463 | ValeurCmp = LED; 464 | IdModule = prettylib:INSW_LEDS_REG; 465 | EndCmp 466 | 467 | BeginCmp 468 | TimeStamp = 56F81251 469 | Path = /549878F0/56E8A9B7 470 | Reference = L2; 471 | ValeurCmp = 4.7uH; 472 | IdModule = prettylib:Inductor_Bourn_4mmx4mm; 473 | EndCmp 474 | 475 | BeginCmp 476 | TimeStamp = 56F81232 477 | Path = /56C672F7 478 | Reference = FID4; 479 | ValeurCmp = MISC; 480 | IdModule = prettylib:FID; 481 | EndCmp 482 | 483 | BeginCmp 484 | TimeStamp = 56F8122D 485 | Path = /56C68333 486 | Reference = FID3; 487 | ValeurCmp = MISC; 488 | IdModule = prettylib:FID; 489 | EndCmp 490 | 491 | BeginCmp 492 | TimeStamp = 56F81228 493 | Path = /56C68846 494 | Reference = FID2; 495 | ValeurCmp = MISC; 496 | IdModule = prettylib:FID; 497 | EndCmp 498 | 499 | BeginCmp 500 | TimeStamp = 56F81223 501 | Path = /56C68D5E 502 | Reference = FID1; 503 | ValeurCmp = MISC; 504 | IdModule = prettylib:FID; 505 | EndCmp 506 | 507 | BeginCmp 508 | TimeStamp = 56F8121E 509 | Path = /549878F0/56C7D380 510 | Reference = F1; 511 | ValeurCmp = PTC FUSE; 512 | IdModule = prettylib:Fuse_SMD1206; 513 | EndCmp 514 | 515 | BeginCmp 516 | TimeStamp = 56F81218 517 | Path = /56F66FFA 518 | Reference = D6:4; 519 | ValeurCmp = DIODE; 520 | IdModule = prettylib:SOD123-DIODE; 521 | EndCmp 522 | 523 | BeginCmp 524 | TimeStamp = 56F81212 525 | Path = /56F66E8A 526 | Reference = D6:3; 527 | ValeurCmp = DIODE; 528 | IdModule = prettylib:SOD123-DIODE; 529 | EndCmp 530 | 531 | BeginCmp 532 | TimeStamp = 56F8120C 533 | Path = /56F66D1C 534 | Reference = D6:2; 535 | ValeurCmp = DIODE; 536 | IdModule = prettylib:SOD123-DIODE; 537 | EndCmp 538 | 539 | BeginCmp 540 | TimeStamp = 56F81206 541 | Path = /56F65D1B 542 | Reference = D6:1; 543 | ValeurCmp = DIODE; 544 | IdModule = prettylib:SOD123-DIODE; 545 | EndCmp 546 | 547 | BeginCmp 548 | TimeStamp = 56F81200 549 | Path = /549A1F0B 550 | Reference = D5:4; 551 | ValeurCmp = DIODE; 552 | IdModule = prettylib:SOD123-DIODE; 553 | EndCmp 554 | 555 | BeginCmp 556 | TimeStamp = 56F811FA 557 | Path = /549A1F17 558 | Reference = D5:3; 559 | ValeurCmp = DIODE; 560 | IdModule = prettylib:SOD123-DIODE; 561 | EndCmp 562 | 563 | BeginCmp 564 | TimeStamp = 56F811F4 565 | Path = /549A1F23 566 | Reference = D5:2; 567 | ValeurCmp = DIODE; 568 | IdModule = prettylib:SOD123-DIODE; 569 | EndCmp 570 | 571 | BeginCmp 572 | TimeStamp = 56F811EE 573 | Path = /549A1F2F 574 | Reference = D5:1; 575 | ValeurCmp = DIODE; 576 | IdModule = prettylib:SOD123-DIODE; 577 | EndCmp 578 | 579 | BeginCmp 580 | TimeStamp = 56F811E8 581 | Path = /549A1E9F 582 | Reference = D4:4; 583 | ValeurCmp = DIODE; 584 | IdModule = prettylib:SOD123-DIODE; 585 | EndCmp 586 | 587 | BeginCmp 588 | TimeStamp = 56F811E2 589 | Path = /549A1EAB 590 | Reference = D4:3; 591 | ValeurCmp = DIODE; 592 | IdModule = prettylib:SOD123-DIODE; 593 | EndCmp 594 | 595 | BeginCmp 596 | TimeStamp = 56F811DC 597 | Path = /549A1EB7 598 | Reference = D4:2; 599 | ValeurCmp = DIODE; 600 | IdModule = prettylib:SOD123-DIODE; 601 | EndCmp 602 | 603 | BeginCmp 604 | TimeStamp = 56F811D6 605 | Path = /549A1EC3 606 | Reference = D4:1; 607 | ValeurCmp = DIODE; 608 | IdModule = prettylib:SOD123-DIODE; 609 | EndCmp 610 | 611 | BeginCmp 612 | TimeStamp = 56F811D0 613 | Path = /549A1E33 614 | Reference = D3:4; 615 | ValeurCmp = DIODE; 616 | IdModule = prettylib:SOD123-DIODE; 617 | EndCmp 618 | 619 | BeginCmp 620 | TimeStamp = 56F811CA 621 | Path = /549A1E3F 622 | Reference = D3:3; 623 | ValeurCmp = DIODE; 624 | IdModule = prettylib:SOD123-DIODE; 625 | EndCmp 626 | 627 | BeginCmp 628 | TimeStamp = 56F811C4 629 | Path = /549A1E4B 630 | Reference = D3:2; 631 | ValeurCmp = DIODE; 632 | IdModule = prettylib:SOD123-DIODE; 633 | EndCmp 634 | 635 | BeginCmp 636 | TimeStamp = 56F811BE 637 | Path = /549A1E57 638 | Reference = D3:1; 639 | ValeurCmp = DIODE; 640 | IdModule = prettylib:SOD123-DIODE; 641 | EndCmp 642 | 643 | BeginCmp 644 | TimeStamp = 56F811B8 645 | Path = /549A1DEB 646 | Reference = D2:4; 647 | ValeurCmp = DIODE; 648 | IdModule = prettylib:SOD123-DIODE; 649 | EndCmp 650 | 651 | BeginCmp 652 | TimeStamp = 56F811B2 653 | Path = /549A1DF7 654 | Reference = D2:3; 655 | ValeurCmp = DIODE; 656 | IdModule = prettylib:SOD123-DIODE; 657 | EndCmp 658 | 659 | BeginCmp 660 | TimeStamp = 56F811AC 661 | Path = /549A1E03 662 | Reference = D2:2; 663 | ValeurCmp = DIODE; 664 | IdModule = prettylib:SOD123-DIODE; 665 | EndCmp 666 | 667 | BeginCmp 668 | TimeStamp = 56F811A6 669 | Path = /549A1E0F 670 | Reference = D2:1; 671 | ValeurCmp = DIODE; 672 | IdModule = prettylib:SOD123-DIODE; 673 | EndCmp 674 | 675 | BeginCmp 676 | TimeStamp = 56F811A0 677 | Path = /549A1D97 678 | Reference = D1:4; 679 | ValeurCmp = DIODE; 680 | IdModule = prettylib:SOD123-DIODE; 681 | EndCmp 682 | 683 | BeginCmp 684 | TimeStamp = 56F8119A 685 | Path = /549A1DA3 686 | Reference = D1:3; 687 | ValeurCmp = DIODE; 688 | IdModule = prettylib:SOD123-DIODE; 689 | EndCmp 690 | 691 | BeginCmp 692 | TimeStamp = 56F81194 693 | Path = /549A1DAF 694 | Reference = D1:2; 695 | ValeurCmp = DIODE; 696 | IdModule = prettylib:SOD123-DIODE; 697 | EndCmp 698 | 699 | BeginCmp 700 | TimeStamp = 56F8118E 701 | Path = /549A1DBB 702 | Reference = D1:1; 703 | ValeurCmp = DIODE; 704 | IdModule = prettylib:SOD123-DIODE; 705 | EndCmp 706 | 707 | BeginCmp 708 | TimeStamp = 56F81182 709 | Path = /54B2C0DD/57013091 710 | Reference = CLED4; 711 | ValeurCmp = 0.1 uF; 712 | IdModule = prettylib:SMD_0805; 713 | EndCmp 714 | 715 | BeginCmp 716 | TimeStamp = 56F8117C 717 | Path = /54B2C0DD/56CFEFBF 718 | Reference = CLED3; 719 | ValeurCmp = 0.1 uF; 720 | IdModule = prettylib:SMD_0805; 721 | EndCmp 722 | 723 | BeginCmp 724 | TimeStamp = 56F81176 725 | Path = /54B2C0DD/56CFEF79 726 | Reference = CLED2; 727 | ValeurCmp = 0.1 uF; 728 | IdModule = prettylib:SMD_0805; 729 | EndCmp 730 | 731 | BeginCmp 732 | TimeStamp = 56F8116A 733 | Path = /549878F0/56FA477F 734 | Reference = C23; 735 | ValeurCmp = 1uF; 736 | IdModule = prettylib:SMD_0805; 737 | EndCmp 738 | 739 | BeginCmp 740 | TimeStamp = 56F81164 741 | Path = /549878F0/56FA35EB 742 | Reference = C22; 743 | ValeurCmp = 1uF; 744 | IdModule = prettylib:SMD_0805; 745 | EndCmp 746 | 747 | BeginCmp 748 | TimeStamp = 56F8115E 749 | Path = /549878F0/56F82B2A 750 | Reference = C6; 751 | ValeurCmp = 0.1uF; 752 | IdModule = prettylib:SMD_0805; 753 | EndCmp 754 | 755 | BeginCmp 756 | TimeStamp = 56F81158 757 | Path = /549878F0/56EA05A1 758 | Reference = C18; 759 | ValeurCmp = 10uF; 760 | IdModule = prettylib:SMD_0805; 761 | EndCmp 762 | 763 | BeginCmp 764 | TimeStamp = 56F81152 765 | Path = /549878F0/56E8FD65 766 | Reference = C17; 767 | ValeurCmp = 10uF; 768 | IdModule = prettylib:SMD_0805; 769 | EndCmp 770 | 771 | BeginCmp 772 | TimeStamp = 56F81140 773 | Path = /549878F0/56DB4FF9 774 | Reference = C14; 775 | ValeurCmp = 8pF; 776 | IdModule = prettylib:SMD_0805; 777 | EndCmp 778 | 779 | BeginCmp 780 | TimeStamp = 56F8113A 781 | Path = /549878F0/56DB3A06 782 | Reference = C13; 783 | ValeurCmp = 8pF; 784 | IdModule = prettylib:SMD_0805; 785 | EndCmp 786 | 787 | BeginCmp 788 | TimeStamp = 56F81134 789 | Path = /549878F0/56C7D3C2 790 | Reference = C9; 791 | ValeurCmp = 10uF; 792 | IdModule = prettylib:SMD_0805; 793 | EndCmp 794 | 795 | BeginCmp 796 | TimeStamp = 56F81128 797 | Path = /549878F0/56DA3935 798 | Reference = C7; 799 | ValeurCmp = 0.1uF; 800 | IdModule = prettylib:SMD_0805; 801 | EndCmp 802 | 803 | BeginCmp 804 | TimeStamp = 56F81122 805 | Path = /549878F0/56DC5207 806 | Reference = C5; 807 | ValeurCmp = 0.1uF; 808 | IdModule = prettylib:SMD_0805; 809 | EndCmp 810 | 811 | BeginCmp 812 | TimeStamp = 56F8111C 813 | Path = /549878F0/56DBC59F 814 | Reference = C4; 815 | ValeurCmp = 0.1uF; 816 | IdModule = prettylib:SMD_0805; 817 | EndCmp 818 | 819 | BeginCmp 820 | TimeStamp = 56F81116 821 | Path = /549878F0/4F22C5A2 822 | Reference = C3; 823 | ValeurCmp = 0.1uF; 824 | IdModule = prettylib:SMD_0805; 825 | EndCmp 826 | 827 | BeginCmp 828 | TimeStamp = 56F81110 829 | Path = /549878F0/56DBEF2D 830 | Reference = C2; 831 | ValeurCmp = 1uF; 832 | IdModule = prettylib:SMD_0805; 833 | EndCmp 834 | 835 | BeginCmp 836 | TimeStamp = 56F8110A 837 | Path = /549878F0/56C7D32B 838 | Reference = C1; 839 | ValeurCmp = 1uF; 840 | IdModule = prettylib:SMD_0805; 841 | EndCmp 842 | 843 | BeginCmp 844 | TimeStamp = 56F82C4A 845 | Path = /54B2C0DD/56DF4929 846 | Reference = LEDI1; 847 | ValeurCmp = LED; 848 | IdModule = prettylib:INSW_LEDS_REG; 849 | EndCmp 850 | 851 | BeginCmp 852 | TimeStamp = 56F82C4F 853 | Path = /54B2C0DD/571354E7 854 | Reference = LEDI2; 855 | ValeurCmp = LED; 856 | IdModule = prettylib:INSW_LEDS_REG; 857 | EndCmp 858 | 859 | BeginCmp 860 | TimeStamp = 56F82C54 861 | Path = /54B2C0DD/57135974 862 | Reference = LEDI3; 863 | ValeurCmp = LED; 864 | IdModule = prettylib:INSW_LEDS_REG; 865 | EndCmp 866 | 867 | BeginCmp 868 | TimeStamp = 56F814B2 869 | Path = /549A1E39 870 | Reference = S3:3; 871 | ValeurCmp = SW; 872 | IdModule = prettylib:MXALPS2; 873 | EndCmp 874 | 875 | BeginCmp 876 | TimeStamp = 56F81583 877 | Path = /56F6A4AA 878 | Reference = S6:4_3; 879 | ValeurCmp = SW; 880 | IdModule = prettylib:MXALPS2; 881 | EndCmp 882 | 883 | BeginCmp 884 | TimeStamp = 56F81578 885 | Path = /56F6A1E7 886 | Reference = S6:4_2; 887 | ValeurCmp = SW; 888 | IdModule = prettylib:MXALPS2; 889 | EndCmp 890 | 891 | BeginCmp 892 | TimeStamp = 56F8156D 893 | Path = /56F66FF1 894 | Reference = S6:4; 895 | ValeurCmp = SW; 896 | IdModule = prettylib:MXALPS2; 897 | EndCmp 898 | 899 | BeginCmp 900 | TimeStamp = 56F81562 901 | Path = /56F66E81 902 | Reference = S6:3; 903 | ValeurCmp = SW; 904 | IdModule = prettylib:MXALPS2; 905 | EndCmp 906 | 907 | BeginCmp 908 | TimeStamp = 56F81557 909 | Path = /56F66D13 910 | Reference = S6:2; 911 | ValeurCmp = SW; 912 | IdModule = prettylib:MXALPS2; 913 | EndCmp 914 | 915 | BeginCmp 916 | TimeStamp = 56F8154C 917 | Path = /56F6789A 918 | Reference = S6:1_3; 919 | ValeurCmp = SW; 920 | IdModule = prettylib:MXALPS2; 921 | EndCmp 922 | 923 | BeginCmp 924 | TimeStamp = 56F81541 925 | Path = /56F6770D 926 | Reference = S6:1_2; 927 | ValeurCmp = SW; 928 | IdModule = prettylib:MXALPS2; 929 | EndCmp 930 | 931 | BeginCmp 932 | TimeStamp = 56F81536 933 | Path = /56F65D12 934 | Reference = S6:1; 935 | ValeurCmp = SW; 936 | IdModule = prettylib:MXALPS2; 937 | EndCmp 938 | 939 | BeginCmp 940 | TimeStamp = 56F8152B 941 | Path = /549A1F05 942 | Reference = S5:4; 943 | ValeurCmp = SW; 944 | IdModule = prettylib:MXALPS2; 945 | EndCmp 946 | 947 | BeginCmp 948 | TimeStamp = 56F81520 949 | Path = /549A1F11 950 | Reference = S5:3; 951 | ValeurCmp = SW; 952 | IdModule = prettylib:MXALPS2; 953 | EndCmp 954 | 955 | BeginCmp 956 | TimeStamp = 56F81515 957 | Path = /549A1F1D 958 | Reference = S5:2; 959 | ValeurCmp = SW; 960 | IdModule = prettylib:MXALPS2; 961 | EndCmp 962 | 963 | BeginCmp 964 | TimeStamp = 56F8150A 965 | Path = /569CEE7C 966 | Reference = S5:1; 967 | ValeurCmp = SW; 968 | IdModule = prettylib:MXALPS2; 969 | EndCmp 970 | 971 | BeginCmp 972 | TimeStamp = 56F814FF 973 | Path = /56F5F11F 974 | Reference = S4:4_2; 975 | ValeurCmp = SW; 976 | IdModule = prettylib:MXALPS2; 977 | EndCmp 978 | 979 | BeginCmp 980 | TimeStamp = 56F814F4 981 | Path = /549A1E99 982 | Reference = S4:4; 983 | ValeurCmp = SW; 984 | IdModule = prettylib:MXALPS2; 985 | EndCmp 986 | 987 | BeginCmp 988 | TimeStamp = 56F814E9 989 | Path = /549A1EA5 990 | Reference = S4:3; 991 | ValeurCmp = SW; 992 | IdModule = prettylib:MXALPS2; 993 | EndCmp 994 | 995 | BeginCmp 996 | TimeStamp = 56F814DE 997 | Path = /549A1EB1 998 | Reference = S4:2; 999 | ValeurCmp = SW; 1000 | IdModule = prettylib:MXALPS2; 1001 | EndCmp 1002 | 1003 | BeginCmp 1004 | TimeStamp = 56F814D3 1005 | Path = /569CC8BD 1006 | Reference = S4:1_2; 1007 | ValeurCmp = SW; 1008 | IdModule = prettylib:MXALPS2; 1009 | EndCmp 1010 | 1011 | BeginCmp 1012 | TimeStamp = 56F814C8 1013 | Path = /549A1EBD 1014 | Reference = S4:1; 1015 | ValeurCmp = SW; 1016 | IdModule = prettylib:MXALPS2; 1017 | EndCmp 1018 | 1019 | BeginCmp 1020 | TimeStamp = 56F814BD 1021 | Path = /549A1E2D 1022 | Reference = S3:4; 1023 | ValeurCmp = SW; 1024 | IdModule = prettylib:MXALPS2; 1025 | EndCmp 1026 | 1027 | BeginCmp 1028 | TimeStamp = 56F814A7 1029 | Path = /549A1E45 1030 | Reference = S3:2; 1031 | ValeurCmp = SW; 1032 | IdModule = prettylib:MXALPS2; 1033 | EndCmp 1034 | 1035 | BeginCmp 1036 | TimeStamp = 56F8149C 1037 | Path = /549A1E51 1038 | Reference = S3:1; 1039 | ValeurCmp = SW; 1040 | IdModule = prettylib:MXALPS2; 1041 | EndCmp 1042 | 1043 | BeginCmp 1044 | TimeStamp = 56F81491 1045 | Path = /549A1DE5 1046 | Reference = S2:4; 1047 | ValeurCmp = SW; 1048 | IdModule = prettylib:MXALPS2; 1049 | EndCmp 1050 | 1051 | BeginCmp 1052 | TimeStamp = 56F81486 1053 | Path = /549A1DF1 1054 | Reference = S2:3; 1055 | ValeurCmp = SW; 1056 | IdModule = prettylib:MXALPS2; 1057 | EndCmp 1058 | 1059 | BeginCmp 1060 | TimeStamp = 56F8147B 1061 | Path = /549A1DFD 1062 | Reference = S2:2; 1063 | ValeurCmp = SW; 1064 | IdModule = prettylib:MXALPS2; 1065 | EndCmp 1066 | 1067 | BeginCmp 1068 | TimeStamp = 56F81470 1069 | Path = /549A1E09 1070 | Reference = S2:1; 1071 | ValeurCmp = SW; 1072 | IdModule = prettylib:MXALPS2; 1073 | EndCmp 1074 | 1075 | BeginCmp 1076 | TimeStamp = 56F8145C 1077 | Path = /549A1D91 1078 | Reference = S1:4; 1079 | ValeurCmp = SW; 1080 | IdModule = prettylib:MXALPS2; 1081 | EndCmp 1082 | 1083 | BeginCmp 1084 | TimeStamp = 56F81451 1085 | Path = /549A1D9D 1086 | Reference = S1:3; 1087 | ValeurCmp = SW; 1088 | IdModule = prettylib:MXALPS2; 1089 | EndCmp 1090 | 1091 | BeginCmp 1092 | TimeStamp = 56F81446 1093 | Path = /549A1DA9 1094 | Reference = S1:2; 1095 | ValeurCmp = SW; 1096 | IdModule = prettylib:MXALPS2; 1097 | EndCmp 1098 | 1099 | BeginCmp 1100 | TimeStamp = 56F8143B 1101 | Path = /549A1DB5 1102 | Reference = S1:1; 1103 | ValeurCmp = SW; 1104 | IdModule = prettylib:MXALPS2; 1105 | EndCmp 1106 | 1107 | BeginCmp 1108 | TimeStamp = 56F95FF5 1109 | Path = /56C96738 1110 | Reference = HOLE1; 1111 | ValeurCmp = MISC; 1112 | IdModule = prettylib:FID; 1113 | EndCmp 1114 | 1115 | BeginCmp 1116 | TimeStamp = 56FA7E68 1117 | Path = /549878F0/56DA78C1 1118 | Reference = C8; 1119 | ValeurCmp = 0.1uF; 1120 | IdModule = prettylib:SMD_0805; 1121 | EndCmp 1122 | 1123 | BeginCmp 1124 | TimeStamp = 56FA7E8E 1125 | Path = /549878F0/56DA9DB7 1126 | Reference = R33; 1127 | ValeurCmp = 100; 1128 | IdModule = prettylib:SMD_0805; 1129 | EndCmp 1130 | 1131 | BeginCmp 1132 | TimeStamp = 56FA8EDE 1133 | Path = /56C6226C 1134 | Reference = LOGO3; 1135 | ValeurCmp = MISC; 1136 | IdModule = prettylib:OSHW; 1137 | EndCmp 1138 | 1139 | BeginCmp 1140 | TimeStamp = 56FA8EE4 1141 | Path = /56C5DCB5 1142 | Reference = LOGO4; 1143 | ValeurCmp = MISC; 1144 | IdModule = prettylib:OSHW; 1145 | EndCmp 1146 | 1147 | BeginCmp 1148 | TimeStamp = 56FC261A 1149 | Path = /549878F0/56E28BD1 1150 | Reference = P4; 1151 | ValeurCmp = CONN_6; 1152 | IdModule = prettylib:Pin_Header_1x06; 1153 | EndCmp 1154 | 1155 | BeginCmp 1156 | TimeStamp = 56FC2628 1157 | Path = /549878F0/56FC2882 1158 | Reference = P5; 1159 | ValeurCmp = CONN_6; 1160 | IdModule = prettylib:Pin_Header_1x06; 1161 | EndCmp 1162 | 1163 | BeginCmp 1164 | TimeStamp = 56F81465 1165 | Path = /549878F0/56FA299D 1166 | Reference = S2; 1167 | ValeurCmp = ENCODER; 1168 | IdModule = prettylib:ENCODER_12MM; 1169 | EndCmp 1170 | 1171 | BeginCmp 1172 | TimeStamp = 56FA7E5E 1173 | Path = /549878F0/56DD72E0 1174 | Reference = BZ1; 1175 | ValeurCmp = BUZZER; 1176 | IdModule = prettylib:BUZZER_SMT; 1177 | EndCmp 1178 | 1179 | BeginCmp 1180 | TimeStamp = 56F81430 1181 | Path = /549878F0/5533596A 1182 | Reference = S1; 1183 | ValeurCmp = TAC_SWITCH; 1184 | IdModule = prettylib:TACT_5.2x5.2; 1185 | EndCmp 1186 | 1187 | BeginCmp 1188 | TimeStamp = 56F81245 1189 | Path = /549878F0/56F1A7A6 1190 | Reference = JP1; 1191 | ValeurCmp = JUMPER; 1192 | IdModule = prettylib:JUMPER_SMD_3; 1193 | EndCmp 1194 | 1195 | BeginCmp 1196 | TimeStamp = 573A26C1 1197 | Path = /549878F0/56E18C9E 1198 | Reference = R1; 1199 | ValeurCmp = 10k; 1200 | IdModule = prettylib:SMD_0805; 1201 | EndCmp 1202 | 1203 | BeginCmp 1204 | TimeStamp = 56F81381 1205 | Path = /549878F0/56F9797B 1206 | Reference = P1_2; 1207 | ValeurCmp = USB_CONN; 1208 | IdModule = prettylib:USB_Micro-B; 1209 | EndCmp 1210 | 1211 | BeginCmp 1212 | TimeStamp = 56F8136C 1213 | Path = /549878F0/56E086BA 1214 | Reference = P1; 1215 | ValeurCmp = USB_CONN; 1216 | IdModule = prettylib:USB_Micro-B; 1217 | EndCmp 1218 | 1219 | BeginCmp 1220 | TimeStamp = 56FAC973 1221 | Path = /56C63178 1222 | Reference = LOGO1; 1223 | ValeurCmp = MISC; 1224 | IdModule = prettylib:SAMPad-Logo; 1225 | EndCmp 1226 | 1227 | BeginCmp 1228 | TimeStamp = 56FAC987 1229 | Path = /56C62C6E 1230 | Reference = LOGO2; 1231 | ValeurCmp = MISC; 1232 | IdModule = prettylib:SAMPad-Logo; 1233 | EndCmp 1234 | 1235 | EndListe 1236 | -------------------------------------------------------------------------------- /PCB/SAMPad.pro: -------------------------------------------------------------------------------- 1 | update=5/17/2016 12:26:14 AM 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.850000000000 9 | PadDrillOvalY=0.850000000000 10 | PadSizeH=0.850000000000 11 | PadSizeV=0.850000000000 12 | PcbTextSizeV=2.032000000000 13 | PcbTextSizeH=1.524000000000 14 | PcbTextThickness=0.304800000000 15 | ModuleTextSizeV=1.524000000000 16 | ModuleTextSizeH=1.524000000000 17 | ModuleTextSizeThickness=0.304800000000 18 | SolderMaskClearance=0.203200000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.304800000000 21 | BoardOutlineThickness=0.127000000000 22 | ModuleOutlineThickness=0.300000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=lib 29 | [eeschema/libraries] 30 | LibName1=lib/SAMPad 31 | [general] 32 | version=1 33 | [schematic_editor] 34 | version=1 35 | PageLayoutDescrFile= 36 | PlotDirectoryName=../ 37 | SubpartIdSeparator=0 38 | SubpartFirstId=65 39 | NetFmtName=Pcbnew 40 | SpiceForceRefPrefix=0 41 | SpiceUseNetNumbers=0 42 | LabSize=60 43 | -------------------------------------------------------------------------------- /PCB/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name prettylib)(type KiCad)(uri ${KIPRJMOD}/prettylib)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad-B.Paste.gbp: -------------------------------------------------------------------------------- 1 | G04 #@! TF.FileFunction,Paste,Bot* 2 | %FSLAX46Y46*% 3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 4 | G04 Created by KiCad (PCBNEW 4.0.1-stable) date 5/21/2016 3:48:14 PM* 5 | %MOMM*% 6 | G01* 7 | G04 APERTURE LIST* 8 | %ADD10C,0.100000*% 9 | %ADD11C,0.406400*% 10 | %ADD12R,1.000000X1.250000*% 11 | %ADD13R,1.400000X1.200000*% 12 | %ADD14R,0.650000X1.060000*% 13 | %ADD15R,0.800000X0.550000*% 14 | %ADD16R,1.250000X1.000000*% 15 | %ADD17R,1.198880X1.198880*% 16 | %ADD18R,1.000000X1.651000*% 17 | %ADD19R,1.651000X1.000000*% 18 | %ADD20R,1.500000X3.600000*% 19 | %ADD21R,2.029460X2.651760*% 20 | %ADD22R,1.000760X0.850900*% 21 | %ADD23R,0.850900X1.000760*% 22 | %ADD24R,1.100000X1.800000*% 23 | %ADD25R,1.500000X1.000000*% 24 | %ADD26R,0.400000X1.750000*% 25 | %ADD27R,2.000000X1.400000*% 26 | %ADD28R,1.300000X3.250000*% 27 | %ADD29R,1.825000X0.700000*% 28 | %ADD30R,1.425000X2.500000*% 29 | G04 APERTURE END LIST* 30 | D10* 31 | D11* 32 | X124960124Y-143019524D02* 33 | X123904046Y-141963446D01* 34 | X125525880Y-142453768D02* 35 | X124469802Y-141397690D01* 36 | X126091636Y-141888011D02* 37 | X125035558Y-140831933D01* 38 | X126657392Y-141322255D02* 39 | X125601314Y-140266177D01* 40 | X127223148Y-140756499D02* 41 | X126167070Y-139700421D01* 42 | X127788904Y-140190743D02* 43 | X126732826Y-139134665D01* 44 | X124394368Y-143585280D02* 45 | X123338290Y-142529202D01* 46 | X123828611Y-144151036D02* 47 | X122772533Y-143094958D01* 48 | X123262855Y-144716792D02* 49 | X122206777Y-143660714D01* 50 | X122697099Y-145282548D02* 51 | X121641021Y-144226470D01* 52 | X122131343Y-145848304D02* 53 | X121075265Y-144792226D01* 54 | X133042354Y-151101754D02* 55 | X131986276Y-150045676D01* 56 | X133608110Y-150535998D02* 57 | X132552032Y-149479920D01* 58 | X134173867Y-149970242D02* 59 | X133117789Y-148914164D01* 60 | X134739623Y-149404486D02* 61 | X133683545Y-148348408D01* 62 | X135305379Y-148838730D02* 63 | X134249301Y-147782652D01* 64 | X135871135Y-148272974D02* 65 | X134815057Y-147216896D01* 66 | X132476598Y-151667510D02* 67 | X131420520Y-150611432D01* 68 | X131910842Y-152233267D02* 69 | X130854764Y-151177189D01* 70 | X131345086Y-152799023D02* 71 | X130289008Y-151742945D01* 72 | X130779330Y-153364779D02* 73 | X129723252Y-152308701D01* 74 | X130213574Y-153930535D02* 75 | X129157496Y-152874457D01* 76 | X133042354Y-141963446D02* 77 | X131986276Y-143019524D01* 78 | X124960124Y-150045676D02* 79 | X123904046Y-151101754D01* 80 | X133608110Y-142529202D02* 81 | X132552032Y-143585280D01* 82 | X125525880Y-150611432D02* 83 | X124469802Y-151667510D01* 84 | X126091636Y-151177189D02* 85 | X125035558Y-152233267D01* 86 | X134173867Y-143094958D02* 87 | X133117789Y-144151036D01* 88 | X134739623Y-143660714D02* 89 | X133683545Y-144716792D01* 90 | X126657392Y-151742945D02* 91 | X125601314Y-152799023D01* 92 | X127223148Y-152308701D02* 93 | X126167070Y-153364779D01* 94 | X135305379Y-144226470D02* 95 | X134249301Y-145282548D01* 96 | X135871135Y-144792226D02* 97 | X134815057Y-145848304D01* 98 | X127788904Y-152874457D02* 99 | X126732826Y-153930535D01* 100 | X124394368Y-149479920D02* 101 | X123338290Y-150535998D01* 102 | X132476598Y-141397690D02* 103 | X131420520Y-142453768D01* 104 | X131910842Y-140831933D02* 105 | X130854764Y-141888011D01* 106 | X123828611Y-148914164D02* 107 | X122772533Y-149970242D01* 108 | X123262855Y-148348408D02* 109 | X122206777Y-149404486D01* 110 | X131345086Y-140266177D02* 111 | X130289008Y-141322255D01* 112 | X130779330Y-139700421D02* 113 | X129723252Y-140756499D01* 114 | X122697099Y-147782652D02* 115 | X121641021Y-148838730D01* 116 | X122131343Y-147216896D02* 117 | X121075265Y-148272974D01* 118 | X130213574Y-139134665D02* 119 | X129157496Y-140190743D01* 120 | D12* 121 | X146186400Y-162458400D03* 122 | X144186400Y-162458400D03* 123 | D13* 124 | X140838100Y-148869300D03* 125 | X140838100Y-147269300D03* 126 | X138638100Y-147269300D03* 127 | X138638100Y-148869300D03* 128 | D14* 129 | X111660800Y-125219600D03* 130 | X110710800Y-125219600D03* 131 | X109760800Y-125219600D03* 132 | X109760800Y-123019600D03* 133 | X111660800Y-123019600D03* 134 | D15* 135 | X127857400Y-103045300D03* 136 | X127857400Y-102095300D03* 137 | X127857400Y-101145300D03* 138 | X130257400Y-101145300D03* 139 | X130257400Y-102095300D03* 140 | X130257400Y-103045300D03* 141 | D12* 142 | X107143300Y-151091900D03* 143 | X105143300Y-151091900D03* 144 | D16* 145 | X151650700Y-81251300D03* 146 | X151650700Y-79251300D03* 147 | X133426200Y-81187800D03* 148 | X133426200Y-79187800D03* 149 | X115087400Y-81251300D03* 150 | X115087400Y-79251300D03* 151 | X96240600Y-81264000D03* 152 | X96240600Y-79264000D03* 153 | X153073100Y-105216200D03* 154 | X153073100Y-103216200D03* 155 | X96075500Y-105025700D03* 156 | X96075500Y-103025700D03* 157 | X149606000Y-85518500D03* 158 | X149606000Y-83518500D03* 159 | D12* 160 | X160194500Y-86487000D03* 161 | X158194500Y-86487000D03* 162 | X116868700Y-127901700D03* 163 | X118868700Y-127901700D03* 164 | D16* 165 | X148501100Y-162658300D03* 166 | X148501100Y-160658300D03* 167 | D12* 168 | X130356942Y-173289040D03* 169 | X128356942Y-173289040D03* 170 | D16* 171 | X128016000Y-106500000D03* 172 | X128016000Y-108500000D03* 173 | X130365500Y-106500000D03* 174 | X130365500Y-108500000D03* 175 | D17* 176 | X109288580Y-151079200D03* 177 | X111386620Y-151079200D03* 178 | D18* 179 | X144400000Y-106948000D03* 180 | X144400000Y-112102000D03* 181 | X147600000Y-112102000D03* 182 | X147600000Y-106948000D03* 183 | D19* 184 | X113577000Y-107925000D03* 185 | X108423000Y-107925000D03* 186 | X108423000Y-111125000D03* 187 | X113577000Y-111125000D03* 188 | D18* 189 | X113600000Y-169252000D03* 190 | X113600000Y-164098000D03* 191 | X110400000Y-164098000D03* 192 | X110400000Y-169252000D03* 193 | D19* 194 | X143423000Y-168275000D03* 195 | X148577000Y-168275000D03* 196 | X148577000Y-165075000D03* 197 | X143423000Y-165075000D03* 198 | D20* 199 | X114047000Y-129781300D03* 200 | X110997000Y-129781300D03* 201 | D21* 202 | X134061200Y-103388160D03* 203 | X134061200Y-107558840D03* 204 | D22* 205 | X164223700Y-173774100D03* 206 | X160723580Y-173774100D03* 207 | D23* 208 | X142087600Y-182245000D03* 209 | X142087600Y-178744880D03* 210 | X122161300Y-178041300D03* 211 | X122161300Y-174541180D03* 212 | X104013000Y-182054500D03* 213 | X104013000Y-178554380D03* 214 | X160312100Y-158952600D03* 215 | X160312100Y-155452480D03* 216 | X141211300Y-158952600D03* 217 | X141211300Y-155452480D03* 218 | X122174000Y-158952600D03* 219 | X122174000Y-155452480D03* 220 | X103111300Y-158952600D03* 221 | X103111300Y-155452480D03* 222 | X162928300Y-135813800D03* 223 | X162928300Y-132313680D03* 224 | X141224000Y-139752600D03* 225 | X141224000Y-136252480D03* 226 | X122148600Y-139752600D03* 227 | X122148600Y-136252480D03* 228 | X103111300Y-139752600D03* 229 | X103111300Y-136252480D03* 230 | X161493200Y-124891800D03* 231 | X161493200Y-121391680D03* 232 | X141236700Y-120952600D03* 233 | X141236700Y-117452480D03* 234 | X122148600Y-120952600D03* 235 | X122148600Y-117452480D03* 236 | X103047800Y-120952600D03* 237 | X103047800Y-117452480D03* 238 | X160223200Y-101752600D03* 239 | X160223200Y-98252480D03* 240 | X141160500Y-101752600D03* 241 | X141160500Y-98252480D03* 242 | X122148600Y-101752600D03* 243 | X122148600Y-98252480D03* 244 | X103060500Y-101752600D03* 245 | X103060500Y-98252480D03* 246 | X160299400Y-77952600D03* 247 | X160299400Y-74452480D03* 248 | X141185900Y-77952600D03* 249 | X141185900Y-74452480D03* 250 | X122135900Y-77952600D03* 251 | X122135900Y-74452480D03* 252 | X103124000Y-77952600D03* 253 | X103124000Y-74452480D03* 254 | D16* 255 | X150190200Y-108461300D03* 256 | X150190200Y-110461300D03* 257 | D12* 258 | X112366300Y-113639600D03* 259 | X110366300Y-113639600D03* 260 | D16* 261 | X117297200Y-165598600D03* 262 | X117297200Y-167598600D03* 263 | X151828500Y-83518500D03* 264 | X151828500Y-85518500D03* 265 | X162433000Y-83518500D03* 266 | X162433000Y-85518500D03* 267 | D12* 268 | X127000000Y-135534400D03* 269 | X125000000Y-135534400D03* 270 | D16* 271 | X108419900Y-130438400D03* 272 | X108419900Y-128438400D03* 273 | X107632500Y-122050300D03* 274 | X107632500Y-124050300D03* 275 | D12* 276 | X143000000Y-148475700D03* 277 | X145000000Y-148475700D03* 278 | X143000000Y-146151600D03* 279 | X145000000Y-146151600D03* 280 | X125500000Y-105905300D03* 281 | X123500000Y-105905300D03* 282 | D16* 283 | X118770400Y-147304000D03* 284 | X118770400Y-145304000D03* 285 | D12* 286 | X127000000Y-130581400D03* 287 | X125000000Y-130581400D03* 288 | X126762000Y-156070300D03* 289 | X128762000Y-156070300D03* 290 | X143000000Y-150787100D03* 291 | X145000000Y-150787100D03* 292 | X127000000Y-133007100D03* 293 | X125000000Y-133007100D03* 294 | X125500000Y-108254800D03* 295 | X123500000Y-108254800D03* 296 | D16* 297 | X139090400Y-167027100D03* 298 | X139090400Y-165027100D03* 299 | D12* 300 | X117878100Y-149987000D03* 301 | X115878100Y-149987000D03* 302 | D10* 303 | G36* 304 | X128422400Y-171080914D02* 305 | X126654633Y-169313147D01* 306 | X128422400Y-167545380D01* 307 | X130190167Y-169313147D01* 308 | X128422400Y-171080914D01* 309 | X128422400Y-171080914D01* 310 | G37* 311 | G36* 312 | X133372147Y-166131167D02* 313 | X131604380Y-164363400D01* 314 | X133372147Y-162595633D01* 315 | X135139914Y-164363400D01* 316 | X133372147Y-166131167D01* 317 | X133372147Y-166131167D01* 318 | G37* 319 | G36* 320 | X128422400Y-161181420D02* 321 | X126654633Y-159413653D01* 322 | X128422400Y-157645886D01* 323 | X130190167Y-159413653D01* 324 | X128422400Y-161181420D01* 325 | X128422400Y-161181420D01* 326 | G37* 327 | G36* 328 | X123472653Y-166131167D02* 329 | X121704886Y-164363400D01* 330 | X123472653Y-162595633D01* 331 | X125240420Y-164363400D01* 332 | X123472653Y-166131167D01* 333 | X123472653Y-166131167D01* 334 | G37* 335 | D24* 336 | X130500942Y-182308440D03* 337 | X126800942Y-182308440D03* 338 | X130500942Y-176108440D03* 339 | X126800942Y-176108440D03* 340 | D25* 341 | X96608900Y-148424900D03* 342 | X96608900Y-146924900D03* 343 | X96608900Y-149924900D03* 344 | D12* 345 | X100549200Y-148742400D03* 346 | X102549200Y-148742400D03* 347 | D26* 348 | X127275000Y-72725000D03* 349 | X127925000Y-72725000D03* 350 | X128575000Y-72725000D03* 351 | X129225000Y-72725000D03* 352 | X129875000Y-72725000D03* 353 | D27* 354 | X125675000Y-72900000D03* 355 | D28* 356 | X131300000Y-70325000D03* 357 | D27* 358 | X131475000Y-72900000D03* 359 | D29* 360 | X131562500Y-71600000D03* 361 | X125587500Y-71600000D03* 362 | D28* 363 | X125850000Y-70325000D03* 364 | D30* 365 | X129537500Y-69650000D03* 366 | X127612500Y-69650000D03* 367 | D26* 368 | X127275000Y-96537500D03* 369 | X127925000Y-96537500D03* 370 | X128575000Y-96537500D03* 371 | X129225000Y-96537500D03* 372 | X129875000Y-96537500D03* 373 | D27* 374 | X125675000Y-96712500D03* 375 | D28* 376 | X131300000Y-94137500D03* 377 | D27* 378 | X131475000Y-96712500D03* 379 | D29* 380 | X131562500Y-95412500D03* 381 | X125587500Y-95412500D03* 382 | D28* 383 | X125850000Y-94137500D03* 384 | D30* 385 | X129537500Y-93462500D03* 386 | X127612500Y-93462500D03* 387 | M02* 388 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad-Edge.Cuts.gm1: -------------------------------------------------------------------------------- 1 | G04 #@! TF.FileFunction,Profile,NP* 2 | %FSLAX46Y46*% 3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 4 | G04 Created by KiCad (PCBNEW 4.0.1-stable) date 5/21/2016 3:48:14 PM* 5 | %MOMM*% 6 | G01* 7 | G04 APERTURE LIST* 8 | %ADD10C,0.100000*% 9 | %ADD11C,0.127000*% 10 | G04 APERTURE END LIST* 11 | D10* 12 | D11* 13 | X164350000Y-90400000D02* 14 | G75* 15 | G03X165150000Y-89600000I0J800000D01* 16 | G01* 17 | X165150000Y-92800000D02* 18 | G75* 19 | G03X164350000Y-92000000I-800000J0D01* 20 | G01* 21 | X92800000Y-92000000D02* 22 | G75* 23 | G03X92000000Y-92800000I0J-800000D01* 24 | G01* 25 | X92000000Y-89600000D02* 26 | G75* 27 | G03X92800000Y-90400000I800000J0D01* 28 | G01* 29 | X164350000Y-90400000D02* 30 | X150250000Y-90400000D01* 31 | X165150000Y-89600000D02* 32 | X165150000Y-70187500D01* 33 | X92000000Y-182200000D02* 34 | G75* 35 | G03X94000000Y-184200000I2000000J0D01* 36 | G01* 37 | X163150000Y-184200000D02* 38 | G75* 39 | G03X165150000Y-182200000I0J2000000D01* 40 | G01* 41 | X165150000Y-70187500D02* 42 | G75* 43 | G03X163150000Y-68187500I-2000000J0D01* 44 | G01* 45 | X94000000Y-68187500D02* 46 | G75* 47 | G03X92000000Y-70187500I0J-2000000D01* 48 | G01* 49 | X150250000Y-90400000D02* 50 | G75* 51 | G03X150250000Y-92000000I0J-800000D01* 52 | G01* 53 | X164350000Y-92000000D02* 54 | X150250000Y-92000000D01* 55 | X92000000Y-89600000D02* 56 | X92000000Y-70187500D01* 57 | X92800000Y-92000000D02* 58 | X107000000Y-92000000D01* 59 | X107000000Y-92000000D02* 60 | G75* 61 | G03X107000000Y-90400000I0J800000D01* 62 | G01* 63 | X92800000Y-90400000D02* 64 | X107000000Y-90400000D01* 65 | X92000000Y-182200000D02* 66 | X92000000Y-92800000D01* 67 | X165150000Y-182200000D02* 68 | X165150000Y-92800000D01* 69 | X94000000Y-184200000D02* 70 | X163150000Y-184200000D01* 71 | X94000000Y-68187500D02* 72 | X163150000Y-68187500D01* 73 | M02* 74 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad-F.Paste.gtp: -------------------------------------------------------------------------------- 1 | G04 #@! TF.FileFunction,Paste,Top* 2 | %FSLAX46Y46*% 3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 4 | G04 Created by KiCad (PCBNEW 4.0.1-stable) date 5/21/2016 3:48:14 PM* 5 | %MOMM*% 6 | G01* 7 | G04 APERTURE LIST* 8 | %ADD10C,0.100000*% 9 | G04 APERTURE END LIST* 10 | D10* 11 | M02* 12 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ;DRILL file {KiCad 4.0.1-stable} date 5/21/2016 3:48:16 PM 3 | ;FORMAT={-:-/ absolute / metric / decimal} 4 | FMAT,2 5 | METRIC,TZ 6 | T1C0.986 7 | T2C0.988 8 | T3C1.600 9 | T4C1.702 10 | T5C2.370 11 | T6C2.372 12 | T7C2.500 13 | T8C3.048 14 | T9C3.988 15 | % 16 | G90 17 | G05 18 | M71 19 | T1 20 | X142.583Y-127. 21 | X142.583Y-129.032 22 | T2 23 | X147.663Y-128.016 24 | T4 25 | X94.92Y-76.188 26 | X94.92Y-100. 27 | X94.92Y-119.05 28 | X94.92Y-138.1 29 | X94.92Y-157.15 30 | X94.92Y-176.2 31 | X100.Y-123.495 32 | X100.Y-133.655 33 | X100.Y-161.595 34 | X100.Y-171.755 35 | X104.445Y-176.2 36 | X105.08Y-76.188 37 | X105.08Y-100. 38 | X105.08Y-119.05 39 | X105.08Y-138.1 40 | X105.08Y-157.15 41 | X105.08Y-176.2 42 | X113.97Y-76.188 43 | X113.97Y-100. 44 | X113.97Y-119.05 45 | X113.97Y-138.1 46 | X113.97Y-157.15 47 | X113.97Y-176.2 48 | X114.605Y-176.2 49 | X124.13Y-76.188 50 | X124.13Y-100. 51 | X124.13Y-119.05 52 | X124.13Y-138.1 53 | X124.13Y-157.15 54 | X124.13Y-176.2 55 | X133.02Y-76.188 56 | X133.02Y-100. 57 | X133.02Y-119.05 58 | X133.02Y-138.1 59 | X133.02Y-157.15 60 | X133.02Y-176.2 61 | X142.545Y-176.2 62 | X143.18Y-76.188 63 | X143.18Y-100. 64 | X143.18Y-119.05 65 | X143.18Y-138.1 66 | X143.18Y-157.15 67 | X143.18Y-176.2 68 | X152.07Y-76.188 69 | X152.07Y-100. 70 | X152.07Y-119.05 71 | X152.07Y-138.1 72 | X152.07Y-157.15 73 | X152.07Y-176.2 74 | X152.705Y-176.2 75 | X157.15Y-123.495 76 | X157.15Y-133.655 77 | X157.15Y-161.595 78 | X157.15Y-171.755 79 | X162.23Y-76.188 80 | X162.23Y-100. 81 | X162.23Y-119.05 82 | X162.23Y-138.1 83 | X162.23Y-157.15 84 | X162.23Y-176.2 85 | T5 86 | X144.488Y-125.476 87 | X144.488Y-130.556 88 | X147.536Y-130.556 89 | T6 90 | X147.663Y-125.476 91 | T7 92 | X151.55Y-76.188 93 | X162.75Y-76.188 94 | T8 95 | X93.015Y-116.637 96 | X93.015Y-140.513 97 | X93.015Y-154.737 98 | X93.015Y-178.613 99 | X97.587Y-183.185 100 | X121.463Y-183.185 101 | X135.687Y-183.185 102 | X159.563Y-183.185 103 | X164.135Y-116.637 104 | X164.135Y-140.513 105 | X164.135Y-154.737 106 | X164.135Y-178.613 107 | T9 108 | X97.587Y-167.945 109 | X100.Y-76.188 110 | X100.Y-100. 111 | X100.Y-119.05 112 | X100.Y-128.575 113 | X100.Y-138.1 114 | X100.Y-157.15 115 | X100.Y-166.675 116 | X100.Y-176.2 117 | X108.255Y-116.637 118 | X108.255Y-140.513 119 | X108.255Y-154.737 120 | X108.255Y-178.613 121 | X109.525Y-176.2 122 | X119.05Y-76.188 123 | X119.05Y-100. 124 | X119.05Y-119.05 125 | X119.05Y-138.1 126 | X119.05Y-157.15 127 | X119.05Y-176.2 128 | X121.463Y-167.945 129 | X135.687Y-167.945 130 | X138.1Y-76.188 131 | X138.1Y-100. 132 | X138.1Y-119.05 133 | X138.1Y-138.1 134 | X138.1Y-157.15 135 | X138.1Y-176.2 136 | X147.625Y-176.2 137 | X148.895Y-116.637 138 | X148.895Y-140.513 139 | X148.895Y-154.737 140 | X148.895Y-178.613 141 | X157.15Y-76.188 142 | X157.15Y-100. 143 | X157.15Y-119.05 144 | X157.15Y-128.575 145 | X157.15Y-138.1 146 | X157.15Y-157.15 147 | X157.15Y-166.675 148 | X157.15Y-176.2 149 | X159.563Y-167.945 150 | T3 151 | X112.375Y-91.206G85X144.775Y-91.206 152 | G05 153 | T0 154 | M30 155 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ;DRILL file {KiCad 4.0.1-stable} date 5/21/2016 3:48:16 PM 3 | ;FORMAT={-:-/ absolute / metric / decimal} 4 | FMAT,2 5 | METRIC,TZ 6 | T1C0.305 7 | T2C0.650 8 | T3C0.700 9 | T4C0.800 10 | T5C1.016 11 | T6C1.500 12 | % 13 | G90 14 | G05 15 | M71 16 | T1 17 | X94.424Y-102.946 18 | X96.685Y-145.136 19 | X99.644Y-116.434 20 | X102.654Y-130.531 21 | X103.06Y-101.753 22 | X103.111Y-158.953 23 | X103.594Y-143.802 24 | X104.483Y-121.145 25 | X105.207Y-145.732 26 | X105.55Y-152.616 27 | X105.829Y-121.145 28 | X106.362Y-148.958 29 | X108.306Y-144.539 30 | X108.42Y-130.438 31 | X110.01Y-161.347 32 | X110.16Y-162.395 33 | X110.236Y-145.326 34 | X110.363Y-80.391 35 | X110.686Y-100.375 36 | X110.998Y-162.611 37 | X111.661Y-125.22 38 | X112.281Y-145.161 39 | X112.319Y-104.216 40 | X112.459Y-149.542 41 | X112.712Y-126.467 42 | X113.411Y-94.869 43 | X113.577Y-107.925 44 | X113.728Y-78.08 45 | X114.706Y-124.943 46 | X114.732Y-149.53 47 | X114.91Y-121.285 48 | X115.773Y-167.633 49 | X115.913Y-141.63 50 | X116.954Y-126.505 51 | X117.17Y-132.143 52 | X118.77Y-145.304 53 | X118.869Y-127.902 54 | X119.52Y-129.451 55 | X119.52Y-150.05 56 | X120.078Y-131.712 57 | X120.688Y-128.219 58 | X120.955Y-127.063 59 | X121.326Y-129.581 60 | X121.958Y-142.494 61 | X122.149Y-101.753 62 | X122.149Y-120.953 63 | X123.495Y-152.578 64 | X123.825Y-179.705 65 | X124.181Y-77.953 66 | X124.295Y-131.762 67 | X124.308Y-148.222 68 | X124.353Y-102.563 69 | X124.371Y-101.765 70 | X125.705Y-98.323 71 | X125.857Y-172.466 72 | X126.314Y-99.009 73 | X126.365Y-134.747 74 | X126.378Y-74.422 75 | X126.413Y-150.231 76 | X126.759Y-171.209 77 | X126.801Y-176.108 78 | X127.Y-130.581 79 | X127.063Y-117.119 80 | X127.118Y-99.712 81 | X127.191Y-138.443 82 | X127.622Y-150.685 83 | X127.75Y-95.22 84 | X128.187Y-76.885 85 | X128.473Y-99.898 86 | X128.575Y-75.971 87 | X128.727Y-95.263 88 | X128.762Y-156.07 89 | X129.032Y-110.376 90 | X129.476Y-135.801 91 | X129.857Y-98.234 92 | X129.907Y-110.399 93 | X130.01Y-135.2 94 | X130.357Y-173.289 95 | X130.67Y-158.699 96 | X130.746Y-156.553 97 | X130.846Y-74.571 98 | X131.191Y-155.778 99 | X131.225Y-154.647 100 | X133.312Y-105.346 101 | X134.061Y-103.388 102 | X134.62Y-141.351 103 | X135.153Y-142.164 104 | X135.562Y-150.035 105 | X135.903Y-147.3 106 | X136.017Y-139.827 107 | X136.563Y-146.787 108 | X136.855Y-164.96 109 | X137.477Y-146.012 110 | X137.693Y-141.732 111 | X138.227Y-132.956 112 | X138.633Y-150.19 113 | X140.589Y-110.871 114 | X141.719Y-144.488 115 | X141.859Y-180.467 116 | X142.418Y-163.805 117 | X142.43Y-130.632 118 | X142.85Y-141.415 119 | X143.Y-150.8 120 | X143.423Y-168.275 121 | X144.463Y-82.233 122 | X144.856Y-134.633 123 | X144.958Y-144.793 124 | X145.Y-150.787 125 | X145.123Y-127.381 126 | X145.872Y-144.488 127 | X146.063Y-126.314 128 | X146.113Y-131.762 129 | X146.376Y-150.097 130 | X147.18Y-145.707 131 | X147.485Y-101.689 132 | X147.549Y-159.931 133 | X148.311Y-144.577 134 | X148.577Y-165.075 135 | X152.019Y-88.456 136 | X152.362Y-121.374 137 | X152.908Y-86.868 138 | X153.073Y-103.216 139 | X153.924Y-86.55 140 | X154.114Y-139.522 141 | X157.328Y-151.092 142 | X161.315Y-135.687 143 | X164.224Y-173.774 144 | T4 145 | X98.73Y-81.267 146 | X98.73Y-105.08 147 | X98.73Y-124.13 148 | X98.73Y-143.18 149 | X98.73Y-162.23 150 | X98.73Y-181.28 151 | X101.27Y-81.267 152 | X101.27Y-105.08 153 | X101.27Y-124.13 154 | X101.27Y-143.18 155 | X101.27Y-162.23 156 | X101.27Y-181.28 157 | X105.08Y-127.305 158 | X105.08Y-129.845 159 | X105.08Y-165.405 160 | X105.08Y-167.945 161 | X108.255Y-181.28 162 | X110.795Y-181.28 163 | X117.78Y-81.267 164 | X117.78Y-105.08 165 | X117.78Y-124.13 166 | X117.78Y-143.18 167 | X117.78Y-162.23 168 | X117.78Y-181.28 169 | X120.32Y-81.267 170 | X120.32Y-105.08 171 | X120.32Y-124.13 172 | X120.32Y-143.18 173 | X120.32Y-162.23 174 | X120.32Y-181.28 175 | X136.83Y-81.267 176 | X136.83Y-105.08 177 | X136.83Y-124.13 178 | X136.83Y-143.18 179 | X136.83Y-162.23 180 | X136.83Y-181.28 181 | X139.37Y-81.267 182 | X139.37Y-105.08 183 | X139.37Y-124.13 184 | X139.37Y-143.18 185 | X139.37Y-162.23 186 | X139.37Y-181.28 187 | X146.355Y-181.28 188 | X148.895Y-181.28 189 | X155.88Y-81.267 190 | X155.88Y-105.08 191 | X155.88Y-124.13 192 | X155.88Y-143.18 193 | X155.88Y-162.23 194 | X155.88Y-181.28 195 | X158.42Y-81.267 196 | X158.42Y-105.08 197 | X158.42Y-124.13 198 | X158.42Y-143.18 199 | X158.42Y-162.23 200 | X158.42Y-181.28 201 | X162.23Y-127.305 202 | X162.23Y-129.845 203 | X162.23Y-165.405 204 | X162.23Y-167.945 205 | T5 206 | X99.681Y-111.279 207 | X101.477Y-109.483 208 | X103.273Y-107.687 209 | X105.069Y-105.891 210 | X106.865Y-104.095 211 | X108.661Y-102.298 212 | X150.597Y-148.044 213 | X153.137Y-148.044 214 | X154.65Y-83.688 215 | X155.677Y-148.044 216 | X157.15Y-83.688 217 | X158.217Y-148.044 218 | X159.65Y-83.688 219 | X160.757Y-148.044 220 | X163.297Y-148.044 221 | T6 222 | X94.92Y-126.142 223 | X94.92Y-164.242 224 | X95.5Y-126.182 225 | X95.5Y-164.282 226 | X96.Y-131.183 227 | X96.Y-169.283 228 | X96.082Y-73.647 229 | X96.082Y-97.46 230 | X96.082Y-116.51 231 | X96.082Y-135.56 232 | X96.082Y-154.61 233 | X96.082Y-173.66 234 | X97.392Y-72.188 235 | X97.392Y-96. 236 | X97.392Y-115.05 237 | X97.392Y-134.1 238 | X97.392Y-153.15 239 | X97.392Y-172.2 240 | X97.46Y-132.493 241 | X97.46Y-170.593 242 | X102.393Y-71.688 243 | X102.393Y-95.5 244 | X102.393Y-114.55 245 | X102.393Y-133.6 246 | X102.393Y-152.65 247 | X102.393Y-171.7 248 | X102.433Y-71.108 249 | X102.433Y-94.92 250 | X102.433Y-113.97 251 | X102.433Y-133.02 252 | X102.433Y-152.07 253 | X102.433Y-171.12 254 | X105.607Y-173.66 255 | X106.917Y-172.2 256 | X111.918Y-171.7 257 | X111.958Y-171.12 258 | X115.132Y-73.647 259 | X115.132Y-97.46 260 | X115.132Y-116.51 261 | X115.132Y-135.56 262 | X115.132Y-154.61 263 | X115.132Y-173.66 264 | X116.442Y-72.188 265 | X116.442Y-96. 266 | X116.442Y-115.05 267 | X116.442Y-134.1 268 | X116.442Y-153.15 269 | X116.442Y-172.2 270 | X121.443Y-71.688 271 | X121.443Y-95.5 272 | X121.443Y-114.55 273 | X121.443Y-133.6 274 | X121.443Y-152.65 275 | X121.443Y-171.7 276 | X121.483Y-71.108 277 | X121.483Y-94.92 278 | X121.483Y-113.97 279 | X121.483Y-133.02 280 | X121.483Y-152.07 281 | X121.483Y-171.12 282 | X134.182Y-73.647 283 | X134.182Y-97.46 284 | X134.182Y-116.51 285 | X134.182Y-135.56 286 | X134.182Y-154.61 287 | X134.182Y-173.66 288 | X135.492Y-72.188 289 | X135.492Y-96. 290 | X135.492Y-115.05 291 | X135.492Y-134.1 292 | X135.492Y-153.15 293 | X135.492Y-172.2 294 | X140.493Y-71.688 295 | X140.493Y-95.5 296 | X140.493Y-114.55 297 | X140.493Y-133.6 298 | X140.493Y-152.65 299 | X140.493Y-171.7 300 | X140.533Y-71.108 301 | X140.533Y-94.92 302 | X140.533Y-113.97 303 | X140.533Y-133.02 304 | X140.533Y-152.07 305 | X140.533Y-171.12 306 | X143.707Y-173.66 307 | X145.017Y-172.2 308 | X150.018Y-171.7 309 | X150.058Y-171.12 310 | X152.07Y-126.142 311 | X152.07Y-164.242 312 | X152.65Y-126.182 313 | X152.65Y-164.282 314 | X153.15Y-131.183 315 | X153.15Y-169.283 316 | X153.232Y-73.647 317 | X153.232Y-97.46 318 | X153.232Y-116.51 319 | X153.232Y-135.56 320 | X153.232Y-154.61 321 | X153.232Y-173.66 322 | X154.542Y-72.188 323 | X154.542Y-96. 324 | X154.542Y-115.05 325 | X154.542Y-134.1 326 | X154.542Y-153.15 327 | X154.542Y-172.2 328 | X154.61Y-132.493 329 | X154.61Y-170.593 330 | X159.543Y-71.688 331 | X159.543Y-95.5 332 | X159.543Y-114.55 333 | X159.543Y-133.6 334 | X159.543Y-152.65 335 | X159.543Y-171.7 336 | X159.583Y-71.108 337 | X159.583Y-94.92 338 | X159.583Y-113.97 339 | X159.583Y-133.02 340 | X159.583Y-152.07 341 | X159.583Y-171.12 342 | T2 343 | X126.15Y-72.7G85X126.15Y-73.1 344 | G05 345 | X126.15Y-96.512G85X126.15Y-96.912 346 | G05 347 | X131.Y-72.7G85X131.Y-73.1 348 | G05 349 | X131.Y-96.512G85X131.Y-96.912 350 | G05 351 | T3 352 | X125.85Y-69.65G85X125.85Y-70.15 353 | G05 354 | X125.85Y-93.462G85X125.85Y-93.962 355 | G05 356 | X131.3Y-69.65G85X131.3Y-70.15 357 | G05 358 | X131.3Y-93.462G85X131.3Y-93.962 359 | G05 360 | T0 361 | M30 362 | -------------------------------------------------------------------------------- /PCB/gerbers/SAMPad.gvp: -------------------------------------------------------------------------------- 1 | (gerbv-file-version! "2.0A") 2 | (define-layer! 11 (cons 'filename "SAMPad-B.Cu.gbl") 3 | (cons 'visible #t) 4 | (cons 'color #(47288 35209 28784)) 5 | (cons 'translate #(13.110236 0.000000)) 6 | (cons 'mirror #(#f #t)) 7 | ) 8 | (define-layer! 10 (cons 'filename "SAMPad-F.Cu.gtl") 9 | (cons 'visible #t) 10 | (cons 'color #(47288 35209 28784)) 11 | ) 12 | (define-layer! 9 (cons 'filename "SAMPad-B.Mask.gbs") 13 | (cons 'inverted #t) 14 | (cons 'visible #t) 15 | (cons 'color #(17990 1285 1285)) 16 | (cons 'alpha #(51400)) 17 | (cons 'translate #(13.110236 0.000000)) 18 | (cons 'mirror #(#f #t)) 19 | ) 20 | (define-layer! 8 (cons 'filename "SAMPad-F.Mask.gts") 21 | (cons 'inverted #t) 22 | (cons 'visible #f) 23 | (cons 'color #(17990 1285 1285)) 24 | (cons 'alpha #(51400)) 25 | ) 26 | (define-layer! 7 (cons 'filename "SAMPad-B.SilkS.gbo") 27 | (cons 'visible #t) 28 | (cons 'color #(65535 65535 65535)) 29 | (cons 'translate #(13.110236 0.000000)) 30 | (cons 'mirror #(#f #t)) 31 | ) 32 | (define-layer! 6 (cons 'filename "SAMPad-F.SilkS.gto") 33 | (cons 'visible #t) 34 | (cons 'color #(65535 65535 65535)) 35 | ) 36 | (define-layer! 5 (cons 'filename "SAMPad-Edge.Cuts.gm1") 37 | (cons 'visible #t) 38 | (cons 'color #(0 0 0)) 39 | (cons 'alpha #(65535)) 40 | (cons 'translate #(13.110236 0.000000)) 41 | (cons 'mirror #(#f #t)) 42 | ) 43 | (define-layer! 4 (cons 'filename "SAMPad-NPTH.drl") 44 | (cons 'visible #t) 45 | (cons 'color #(0 0 0)) 46 | (cons 'alpha #(65535)) 47 | (cons 'translate #(13.110236 0.000000)) 48 | (cons 'mirror #(#f #t)) 49 | (cons 'attribs (list 50 | (list 'autodetect 'Boolean 1) 51 | (list 'zero_suppression 'Enum 1) 52 | (list 'units 'Enum 0) 53 | (list 'digits 'Integer 4) 54 | )) 55 | ) 56 | (define-layer! 3 (cons 'filename "SAMPad.drl") 57 | (cons 'visible #t) 58 | (cons 'color #(0 0 0)) 59 | (cons 'alpha #(65535)) 60 | (cons 'translate #(13.110236 0.000000)) 61 | (cons 'mirror #(#f #t)) 62 | (cons 'attribs (list 63 | (list 'autodetect 'Boolean 1) 64 | (list 'zero_suppression 'Enum 1) 65 | (list 'units 'Enum 0) 66 | (list 'digits 'Integer 4) 67 | )) 68 | ) 69 | (define-layer! 2 (cons 'filename "SAMPad-Edge.Cuts.gm1") 70 | (cons 'visible #t) 71 | (cons 'color #(0 0 0)) 72 | (cons 'alpha #(65535)) 73 | ) 74 | (define-layer! 1 (cons 'filename "SAMPad-NPTH.drl") 75 | (cons 'visible #t) 76 | (cons 'color #(0 0 0)) 77 | (cons 'alpha #(65535)) 78 | (cons 'attribs (list 79 | (list 'autodetect 'Boolean 1) 80 | (list 'zero_suppression 'Enum 1) 81 | (list 'units 'Enum 0) 82 | (list 'digits 'Integer 4) 83 | )) 84 | ) 85 | (define-layer! 0 (cons 'filename "SAMPad.drl") 86 | (cons 'visible #t) 87 | (cons 'color #(0 0 0)) 88 | (cons 'alpha #(65535)) 89 | (cons 'attribs (list 90 | (list 'autodetect 'Boolean 1) 91 | (list 'zero_suppression 'Enum 1) 92 | (list 'units 'Enum 0) 93 | (list 'digits 'Integer 4) 94 | )) 95 | ) 96 | (define-layer! -1 (cons 'filename "D:/Desktop/KB/SAMPad/PCB/gerbers") 97 | (cons 'color #(25186 1799 1799)) 98 | ) 99 | (set-render-type! 3) 100 | -------------------------------------------------------------------------------- /PCB/ledmatrix.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:SAMPad 3 | LIBS:SAMPad-cache 4 | EELAYER 25 0 5 | EELAYER END 6 | $Descr A3 16535 11693 7 | encoding utf-8 8 | Sheet 2 3 9 | Title "SAMPad" 10 | Date "2016-05-17" 11 | Rev "Rev 0.6" 12 | Comp "Mohit MOZ Garg" 13 | Comment1 "" 14 | Comment2 "" 15 | Comment3 "" 16 | Comment4 "" 17 | $EndDescr 18 | $Comp 19 | L LED LEDI1 20 | U 1 1 56DF4929 21 | P 4250 8450 22 | F 0 "LEDI1" H 4250 8550 50 0000 C CNN 23 | F 1 "LED" H 4250 8350 50 0000 C CNN 24 | F 2 "prettylib:INSW_LEDS_REG" H 4250 8450 60 0001 C CNN 25 | F 3 "" H 4250 8450 60 0000 C CNN 26 | F 4 "2x3x4mm LED" H 4250 8450 60 0001 C CNN "Description" 27 | 1 4250 8450 28 | -1 0 0 1 29 | $EndComp 30 | $Comp 31 | L LED LED4:4_2 32 | U 1 1 56DF492D 33 | P 4350 3400 34 | F 0 "LED4:4_2" H 4350 3500 50 0000 C CNN 35 | F 1 "LED" H 4350 3300 50 0000 C CNN 36 | F 2 "prettylib:INSW_LEDS_REG" H 4350 3400 60 0001 C CNN 37 | F 3 "" H 4350 3400 60 0000 C CNN 38 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2850 3400 60 0001 C CNN "Description" 39 | 1 4350 3400 40 | 0 -1 -1 0 41 | $EndComp 42 | $Comp 43 | L LED LED5:4 44 | U 1 1 56DF492E 45 | P 4350 3900 46 | F 0 "LED5:4" H 4350 4000 50 0000 C CNN 47 | F 1 "LED" H 4350 3800 50 0000 C CNN 48 | F 2 "prettylib:INSW_LEDS_REG" H 4350 3900 60 0001 C CNN 49 | F 3 "" H 4350 3900 60 0000 C CNN 50 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 1650 3900 60 0001 C CNN "Description" 51 | 1 4350 3900 52 | 0 -1 -1 0 53 | $EndComp 54 | $Comp 55 | L LED LED2:3 56 | U 1 1 56DF4931 57 | P 3650 2400 58 | F 0 "LED2:3" H 3650 2500 50 0000 C CNN 59 | F 1 "LED" H 3650 2300 50 0000 C CNN 60 | F 2 "prettylib:INSW_LEDS_REG" H 3650 2400 60 0001 C CNN 61 | F 3 "" H 3650 2400 60 0000 C CNN 62 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 3050 1900 60 0001 C CNN "Description" 63 | 1 3650 2400 64 | 0 -1 -1 0 65 | $EndComp 66 | $Comp 67 | L LED LED3:4 68 | U 1 1 56DF4932 69 | P 4350 2900 70 | F 0 "LED3:4" H 4350 3000 50 0000 C CNN 71 | F 1 "LED" H 4350 2800 50 0000 C CNN 72 | F 2 "prettylib:INSW_LEDS_REG" H 4350 2900 60 0001 C CNN 73 | F 3 "" H 4350 2900 60 0000 C CNN 74 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 3450 2400 60 0001 C CNN "Description" 75 | 1 4350 2900 76 | 0 -1 -1 0 77 | $EndComp 78 | $Comp 79 | L LED LED4:3 80 | U 1 1 56DF4933 81 | P 3650 3400 82 | F 0 "LED4:3" H 3650 3500 50 0000 C CNN 83 | F 1 "LED" H 3650 3300 50 0000 C CNN 84 | F 2 "prettylib:INSW_LEDS_REG" H 3650 3400 60 0001 C CNN 85 | F 3 "" H 3650 3400 60 0000 C CNN 86 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2150 2900 60 0001 C CNN "Description" 87 | 1 3650 3400 88 | 0 -1 -1 0 89 | $EndComp 90 | $Comp 91 | L LED LED5:3 92 | U 1 1 56DF4934 93 | P 3650 3900 94 | F 0 "LED5:3" H 3650 4000 50 0000 C CNN 95 | F 1 "LED" H 3650 3800 50 0000 C CNN 96 | F 2 "prettylib:INSW_LEDS_REG" H 3650 3900 60 0001 C CNN 97 | F 3 "" H 3650 3900 60 0000 C CNN 98 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 1250 3400 60 0001 C CNN "Description" 99 | 1 3650 3900 100 | 0 -1 -1 0 101 | $EndComp 102 | $Comp 103 | L LED LED2:2 104 | U 1 1 55932330 105 | P 3000 2400 106 | F 0 "LED2:2" H 3000 2500 50 0000 C CNN 107 | F 1 "LED" H 3000 2300 50 0000 C CNN 108 | F 2 "prettylib:INSW_LEDS_REG" H 3000 2400 60 0001 C CNN 109 | F 3 "" H 3000 2400 60 0000 C CNN 110 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2400 1400 60 0001 C CNN "Description" 111 | 1 3000 2400 112 | 0 -1 -1 0 113 | $EndComp 114 | $Comp 115 | L LED LED3:3 116 | U 1 1 55932370 117 | P 3650 2900 118 | F 0 "LED3:3" H 3650 3000 50 0000 C CNN 119 | F 1 "LED" H 3650 2800 50 0000 C CNN 120 | F 2 "prettylib:INSW_LEDS_REG" H 3650 2900 60 0001 C CNN 121 | F 3 "" H 3650 2900 60 0000 C CNN 122 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2750 1900 60 0001 C CNN "Description" 123 | 1 3650 2900 124 | 0 -1 -1 0 125 | $EndComp 126 | $Comp 127 | L LED LED4:2 128 | U 1 1 56DF4938 129 | P 3000 3400 130 | F 0 "LED4:2" H 3000 3500 50 0000 C CNN 131 | F 1 "LED" H 3000 3300 50 0000 C CNN 132 | F 2 "prettylib:INSW_LEDS_REG" H 3000 3400 60 0001 C CNN 133 | F 3 "" H 3000 3400 60 0000 C CNN 134 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 1500 2400 60 0001 C CNN "Description" 135 | 1 3000 3400 136 | 0 -1 -1 0 137 | $EndComp 138 | $Comp 139 | L LED LED3:2 140 | U 1 1 5593260C 141 | P 3000 2900 142 | F 0 "LED3:2" H 3000 3000 50 0000 C CNN 143 | F 1 "LED" H 3000 2800 50 0000 C CNN 144 | F 2 "prettylib:INSW_LEDS_REG" H 3000 2900 60 0001 C CNN 145 | F 3 "" H 3000 2900 60 0000 C CNN 146 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2100 1400 60 0001 C CNN "Description" 147 | 1 3000 2900 148 | 0 -1 -1 0 149 | $EndComp 150 | $Comp 151 | L LED LED4:1 152 | U 1 1 559326B2 153 | P 2250 3400 154 | F 0 "LED4:1" H 2250 3500 50 0000 C CNN 155 | F 1 "LED" H 2250 3300 50 0000 C CNN 156 | F 2 "prettylib:INSW_LEDS_REG" H 2250 3400 60 0001 C CNN 157 | F 3 "" H 2250 3400 60 0000 C CNN 158 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 750 1900 60 0001 C CNN "Description" 159 | 1 2250 3400 160 | 0 -1 -1 0 161 | $EndComp 162 | $Comp 163 | L LED LED5:1 164 | U 1 1 56DF4941 165 | P 2300 3900 166 | F 0 "LED5:1" H 2300 4000 50 0000 C CNN 167 | F 1 "LED" H 2300 3800 50 0000 C CNN 168 | F 2 "prettylib:INSW_LEDS_REG" H 2300 3900 60 0001 C CNN 169 | F 3 "" H 2300 3900 60 0000 C CNN 170 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H -100 2400 60 0001 C CNN "Description" 171 | 1 2300 3900 172 | 0 -1 -1 0 173 | $EndComp 174 | $Comp 175 | L LED LED4:1_2 176 | U 1 1 569D1123 177 | P 2300 3400 178 | F 0 "LED4:1_2" H 2300 3500 50 0000 C CNN 179 | F 1 "LED" H 2300 3300 50 0000 C CNN 180 | F 2 "prettylib:INSW_LEDS_REG" H 2300 3400 60 0001 C CNN 181 | F 3 "" H 2300 3400 60 0000 C CNN 182 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 900 1750 60 0001 C CNN "Description" 183 | 1 2300 3400 184 | 0 -1 -1 0 185 | $EndComp 186 | $Comp 187 | L LED LED5:2 188 | U 1 1 569E7EB7 189 | P 3000 3900 190 | F 0 "LED5:2" H 3000 4000 50 0000 C CNN 191 | F 1 "LED" H 3000 3800 50 0000 C CNN 192 | F 2 "prettylib:INSW_LEDS_REG" H 3000 3900 60 0001 C CNN 193 | F 3 "" H 3000 3900 60 0000 C CNN 194 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 900 2900 60 0001 C CNN "Description" 195 | 1 3000 3900 196 | 0 -1 -1 0 197 | $EndComp 198 | $Comp 199 | L R R24 200 | U 1 1 56CFEE86 201 | P 2950 6200 202 | F 0 "R24" V 3030 6200 40 0000 C CNN 203 | F 1 "330" V 2957 6201 40 0000 C CNN 204 | F 2 "prettylib:SMD_0805" V 2880 6200 30 0001 C CNN 205 | F 3 "" H 2950 6200 30 0000 C CNN 206 | F 4 "RES SMD 330 OHM 1% 1/8W 0805" V 2950 6200 60 0001 C CNN "Description" 207 | F 5 "RC2012F331CS" V 2950 6200 60 0001 C CNN "Product" 208 | F 6 "http://www.digikey.com/product-detail/en/RC2012F331CS/1276-5246-1-ND/3968218" V 2950 6200 60 0001 C CNN "URL" 209 | F 7 "Samsung" V 2950 6200 60 0001 C CNN "Vendor" 210 | 1 2950 6200 211 | 0 1 1 0 212 | $EndComp 213 | $Comp 214 | L WS2812B LEDG3 215 | U 1 1 56CFEEA4 216 | P 4500 6900 217 | F 0 "LEDG3" H 4350 7100 50 0000 L CNN 218 | F 1 "WS2812B" H 4300 6700 50 0000 L CNN 219 | F 2 "prettylib:WS2812B" H 4500 6900 50 0001 L CNN 220 | F 3 "" H 4500 6900 60 0000 C CNN 221 | F 4 "LED RGB WS2812B W/DVR 4SMD 10PK" H 4500 6900 60 0001 C CNN "Description" 222 | F 5 "WS2812B" H 4500 6900 60 0001 C CNN "Product" 223 | F 6 "WorldSemi" H 4500 6900 60 0001 C CNN "Vendor" 224 | F 7 "http://www.digikey.com/product-search/en?mpart=1655&vendor=1528" H 4500 6900 60 0001 C CNN "URL" 225 | 1 4500 6900 226 | 1 0 0 -1 227 | $EndComp 228 | $Comp 229 | L WS2812B LEDG2 230 | U 1 1 56CFEED6 231 | P 4500 6100 232 | F 0 "LEDG2" H 4350 6300 50 0000 L CNN 233 | F 1 "WS2812B" H 4300 5900 50 0000 L CNN 234 | F 2 "prettylib:WS2812B" H 4500 6100 50 0001 L CNN 235 | F 3 "" H 4500 6100 60 0000 C CNN 236 | F 4 "LED RGB WS2812B W/DVR 4SMD 10PK" H 4500 6100 60 0001 C CNN "Description" 237 | F 5 "WS2812B" H 4500 6100 60 0001 C CNN "Product" 238 | F 6 "WorldSemi" H 4500 6100 60 0001 C CNN "Vendor" 239 | F 7 "http://www.digikey.com/product-search/en?mpart=1655&vendor=1528" H 4500 6100 60 0001 C CNN "URL" 240 | 1 4500 6100 241 | -1 0 0 1 242 | $EndComp 243 | $Comp 244 | L VSS #PWR01 245 | U 1 1 56CFEEF7 246 | P 2450 6050 247 | F 0 "#PWR01" H 2450 6050 30 0001 C CNN 248 | F 1 "VSS" H 2450 5980 30 0000 C CNN 249 | F 2 "" H 2450 6050 60 0000 C CNN 250 | F 3 "" H 2450 6050 60 0000 C CNN 251 | 1 2450 6050 252 | 1 0 0 -1 253 | $EndComp 254 | $Comp 255 | L C CLED2 256 | U 1 1 56CFEF79 257 | P 4800 5900 258 | F 0 "CLED2" H 4800 6000 40 0000 L CNN 259 | F 1 "0.1 uF" H 4806 5815 40 0000 L CNN 260 | F 2 "prettylib:SMD_0805" H 4838 5750 30 0001 C CNN 261 | F 3 "" H 4800 5900 60 0000 C CNN 262 | F 4 "CAP CER 0.1UF 16V X7R 0805" H 4800 5900 60 0001 C CNN "Description" 263 | F 5 "CL21B104KOANNNC" H 4800 5900 60 0001 C CNN "Product" 264 | F 6 "http://www.digikey.com/product-detail/en/CL21B104KOANNNC/1276-2448-1-ND/3890534" H 4800 5900 60 0001 C CNN "URL" 265 | F 7 "Samsung" H 4800 5900 60 0001 C CNN "Vendor" 266 | 1 4800 5900 267 | 1 0 0 -1 268 | $EndComp 269 | $Comp 270 | L C CLED3 271 | U 1 1 56CFEFBF 272 | P 4200 7100 273 | F 0 "CLED3" H 4200 7200 40 0000 R CNN 274 | F 1 "0.1 uF" H 4206 7015 40 0000 L CNN 275 | F 2 "prettylib:SMD_0805" H 4238 6950 30 0001 C CNN 276 | F 3 "" H 4200 7100 60 0000 C CNN 277 | F 4 "CAP CER 0.1UF 16V X7R 0805" H 4200 7100 60 0001 C CNN "Description" 278 | F 5 "CL21B104KOANNNC" H 4200 7100 60 0001 C CNN "Product" 279 | F 6 "http://www.digikey.com/product-detail/en/CL21B104KOANNNC/1276-2448-1-ND/3890534" H 4200 7100 60 0001 C CNN "URL" 280 | F 7 "Samsung" H 4200 7100 60 0001 C CNN "Vendor" 281 | 1 4200 7100 282 | 1 0 0 -1 283 | $EndComp 284 | Text HLabel 2450 6200 0 60 Input ~ 0 285 | RGBDIN 286 | Text HLabel 2450 6550 0 60 Input ~ 0 287 | RGBDOUT 288 | Text HLabel 1550 1700 0 60 Input ~ 0 289 | LEDCATH 290 | $Comp 291 | L LED LEDI2 292 | U 1 1 571354E7 293 | P 4250 8750 294 | F 0 "LEDI2" H 4250 8850 50 0000 C CNN 295 | F 1 "LED" H 4250 8650 50 0000 C CNN 296 | F 2 "prettylib:INSW_LEDS_REG" H 4250 8750 60 0001 C CNN 297 | F 3 "" H 4250 8750 60 0000 C CNN 298 | F 4 "2x3x4mm LED" H 4250 8750 60 0001 C CNN "Description" 299 | 1 4250 8750 300 | -1 0 0 1 301 | $EndComp 302 | $Comp 303 | L LED LEDI3 304 | U 1 1 57135974 305 | P 4250 9050 306 | F 0 "LEDI3" H 4250 9150 50 0000 C CNN 307 | F 1 "LED" H 4250 8950 50 0000 C CNN 308 | F 2 "prettylib:INSW_LEDS_REG" H 4250 9050 60 0001 C CNN 309 | F 3 "" H 4250 9050 60 0000 C CNN 310 | F 4 "2x3x4mm LED" H 4250 9050 60 0001 C CNN "Description" 311 | 1 4250 9050 312 | -1 0 0 1 313 | $EndComp 314 | Text HLabel 4050 8450 0 60 Input ~ 0 315 | LEDI1 316 | Text HLabel 4050 8750 0 60 Input ~ 0 317 | LEDI2 318 | Text HLabel 4050 9050 0 60 Input ~ 0 319 | LEDI3 320 | Text Notes 3000 1150 0 118 ~ 24 321 | Left side backlight matrix 322 | Text Notes 3800 5350 0 118 ~ 24 323 | RGB LEDs 324 | Text Notes 3650 8150 0 118 ~ 24 325 | Indicator LEDs 326 | $Comp 327 | L LED LEDI4 328 | U 1 1 56DE6D40 329 | P 4250 9350 330 | F 0 "LEDI4" H 4250 9450 50 0000 C CNN 331 | F 1 "LED" H 4250 9250 50 0000 C CNN 332 | F 2 "prettylib:INSW_LEDS_REG" H 4250 9350 60 0001 C CNN 333 | F 3 "" H 4250 9350 60 0000 C CNN 334 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 4250 9350 60 0001 C CNN "Description" 335 | 1 4250 9350 336 | -1 0 0 1 337 | $EndComp 338 | $Comp 339 | L R RI4 340 | U 1 1 56DE6D47 341 | P 4700 9350 342 | F 0 "RI4" V 4780 9350 40 0000 C CNN 343 | F 1 "470" V 4707 9351 40 0000 C CNN 344 | F 2 "prettylib:SMD_0805" V 4630 9350 30 0001 C CNN 345 | F 3 "" H 4700 9350 30 0001 C CNN 346 | F 4 "0805 Resistor for LED" V 4700 9350 60 0001 C CNN "Description" 347 | 1 4700 9350 348 | 0 -1 -1 0 349 | $EndComp 350 | Text HLabel 4050 9350 0 60 Input ~ 0 351 | LEDI4 352 | Text HLabel 1550 1800 0 60 Input ~ 0 353 | LEDAN 354 | $Comp 355 | L R RI1 356 | U 1 1 56EC29C2 357 | P 4700 8450 358 | F 0 "RI1" V 4780 8450 40 0000 C CNN 359 | F 1 "470" V 4707 8451 40 0000 C CNN 360 | F 2 "prettylib:SMD_0805" V 4630 8450 30 0001 C CNN 361 | F 3 "" H 4700 8450 30 0001 C CNN 362 | F 4 "0805 Resistor for LED" V 4700 8450 60 0001 C CNN "Description" 363 | 1 4700 8450 364 | 0 -1 -1 0 365 | $EndComp 366 | $Comp 367 | L R RI2 368 | U 1 1 56EC2C84 369 | P 4700 8750 370 | F 0 "RI2" V 4780 8750 40 0000 C CNN 371 | F 1 "470" V 4707 8751 40 0000 C CNN 372 | F 2 "prettylib:SMD_0805" V 4630 8750 30 0001 C CNN 373 | F 3 "" H 4700 8750 30 0001 C CNN 374 | F 4 "0805 Resistor for LED" V 4700 8750 60 0001 C CNN "Description" 375 | 1 4700 8750 376 | 0 -1 -1 0 377 | $EndComp 378 | $Comp 379 | L R RI3 380 | U 1 1 56EC2F49 381 | P 4700 9050 382 | F 0 "RI3" V 4780 9050 40 0000 C CNN 383 | F 1 "470" V 4707 9051 40 0000 C CNN 384 | F 2 "prettylib:SMD_0805" V 4630 9050 30 0001 C CNN 385 | F 3 "" H 4700 9050 30 0001 C CNN 386 | F 4 "0805 Resistor for LED" V 4700 9050 60 0001 C CNN "Description" 387 | 1 4700 9050 388 | 0 -1 -1 0 389 | $EndComp 390 | $Comp 391 | L LED LEDI7 392 | U 1 1 56E0C3D1 393 | P 4250 10250 394 | F 0 "LEDI7" H 4250 10350 50 0000 C CNN 395 | F 1 "LED" H 4250 10150 50 0000 C CNN 396 | F 2 "prettylib:LED_0805" H 4250 10250 60 0001 C CNN 397 | F 3 "" H 4250 10250 60 0000 C CNN 398 | F 4 "0805 SMD LED" H 4250 10250 60 0001 C CNN "Description" 399 | 1 4250 10250 400 | -1 0 0 1 401 | $EndComp 402 | Text HLabel 4050 10250 0 60 Input ~ 0 403 | LEDI7 404 | $Comp 405 | L R RI7 406 | U 1 1 56E0C3D9 407 | P 4700 10250 408 | F 0 "RI7" V 4780 10250 40 0000 C CNN 409 | F 1 "470" V 4707 10251 40 0000 C CNN 410 | F 2 "prettylib:SMD_0805" V 4630 10250 30 0001 C CNN 411 | F 3 "" H 4700 10250 30 0001 C CNN 412 | F 4 "0805 Resistor for LED" V 4700 10250 60 0001 C CNN "Description" 413 | 1 4700 10250 414 | 0 -1 -1 0 415 | $EndComp 416 | $Comp 417 | L WS2812B LEDG1 418 | U 1 1 5700397E 419 | P 3600 6100 420 | F 0 "LEDG1" H 3450 6300 50 0000 L CNN 421 | F 1 "WS2812B" H 3400 5900 50 0000 L CNN 422 | F 2 "prettylib:WS2812B" H 3600 6100 50 0001 L CNN 423 | F 3 "" H 3600 6100 60 0000 C CNN 424 | F 4 "LED RGB WS2812B W/DVR 4SMD 10PK" H 3600 6100 60 0001 C CNN "Description" 425 | F 5 "WS2812B" H 3600 6100 60 0001 C CNN "Product" 426 | F 6 "WorldSemi" H 3600 6100 60 0001 C CNN "Vendor" 427 | F 7 "http://www.digikey.com/product-search/en?mpart=1655&vendor=1528" H 3600 6100 60 0001 C CNN "URL" 428 | 1 3600 6100 429 | -1 0 0 1 430 | $EndComp 431 | $Comp 432 | L C CLED1 433 | U 1 1 57003988 434 | P 3900 5900 435 | F 0 "CLED1" H 3900 6000 40 0000 L CNN 436 | F 1 "0.1 uF" H 3906 5815 40 0000 L CNN 437 | F 2 "prettylib:SMD_0805" H 3938 5750 30 0001 C CNN 438 | F 3 "" H 3900 5900 60 0000 C CNN 439 | F 4 "CAP CER 0.1UF 16V X7R 0805" H 3900 5900 60 0001 C CNN "Description" 440 | F 5 "CL21B104KOANNNC" H 3900 5900 60 0001 C CNN "Product" 441 | F 6 "http://www.digikey.com/product-detail/en/CL21B104KOANNNC/1276-2448-1-ND/3890534" H 3900 5900 60 0001 C CNN "URL" 442 | F 7 "Samsung" H 3900 5900 60 0001 C CNN "Vendor" 443 | 1 3900 5900 444 | 1 0 0 -1 445 | $EndComp 446 | $Comp 447 | L WS2812B LEDG4 448 | U 1 1 57013087 449 | P 3600 6900 450 | F 0 "LEDG4" H 3450 7100 50 0000 L CNN 451 | F 1 "WS2812B" H 3400 6700 50 0000 L CNN 452 | F 2 "prettylib:WS2812B" H 3600 6900 50 0001 L CNN 453 | F 3 "" H 3600 6900 60 0000 C CNN 454 | F 4 "LED RGB WS2812B W/DVR 4SMD 10PK" H 3600 6900 60 0001 C CNN "Description" 455 | F 5 "WS2812B" H 3600 6900 60 0001 C CNN "Product" 456 | F 6 "WorldSemi" H 3600 6900 60 0001 C CNN "Vendor" 457 | F 7 "http://www.digikey.com/product-search/en?mpart=1655&vendor=1528" H 3600 6900 60 0001 C CNN "URL" 458 | 1 3600 6900 459 | 1 0 0 -1 460 | $EndComp 461 | $Comp 462 | L C CLED4 463 | U 1 1 57013091 464 | P 3300 7100 465 | F 0 "CLED4" H 3300 7200 40 0000 R CNN 466 | F 1 "0.1 uF" H 3306 7015 40 0000 L CNN 467 | F 2 "prettylib:SMD_0805" H 3338 6950 30 0001 C CNN 468 | F 3 "" H 3300 7100 60 0000 C CNN 469 | F 4 "CAP CER 0.1UF 16V X7R 0805" H 3300 7100 60 0001 C CNN "Description" 470 | F 5 "CL21B104KOANNNC" H 3300 7100 60 0001 C CNN "Product" 471 | F 6 "http://www.digikey.com/product-detail/en/CL21B104KOANNNC/1276-2448-1-ND/3890534" H 3300 7100 60 0001 C CNN "URL" 472 | F 7 "Samsung" H 3300 7100 60 0001 C CNN "Vendor" 473 | 1 3300 7100 474 | 1 0 0 -1 475 | $EndComp 476 | $Comp 477 | L LED LEDI5 478 | U 1 1 56F7752C 479 | P 4250 9650 480 | F 0 "LEDI5" H 4250 9750 50 0000 C CNN 481 | F 1 "LED" H 4250 9550 50 0000 C CNN 482 | F 2 "prettylib:INSW_LEDS_REG" H 4250 9650 60 0001 C CNN 483 | F 3 "" H 4250 9650 60 0000 C CNN 484 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 4250 9650 60 0001 C CNN "Description" 485 | 1 4250 9650 486 | -1 0 0 1 487 | $EndComp 488 | $Comp 489 | L R RI5 490 | U 1 1 56F77533 491 | P 4700 9650 492 | F 0 "RI5" V 4780 9650 40 0000 C CNN 493 | F 1 "470" V 4707 9651 40 0000 C CNN 494 | F 2 "prettylib:SMD_0805" V 4630 9650 30 0001 C CNN 495 | F 3 "" H 4700 9650 30 0001 C CNN 496 | F 4 "0805 Resistor for LED" V 4700 9650 60 0001 C CNN "Description" 497 | 1 4700 9650 498 | 0 -1 -1 0 499 | $EndComp 500 | Text HLabel 4050 9650 0 60 Input ~ 0 501 | LEDI5 502 | $Comp 503 | L LED LEDI6 504 | U 1 1 56F7784D 505 | P 4250 9950 506 | F 0 "LEDI6" H 4250 10050 50 0000 C CNN 507 | F 1 "LED" H 4250 9850 50 0000 C CNN 508 | F 2 "prettylib:INSW_LEDS_REG" H 4250 9950 60 0001 C CNN 509 | F 3 "" H 4250 9950 60 0000 C CNN 510 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 4250 9950 60 0001 C CNN "Description" 511 | 1 4250 9950 512 | -1 0 0 1 513 | $EndComp 514 | $Comp 515 | L R RI6 516 | U 1 1 56F77854 517 | P 4700 9950 518 | F 0 "RI6" V 4780 9950 40 0000 C CNN 519 | F 1 "470" V 4707 9951 40 0000 C CNN 520 | F 2 "prettylib:SMD_0805" V 4630 9950 30 0001 C CNN 521 | F 3 "" H 4700 9950 30 0001 C CNN 522 | F 4 "0805 Resistor for LED" V 4700 9950 60 0001 C CNN "Description" 523 | 1 4700 9950 524 | 0 -1 -1 0 525 | $EndComp 526 | Text HLabel 4050 9950 0 60 Input ~ 0 527 | LEDI6 528 | $Comp 529 | L LED LED3:1 530 | U 1 1 56F80A9F 531 | P 2300 2900 532 | F 0 "LED3:1" H 2300 3000 50 0000 C CNN 533 | F 1 "LED" H 2300 2800 50 0000 C CNN 534 | F 2 "prettylib:INSW_LEDS_REG" H 2300 2900 60 0001 C CNN 535 | F 3 "" H 2300 2900 60 0000 C CNN 536 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 1400 1400 60 0001 C CNN "Description" 537 | 1 2300 2900 538 | 0 -1 -1 0 539 | $EndComp 540 | $Comp 541 | L LED LED4:4 542 | U 1 1 56F81237 543 | P 4300 3400 544 | F 0 "LED4:4" H 4300 3500 50 0000 C CNN 545 | F 1 "LED" H 4300 3300 50 0000 C CNN 546 | F 2 "prettylib:INSW_LEDS_REG" H 4300 3400 60 0001 C CNN 547 | F 3 "" H 4300 3400 60 0000 C CNN 548 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2800 3400 60 0001 C CNN "Description" 549 | 1 4300 3400 550 | 0 -1 -1 0 551 | $EndComp 552 | $Comp 553 | L LED LED6:4_2 554 | U 1 1 56F81C71 555 | P 4300 4400 556 | F 0 "LED6:4_2" H 4300 4500 50 0000 C CNN 557 | F 1 "LED" H 4300 4300 50 0000 C CNN 558 | F 2 "prettylib:INSW_LEDS_REG" H 4300 4400 60 0001 C CNN 559 | F 3 "" H 4300 4400 60 0000 C CNN 560 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2800 4400 60 0001 C CNN "Description" 561 | 1 4300 4400 562 | 0 -1 -1 0 563 | $EndComp 564 | $Comp 565 | L LED LED6:3 566 | U 1 1 56F81C78 567 | P 3650 4400 568 | F 0 "LED6:3" H 3650 4500 50 0000 C CNN 569 | F 1 "LED" H 3650 4300 50 0000 C CNN 570 | F 2 "prettylib:INSW_LEDS_REG" H 3650 4400 60 0001 C CNN 571 | F 3 "" H 3650 4400 60 0000 C CNN 572 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2150 3900 60 0001 C CNN "Description" 573 | 1 3650 4400 574 | 0 -1 -1 0 575 | $EndComp 576 | $Comp 577 | L LED LED6:2 578 | U 1 1 56F81C7F 579 | P 3000 4400 580 | F 0 "LED6:2" H 3000 4500 50 0000 C CNN 581 | F 1 "LED" H 3000 4300 50 0000 C CNN 582 | F 2 "prettylib:INSW_LEDS_REG" H 3000 4400 60 0001 C CNN 583 | F 3 "" H 3000 4400 60 0000 C CNN 584 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 1500 3400 60 0001 C CNN "Description" 585 | 1 3000 4400 586 | 0 -1 -1 0 587 | $EndComp 588 | $Comp 589 | L LED LED6:1 590 | U 1 1 56F81C86 591 | P 2250 4400 592 | F 0 "LED6:1" H 2250 4500 50 0000 C CNN 593 | F 1 "LED" H 2250 4300 50 0000 C CNN 594 | F 2 "prettylib:INSW_LEDS_REG" H 2250 4400 60 0001 C CNN 595 | F 3 "" H 2250 4400 60 0000 C CNN 596 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 750 2900 60 0001 C CNN "Description" 597 | 1 2250 4400 598 | 0 -1 -1 0 599 | $EndComp 600 | $Comp 601 | L LED LED6:1_2 602 | U 1 1 56F81C8D 603 | P 2300 4400 604 | F 0 "LED6:1_2" H 2300 4500 50 0000 C CNN 605 | F 1 "LED" H 2300 4300 50 0000 C CNN 606 | F 2 "prettylib:INSW_LEDS_REG" H 2300 4400 60 0001 C CNN 607 | F 3 "" H 2300 4400 60 0000 C CNN 608 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 900 2750 60 0001 C CNN "Description" 609 | 1 2300 4400 610 | 0 -1 -1 0 611 | $EndComp 612 | $Comp 613 | L LED LED6:4 614 | U 1 1 56F81C99 615 | P 4250 4400 616 | F 0 "LED6:4" H 4250 4500 50 0000 C CNN 617 | F 1 "LED" H 4250 4300 50 0000 C CNN 618 | F 2 "prettylib:INSW_LEDS_REG" H 4250 4400 60 0001 C CNN 619 | F 3 "" H 4250 4400 60 0000 C CNN 620 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2750 4400 60 0001 C CNN "Description" 621 | 1 4250 4400 622 | 0 -1 -1 0 623 | $EndComp 624 | $Comp 625 | L LED LED6:1_3 626 | U 1 1 56F8367C 627 | P 2350 4400 628 | F 0 "LED6:1_3" H 2350 4500 50 0000 C CNN 629 | F 1 "LED" H 2350 4300 50 0000 C CNN 630 | F 2 "prettylib:INSW_LEDS_REG" H 2350 4400 60 0001 C CNN 631 | F 3 "" H 2350 4400 60 0000 C CNN 632 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 950 2750 60 0001 C CNN "Description" 633 | 1 2350 4400 634 | 0 -1 -1 0 635 | $EndComp 636 | $Comp 637 | L LED LED6:4_3 638 | U 1 1 56F83D30 639 | P 4350 4400 640 | F 0 "LED6:4_3" H 4350 4500 50 0000 C CNN 641 | F 1 "LED" H 4350 4300 50 0000 C CNN 642 | F 2 "prettylib:INSW_LEDS_REG" H 4350 4400 60 0001 C CNN 643 | F 3 "" H 4350 4400 60 0000 C CNN 644 | F 4 "2x3x4mm 1.8mm 3mm flangeless LED" H 2850 4400 60 0001 C CNN "Description" 645 | 1 4350 4400 646 | 0 -1 -1 0 647 | $EndComp 648 | Connection ~ 4350 3200 649 | Connection ~ 4350 2700 650 | Connection ~ 3650 3200 651 | Connection ~ 3650 2700 652 | Connection ~ 4350 3700 653 | Connection ~ 4200 5700 654 | Connection ~ 4200 7300 655 | Connection ~ 4800 5700 656 | Connection ~ 4800 6400 657 | Wire Wire Line 658 | 4800 6100 4800 6400 659 | Connection ~ 4200 6650 660 | Wire Wire Line 661 | 4200 6900 4200 6650 662 | Connection ~ 4800 7300 663 | Wire Wire Line 664 | 4800 7000 4800 7300 665 | Wire Wire Line 666 | 4750 7000 4800 7000 667 | Wire Wire Line 668 | 4200 6000 4200 5700 669 | Wire Wire Line 670 | 4250 6000 4200 6000 671 | Connection ~ 4850 6400 672 | Wire Wire Line 673 | 4850 6200 4850 6650 674 | Wire Wire Line 675 | 4750 6200 4850 6200 676 | Wire Wire Line 677 | 4750 6000 4950 6000 678 | Wire Wire Line 679 | 4950 6000 4950 6800 680 | Wire Wire Line 681 | 2450 6200 2700 6200 682 | Wire Wire Line 683 | 4250 6800 4150 6800 684 | Wire Wire Line 685 | 4150 6800 4150 6650 686 | Connection ~ 4150 6650 687 | Connection ~ 3000 3600 688 | Connection ~ 3650 3600 689 | Connection ~ 3000 3100 690 | Connection ~ 3650 3100 691 | Connection ~ 3000 2600 692 | Connection ~ 2300 3200 693 | Connection ~ 3000 3200 694 | Connection ~ 3000 3700 695 | Connection ~ 3650 3700 696 | Connection ~ 3650 2200 697 | Wire Wire Line 698 | 1650 1800 1650 4600 699 | Connection ~ 1650 2600 700 | Connection ~ 2300 2600 701 | Connection ~ 1650 3600 702 | Connection ~ 2250 3600 703 | Wire Wire Line 704 | 4950 8450 4950 10250 705 | Wire Wire Line 706 | 4950 9500 5050 9500 707 | Connection ~ 4950 9500 708 | Wire Wire Line 709 | 1650 1800 1550 1800 710 | Wire Notes Line 711 | 7600 4850 7600 800 712 | Wire Notes Line 713 | 7600 800 850 800 714 | Wire Notes Line 715 | 850 800 850 4850 716 | Wire Notes Line 717 | 850 4850 7600 4850 718 | Wire Notes Line 719 | 850 5050 850 7650 720 | Wire Notes Line 721 | 850 7650 7600 7650 722 | Wire Notes Line 723 | 7600 7650 7600 5050 724 | Wire Notes Line 725 | 7600 5050 850 5050 726 | Wire Notes Line 727 | 7600 7850 850 7850 728 | Wire Notes Line 729 | 850 7850 850 10600 730 | Wire Notes Line 731 | 7600 7850 7600 10600 732 | Wire Wire Line 733 | 2450 5700 2450 6050 734 | Wire Wire Line 735 | 2450 7000 2450 6550 736 | Wire Wire Line 737 | 3900 6100 3900 6400 738 | Wire Wire Line 739 | 3300 6000 3300 5700 740 | Wire Wire Line 741 | 3350 6000 3300 6000 742 | Wire Wire Line 743 | 3950 6200 3950 6400 744 | Wire Wire Line 745 | 3850 6200 3950 6200 746 | Wire Wire Line 747 | 3850 6000 4050 6000 748 | Wire Wire Line 749 | 4050 6000 4050 6200 750 | Wire Wire Line 751 | 4050 6200 4250 6200 752 | Wire Wire Line 753 | 3350 6200 3200 6200 754 | Wire Wire Line 755 | 3300 6900 3300 6650 756 | Wire Wire Line 757 | 3900 7000 3900 7300 758 | Wire Wire Line 759 | 3850 7000 3900 7000 760 | Wire Wire Line 761 | 3850 6800 4050 6800 762 | Wire Wire Line 763 | 4050 6800 4050 7000 764 | Wire Wire Line 765 | 4050 7000 4250 7000 766 | Wire Wire Line 767 | 3350 6800 3250 6800 768 | Wire Wire Line 769 | 3250 6800 3250 6650 770 | Connection ~ 3900 7300 771 | Connection ~ 3300 6650 772 | Wire Wire Line 773 | 3350 7000 2450 7000 774 | Connection ~ 3950 6400 775 | Connection ~ 3900 6400 776 | Connection ~ 3900 5700 777 | Connection ~ 3300 5700 778 | Connection ~ 2300 3600 779 | Connection ~ 3000 4100 780 | Connection ~ 3650 4100 781 | Connection ~ 4950 8750 782 | Connection ~ 4950 9050 783 | Connection ~ 4950 9350 784 | Connection ~ 4950 9650 785 | Connection ~ 4950 9950 786 | Wire Notes Line 787 | 7600 10600 850 10600 788 | Wire Wire Line 789 | 4350 3100 1650 3100 790 | Wire Wire Line 791 | 4350 3600 1650 3600 792 | Wire Wire Line 793 | 4350 4100 1650 4100 794 | Connection ~ 2300 4100 795 | Connection ~ 3000 2700 796 | Connection ~ 2300 3100 797 | Connection ~ 1650 3100 798 | Connection ~ 4300 3600 799 | Connection ~ 4300 3200 800 | Connection ~ 1650 4100 801 | Connection ~ 3000 4600 802 | Connection ~ 3650 4600 803 | Connection ~ 2250 4600 804 | Connection ~ 2300 4600 805 | Wire Wire Line 806 | 1650 4600 4350 4600 807 | Connection ~ 4300 4600 808 | Connection ~ 2300 4200 809 | Connection ~ 3000 4200 810 | Connection ~ 3650 4200 811 | Connection ~ 4350 4200 812 | Connection ~ 2350 4200 813 | Connection ~ 2350 4600 814 | Connection ~ 4250 4600 815 | Connection ~ 4250 4200 816 | Connection ~ 4300 4200 817 | Wire Wire Line 818 | 4700 1700 4700 4200 819 | Wire Wire Line 820 | 4700 4200 2250 4200 821 | Wire Wire Line 822 | 2300 3700 4700 3700 823 | Connection ~ 4700 3700 824 | Wire Wire Line 825 | 2250 3200 4700 3200 826 | Connection ~ 4700 3200 827 | Wire Wire Line 828 | 2300 2700 4700 2700 829 | Connection ~ 4700 2700 830 | Connection ~ 4700 2200 831 | Wire Wire Line 832 | 3250 6650 4850 6650 833 | Wire Wire Line 834 | 2450 6400 4850 6400 835 | Wire Wire Line 836 | 3300 7300 5200 7300 837 | Wire Wire Line 838 | 5200 7300 5200 5700 839 | Wire Wire Line 840 | 5200 5700 2450 5700 841 | Wire Wire Line 842 | 4950 6800 4750 6800 843 | Wire Wire Line 844 | 4700 1700 1550 1700 845 | Wire Wire Line 846 | 3650 2600 1650 2600 847 | Wire Wire Line 848 | 3000 2200 4700 2200 849 | $Comp 850 | L +5V #PWR02 851 | U 1 1 5717F951 852 | P 2450 6400 853 | F 0 "#PWR02" H 2450 6490 20 0001 C CNN 854 | F 1 "+5V" H 2450 6490 30 0000 C CNN 855 | F 2 "" H 2450 6400 60 0000 C CNN 856 | F 3 "" H 2450 6400 60 0000 C CNN 857 | 1 2450 6400 858 | 1 0 0 -1 859 | $EndComp 860 | $Comp 861 | L +5V #PWR03 862 | U 1 1 5717FC90 863 | P 5050 9500 864 | F 0 "#PWR03" H 5050 9590 20 0001 C CNN 865 | F 1 "+5V" H 5050 9590 30 0000 C CNN 866 | F 2 "" H 5050 9500 60 0000 C CNN 867 | F 3 "" H 5050 9500 60 0000 C CNN 868 | 1 5050 9500 869 | 1 0 0 -1 870 | $EndComp 871 | $EndSCHEMATC 872 | -------------------------------------------------------------------------------- /PCB/lib/SAMPad.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.3 2 | #encoding utf-8 3 | # 4 | # +5V 5 | # 6 | DEF +5V #PWR 0 40 Y Y 1 F P 7 | F0 "#PWR" 0 90 20 H I C CNN 8 | F1 "+5V" 0 90 30 H V C CNN 9 | F2 "" 0 0 60 H V C CNN 10 | F3 "" 0 0 60 H V C CNN 11 | DRAW 12 | X +5V 1 0 0 0 U 20 20 0 0 W N 13 | C 0 50 20 0 1 0 N 14 | P 4 0 1 0 0 0 0 30 0 30 0 30 N 15 | ENDDRAW 16 | ENDDEF 17 | # 18 | # 2PIN 19 | # 20 | DEF 2PIN J 0 40 Y Y 1 F N 21 | F0 "J" -50 200 60 H V C CNN 22 | F1 "2PIN" -50 -200 60 H V C CNN 23 | F2 "" 0 0 60 H V C CNN 24 | F3 "" 0 0 60 H V C CNN 25 | DRAW 26 | T 900 -150 0 60 0 0 0 2PIN Normal 1 C C 27 | P 4 0 1 0 -150 150 0 150 0 -150 -150 -150 N 28 | X 1 1 200 100 200 L 50 50 1 1 I 29 | X 2 2 200 -100 200 L 50 50 1 1 I 30 | ENDDRAW 31 | ENDDEF 32 | # 33 | # 3V3 34 | # 35 | DEF 3V3 #PWR 0 0 Y Y 1 F P 36 | F0 "#PWR" 0 75 30 H I C CNN 37 | F1 "3V3" 0 125 30 H V C CNN 38 | F2 "" 0 0 60 H V C CNN 39 | F3 "" 0 0 60 H V C CNN 40 | DRAW 41 | X 3V3 1 0 0 0 U 40 40 0 0 W N 42 | P 2 0 1 0 0 0 0 100 N 43 | P 2 0 1 0 0 100 -25 50 N 44 | P 2 0 1 0 0 100 25 50 N 45 | ENDDRAW 46 | ENDDEF 47 | # 48 | # 5PIN 49 | # 50 | DEF 5PIN J 0 40 Y Y 1 F N 51 | F0 "J" -50 350 60 H V C CNN 52 | F1 "5PIN" -50 -350 60 H V C CNN 53 | F2 "" 0 0 60 H V C CNN 54 | F3 "" 0 0 60 H V C CNN 55 | DRAW 56 | T 900 -150 0 60 0 0 0 5PIN Normal 1 C C 57 | P 4 0 0 0 -150 300 0 300 0 -300 -150 -300 N 58 | X 1 1 200 200 200 L 50 50 1 1 I 59 | X 2 2 200 100 200 L 50 50 1 1 I 60 | X 3 3 200 0 200 L 50 50 1 1 O 61 | X 4 4 200 -100 200 L 50 50 1 1 I 62 | X 5 5 200 -200 200 L 50 50 1 1 I 63 | ENDDRAW 64 | ENDDEF 65 | # 66 | # AP3417C 67 | # 68 | DEF AP3417C U 0 40 Y Y 1 L N 69 | F0 "U" -150 200 50 H V L CNN 70 | F1 "AP3417C" -150 -200 50 H V L CNN 71 | F2 "" 0 0 50 H I L CNN 72 | F3 "" 0 0 60 H V C CNN 73 | DRAW 74 | X EN 1 -350 0 200 R 40 40 0 0 I 75 | X GND 2 -350 -100 200 R 40 40 0 0 B 76 | X LX 3 350 100 200 L 40 40 0 0 P 77 | X VIN 4 -350 100 200 R 40 40 0 0 I 78 | X FB 5 350 -100 200 L 40 40 0 0 B 79 | S -150 150 150 -150 0 1 0 N 80 | ENDDRAW 81 | ENDDEF 82 | # 83 | # AT90USB1286 84 | # 85 | DEF AT90USB1286 U 0 40 Y Y 1 F N 86 | F0 "U" -50 2200 50 H V L CNN 87 | F1 "AT90USB1286" -400 2050 50 H V L BNN 88 | F2 "" 0 0 118 H V C CNN 89 | F3 "" 0 0 118 H V C CNN 90 | F4 "TQFP64" 0 1925 60 H V C CNN 91 | DRAW 92 | S -950 2300 1100 -2400 0 1 15 N 93 | X PE6(INT.6/AIN.0) 1 -1150 -1600 200 R 40 40 1 1 I 94 | X PE7(INT.7/AIN.1/UVcon) 2 -1150 -1500 200 R 40 40 1 1 B 95 | X UVcc 3 -1150 500 200 R 40 40 1 1 B 96 | X D- 4 -1150 200 200 R 40 40 1 1 B 97 | X D+ 5 -1150 300 200 R 40 40 1 1 B 98 | X UGnd 6 -1150 0 200 R 40 40 1 1 B 99 | X UCap 7 -1150 100 200 R 40 40 1 1 I 100 | X VBus 8 -1150 400 200 R 40 40 1 1 B 101 | X PE3(IUID) 9 -1150 -1900 200 R 40 40 1 1 B 102 | X (PCINT0/SS)PB0 10 1300 0 200 L 40 40 1 1 B 103 | X RESET\ 20 -1150 1500 200 R 40 40 1 1 I 104 | X (XCK1)PD5 30 1300 -1700 200 L 40 40 1 1 B 105 | X (A13/OC.3B)PC5 40 1300 -600 200 L 40 40 1 1 B 106 | X (AD1)PA1 50 1300 1200 200 L 40 40 1 1 B 107 | X PF1(ADC1) 60 -1150 -1000 200 R 40 40 1 1 I 108 | X (PCINT1/SCLK)PB1 11 1300 100 200 L 40 40 1 1 B 109 | X VCC 21 -1150 2100 200 R 40 40 1 1 W 110 | X (T1)PD6 31 1300 -1600 200 L 40 40 1 1 B 111 | X (A14/OC.3A)PC6 41 1300 -500 200 L 40 40 1 1 O 112 | X (AD0)PA0 51 1300 1100 200 L 40 40 1 1 B 113 | X PF0(ADC0) 61 -1150 -1100 200 R 40 40 1 1 I 114 | X (PDI/PCINT3/MOSI)PB2 12 1300 200 200 L 40 40 1 1 B 115 | X GND 22 -1150 1900 200 R 40 40 1 1 W 116 | X (T0)PD7 32 1300 -1500 200 L 40 40 1 1 B 117 | X (A15/IC.3/CLK0)PC7 42 1300 -400 200 L 40 40 1 1 O 118 | X VCC 52 -1150 2000 200 R 40 40 1 1 W 119 | X AREF 62 -1150 950 200 R 40 40 1 1 B 120 | X (PD0/PCINT3/MISO)PB3 13 1300 300 200 L 40 40 1 1 B 121 | X XTAL2 23 -1150 1100 200 R 40 40 1 1 B 122 | X PE0(WR\) 33 -1150 -2200 200 R 40 40 1 1 B 123 | X PE2(ALE/HWB\) 43 -1150 -2000 200 R 40 40 1 1 B 124 | X GND 53 -1150 1800 200 R 40 40 1 1 W 125 | X AGND 63 -1150 700 200 R 40 40 1 1 B 126 | X (PCINT4/OC.2A)PB4 14 1300 400 200 L 40 40 1 1 B 127 | X XTAL1 24 -1150 1300 200 R 40 40 1 1 B 128 | X PE1(RD\) 34 -1150 -2100 200 R 40 40 1 1 B 129 | X (AD7)PA7 44 1300 1800 200 L 40 40 1 1 B 130 | X PF7(ADC7/TDI) 54 -1150 -400 200 R 40 40 1 1 I 131 | X AVCC 64 -1150 850 200 R 40 40 1 1 W 132 | X (PCINT5/OC.1A)PB5 15 1300 500 200 L 40 40 1 1 B 133 | X (OC0B/SCL/INT0)PD0 25 1300 -2200 200 L 40 40 1 1 B 134 | X (A8)PC0 35 1300 -1100 200 L 40 40 1 1 O 135 | X (AD6)PA6 45 1300 1700 200 L 40 40 1 1 B 136 | X PF6(ADC6/TDO) 55 -1150 -500 200 R 40 40 1 1 I 137 | X (PCINT6/OC.1B)PB6 16 1300 600 200 L 40 40 1 1 B 138 | X (OC2B/SDA/INT1)PD1 26 1300 -2100 200 L 40 40 1 1 B 139 | X (A9)PC1 36 1300 -1000 200 L 40 40 1 1 O 140 | X (AD5)PA5 46 1300 1600 200 L 40 40 1 1 B 141 | X PF5(ADC5/TMS) 56 -1150 -600 200 R 40 40 1 1 I 142 | X (PCINT7/OC.0A/OC.1C)PB7 17 1300 700 200 L 40 40 1 1 B 143 | X (RXD1/INT2)PD2 27 1300 -2000 200 L 40 40 1 1 B 144 | X (A10)PC2 37 1300 -900 200 L 40 40 1 1 O 145 | X (AD4)PA4 47 1300 1500 200 L 40 40 1 1 B 146 | X PF4(ADC4/TCK) 57 -1150 -700 200 R 40 40 1 1 I 147 | X PE4(INT.4/TOSC1) 18 -1150 -1800 200 R 40 40 1 1 B 148 | X (TXD1/INT3)PD3 28 1300 -1900 200 L 40 40 1 1 B 149 | X (A11/T.3)PC3 38 1300 -800 200 L 40 40 1 1 O 150 | X (AD3)PA3 48 1300 1400 200 L 40 40 1 1 B 151 | X PF3(ADC3) 58 -1150 -800 200 R 40 40 1 1 I 152 | X PE5(INT.5/TOSC2) 19 -1150 -1700 200 R 40 40 1 1 B 153 | X (ICP1)PD4 29 1300 -1800 200 L 40 40 1 1 B 154 | X (A12/OC.3C)PC4 39 1300 -700 200 L 40 40 1 1 O 155 | X (AD2)PA2 49 1300 1300 200 L 40 40 1 1 B 156 | X PF2(ADC2) 59 -1150 -900 200 R 40 40 1 1 I 157 | ENDDRAW 158 | ENDDEF 159 | # 160 | # Atmega32u4 161 | # 162 | DEF Atmega32u4 U 0 40 Y Y 1 F N 163 | F0 "U" -50 2200 50 H V L CNN 164 | F1 "Atmega32u4" -400 2050 50 H V L BNN 165 | F2 "" 0 0 118 H V C CNN 166 | F3 "" 0 0 118 H V C CNN 167 | DRAW 168 | S -950 2300 1100 -2400 0 1 15 N 169 | X PE6(INT.6/AIN.0) 1 -1150 -1600 200 R 40 40 1 1 I 170 | X UVcc 2 -1150 500 200 R 40 40 1 1 W 171 | X D- 3 -1150 200 200 R 40 40 1 1 B 172 | X D+ 4 -1150 300 200 R 40 40 1 1 B 173 | X UGnd 5 -1150 0 200 R 40 40 1 1 B 174 | X UCap 6 -1150 100 200 R 40 40 1 1 I 175 | X VBus 7 -1150 400 200 R 40 40 1 1 W 176 | X (PCINT0/SS)PB0 8 1300 0 200 L 40 40 1 1 B 177 | X (PCINT1/SCLK)PB1 9 1300 100 200 L 40 40 1 1 B 178 | X (PDI/PCINT2/MOSI)PB2 10 1300 200 200 L 40 40 1 1 B 179 | X (RXD1/INT2)PD2 20 1300 -2000 200 L 40 40 1 1 B 180 | X (PCINT6/OC.1B)PB6 30 1300 600 200 L 40 40 1 1 B 181 | X PF1(ADC1) 40 -1150 -1000 200 R 40 40 1 1 I 182 | X (PD0/PCINT3/MISO)PB3 11 1300 300 200 L 40 40 1 1 B 183 | X (TXD1/INT3)PD3 21 1300 -1900 200 L 40 40 1 1 B 184 | X (OC.3A)PC6 31 1300 -500 200 L 40 40 1 1 O 185 | X PF0(ADC0) 41 -1150 -1100 200 R 40 40 1 1 I 186 | X (PCINT7/OC.0A/OC.1C)PB7 12 1300 700 200 L 40 40 1 1 B 187 | X (XCK1)PD5 22 1300 -1700 200 L 40 40 1 1 B 188 | X (IC.3/CLK0)PC7 32 1300 -400 200 L 40 40 1 1 O 189 | X AREF 42 -1150 950 200 R 40 40 1 1 B 190 | X RESET\ 13 -1150 1500 200 R 40 40 1 1 I 191 | X AGND 23 -1150 700 200 R 40 40 1 1 B 192 | X PE2(ALE/HWB\) 33 -1150 -2000 200 R 40 40 1 1 B 193 | X AGND 43 -1150 650 200 R 40 40 1 1 B 194 | X VCC 14 -1150 2100 200 R 40 40 1 1 W 195 | X AVCC 24 -1150 850 200 R 40 40 1 1 W 196 | X VCC 34 -1150 2000 200 R 40 40 1 1 W 197 | X AVCC 44 -1150 800 200 R 40 40 1 1 W 198 | X GND 15 -1150 1900 200 R 40 40 1 1 W 199 | X (ICP1)PD4 25 1300 -1800 200 L 40 40 1 1 B 200 | X GND 35 -1150 1800 200 R 40 40 1 1 W 201 | X XTAL2 16 -1150 1100 200 R 40 40 1 1 B 202 | X (T1)PD6 26 1300 -1600 200 L 40 40 1 1 B 203 | X PF7(ADC7/TDI) 36 -1150 -400 200 R 40 40 1 1 I 204 | X XTAL1 17 -1150 1300 200 R 40 40 1 1 B 205 | X (T0)PD7 27 1300 -1500 200 L 40 40 1 1 B 206 | X PF6(ADC6/TDO) 37 -1150 -500 200 R 40 40 1 1 I 207 | X (OC0B/SCL/INT0)PD0 18 1300 -2200 200 L 40 40 1 1 B 208 | X (PCINT4/OC.2A)PB4 28 1300 400 200 L 40 40 1 1 B 209 | X PF5(ADC5/TMS) 38 -1150 -600 200 R 40 40 1 1 I 210 | X (OC2B/SDA/INT1)PD1 19 1300 -2100 200 L 40 40 1 1 B 211 | X (PCINT5/OC.1A)PB5 29 1300 500 200 L 40 40 1 1 B 212 | X PF4(ADC4/TCK) 39 -1150 -700 200 R 40 40 1 1 I 213 | ENDDRAW 214 | ENDDEF 215 | # 216 | # C 217 | # 218 | DEF C C 0 10 N Y 1 F N 219 | F0 "C" 0 100 40 H V L CNN 220 | F1 "C" 6 -85 40 H V L CNN 221 | F2 "" 38 -150 30 H V C CNN 222 | F3 "" 0 0 60 H V C CNN 223 | $FPLIST 224 | SM* 225 | C? 226 | C1-1 227 | $ENDFPLIST 228 | DRAW 229 | P 2 0 1 20 -80 -30 80 -30 N 230 | P 2 0 1 20 -80 30 80 30 N 231 | X ~ 1 0 200 170 D 40 40 1 1 P 232 | X ~ 2 0 -200 170 U 40 40 1 1 P 233 | ENDDRAW 234 | ENDDEF 235 | # 236 | # CONN_6 237 | # 238 | DEF CONN_6 P 0 40 Y Y 1 F N 239 | F0 "P" -50 350 59 H V C CNN 240 | F1 "CONN_6" 0 0 59 V V C CNN 241 | F2 "" 0 -200 60 H V C CNN 242 | F3 "" 0 -200 60 H V C CNN 243 | F4 "Single-row" -80 -480 5 H I L BNN 244 | DRAW 245 | S -100 -300 100 300 0 1 0 N 246 | X ~ 1 -300 250 200 R 44 44 1 1 P I 247 | X ~ 2 -300 150 200 R 44 44 1 1 P I 248 | X ~ 3 -300 50 200 R 44 44 1 1 P I 249 | X ~ 4 -300 -50 200 R 44 44 1 1 P I 250 | X ~ 5 -300 -150 200 R 44 44 1 1 P I 251 | X ~ 6 -300 -250 200 R 44 44 1 1 P I 252 | ENDDRAW 253 | ENDDEF 254 | # 255 | # CRYSTAL 256 | # 257 | DEF CRYSTAL X 0 40 N N 1 F N 258 | F0 "X" 0 150 60 H V C CNN 259 | F1 "CRYSTAL" 300 -50 60 H V C CNN 260 | F2 "" 0 0 60 H V C CNN 261 | F3 "" 0 0 60 H V C CNN 262 | DRAW 263 | P 2 0 1 16 -100 100 -100 -100 N 264 | P 2 0 1 16 100 100 100 -100 N 265 | P 5 0 1 12 -50 50 50 50 50 -50 -50 -50 -50 50 f 266 | X 1 1 -300 0 200 R 40 40 1 1 P 267 | X 2 2 -50 -150 118 U 50 50 1 1 I 268 | X 3 3 300 0 200 L 40 40 1 1 P 269 | X 4 4 50 -150 118 U 50 50 1 1 I 270 | ENDDRAW 271 | ENDDEF 272 | # 273 | # CT 274 | # 275 | DEF CT C 0 10 N Y 1 F N 276 | F0 "C" 0 100 40 H V L CNN 277 | F1 "CT" 6 -85 40 H V L CNN 278 | F2 "" 38 -150 30 H V C CNN 279 | F3 "" 0 0 60 H V C CNN 280 | $FPLIST 281 | SM* 282 | C? 283 | C1-1 284 | $ENDFPLIST 285 | DRAW 286 | P 2 0 1 20 -80 -30 80 -30 N 287 | P 2 0 1 20 -80 30 80 30 N 288 | P 2 0 1 0 -75 125 -25 125 N 289 | P 2 0 1 0 -50 100 -50 150 N 290 | X ~ 1 0 200 170 D 40 40 1 1 P 291 | X ~ 2 0 -200 170 U 40 40 1 1 P 292 | ENDDRAW 293 | ENDDEF 294 | # 295 | # DIODE 296 | # 297 | DEF DIODE D 0 40 N N 1 F N 298 | F0 "D" 0 100 40 H V C CNN 299 | F1 "DIODE" 0 -100 40 H V C CNN 300 | F2 "" 0 0 60 H V C CNN 301 | F3 "" 0 0 60 H V C CNN 302 | $FPLIST 303 | D? 304 | S* 305 | $ENDFPLIST 306 | DRAW 307 | P 2 0 1 6 50 50 50 -50 N 308 | P 3 0 1 0 -50 50 50 0 -50 -50 F 309 | X A 1 -200 0 150 R 40 40 1 1 P 310 | X K 2 200 0 150 L 40 40 1 1 P 311 | ENDDRAW 312 | ENDDEF 313 | # 314 | # DIPS_04 315 | # 316 | DEF DIPS_04 SW 0 0 Y N 1 F N 317 | F0 "SW" -250 0 60 V V C CNN 318 | F1 "DIPS_04" 250 0 60 V V C CNN 319 | F2 "" 0 0 60 H V C CNN 320 | F3 "" 0 0 60 H V C CNN 321 | DRAW 322 | S -200 100 200 -100 0 1 0 N 323 | S -125 0 -175 -50 0 1 0 F 324 | S -125 0 -175 -50 0 1 0 F 325 | S -125 50 -175 -50 0 1 0 N 326 | S -125 50 -175 -50 0 1 0 N 327 | S -25 0 -75 -50 0 1 0 F 328 | S -25 0 -75 -50 0 1 0 F 329 | S -25 50 -75 -50 0 1 0 N 330 | S -25 50 -75 -50 0 1 0 N 331 | S 75 0 25 -50 0 1 0 F 332 | S 75 0 25 -50 0 1 0 F 333 | S 75 50 25 -50 0 1 0 N 334 | S 75 50 25 -50 0 1 0 N 335 | S 175 0 125 -50 0 1 0 F 336 | S 175 0 125 -50 0 1 0 F 337 | S 175 50 125 -50 0 1 0 N 338 | S 175 50 125 -50 0 1 0 N 339 | X ~ 1 -150 -200 100 U 50 50 1 1 P 340 | X ~ 1 -150 -200 100 U 50 50 1 1 P 341 | X ~ 2 -50 -200 100 U 50 50 1 1 P 342 | X ~ 3 50 -200 100 U 50 50 1 1 P 343 | X ~ 4 150 -200 100 U 50 50 1 1 P 344 | X ~ 5 150 200 100 D 50 50 1 1 P 345 | X ~ 6 50 200 100 D 50 50 1 1 P 346 | X ~ 7 -50 200 100 D 50 50 1 1 P 347 | X ~ 8 -150 200 100 D 50 50 1 1 P 348 | ENDDRAW 349 | ENDDEF 350 | # 351 | # ENCODER 352 | # 353 | DEF ENCODER S 0 40 Y Y 1 F N 354 | F0 "S" 300 350 50 H V C CNN 355 | F1 "ENCODER" 400 -350 50 H V C CNN 356 | F2 "" 250 0 60 H V C CNN 357 | F3 "" 250 0 60 H V C CNN 358 | DRAW 359 | S 0 100 200 -100 0 1 0 N 360 | P 2 0 1 0 50 0 0 0 N 361 | P 2 0 1 0 100 -50 125 -25 N 362 | P 2 0 1 0 100 50 125 75 N 363 | P 4 0 1 0 100 50 50 50 50 -50 100 -50 N 364 | X A 1 150 300 200 D 50 50 1 1 I 365 | X C 2 -200 0 200 R 50 50 1 1 I 366 | X B 3 150 -300 200 U 50 50 1 1 I 367 | ENDDRAW 368 | ENDDEF 369 | # 370 | # FUSE 371 | # 372 | DEF FUSE F 0 10 Y Y 1 F N 373 | F0 "F" 100 50 40 H V C CNN 374 | F1 "FUSE" -100 -50 40 H V C CNN 375 | F2 "" 0 0 60 H V C CNN 376 | F3 "" 0 0 60 H V C CNN 377 | DRAW 378 | A -75 0 75 1 1799 0 1 0 N 0 0 -150 0 379 | A 75 0 75 -1799 -1 0 1 0 N 0 0 150 0 380 | X ~ 1 -250 0 100 R 40 40 1 1 I 381 | X ~ 2 250 0 100 L 40 40 1 1 I 382 | ENDDRAW 383 | ENDDEF 384 | # 385 | # HM-10 386 | # 387 | DEF HM-10 U 0 40 Y Y 1 F N 388 | F0 "U" -150 300 60 H V C CNN 389 | F1 "HM-10" 200 300 60 H V C CNN 390 | F2 "" 0 0 60 H V C CNN 391 | F3 "" 0 0 60 H V C CNN 392 | DRAW 393 | X TX 1 -400 200 200 R 40 40 0 0 O 394 | X RX 2 -400 100 200 R 40 40 0 0 I 395 | X GND 21 550 -150 200 L 40 40 0 0 P 396 | X 3.3V 12 -400 0 200 R 40 40 0 0 I 397 | X GND 22 550 -50 200 L 40 40 0 0 P 398 | X GND 13 -400 -100 200 R 40 40 0 0 P 399 | X KEY 23 550 50 200 L 40 40 0 0 I 400 | X GND 14 -400 -200 200 R 40 40 0 0 P 401 | X LED 24 550 150 200 L 40 40 0 0 O 402 | S -200 250 350 -250 0 1 0 N 403 | ENDDRAW 404 | ENDDEF 405 | # 406 | # INDUCTOR 407 | # 408 | DEF INDUCTOR L 0 40 N N 1 F N 409 | F0 "L" -50 0 40 V V C CNN 410 | F1 "INDUCTOR" 100 0 40 V V C CNN 411 | F2 "" 0 0 60 H V C CNN 412 | F3 "" 0 0 60 H V C CNN 413 | DRAW 414 | A 0 -150 50 -889 889 0 1 0 N 1 -199 1 -100 415 | A 0 -49 51 -889 889 0 1 0 N 1 -99 1 2 416 | A 0 51 51 -889 889 0 1 0 N 1 1 1 102 417 | A 0 148 48 -889 889 0 1 0 N 1 101 1 196 418 | X 1 1 0 300 100 D 70 70 1 1 P 419 | X 2 2 0 -300 100 U 70 70 1 1 P 420 | ENDDRAW 421 | ENDDEF 422 | # 423 | # IP4234CZ6 424 | # 425 | DEF IP4234CZ6 U 0 40 N Y 1 L N 426 | F0 "U" -300 300 50 H V L CNN 427 | F1 "IP4234CZ6" -300 -300 50 H V L CNN 428 | F2 "SOT-457" 0 0 50 H I L CNN 429 | F3 "" 0 0 60 H V C CNN 430 | DRAW 431 | P 2 0 0 10 -300 -200 400 -200 N 432 | P 2 0 0 10 -300 200 -300 -200 N 433 | P 2 0 0 10 400 -200 400 200 N 434 | P 2 0 0 10 400 200 -300 200 N 435 | X I/O2B 1 500 100 100 L 40 40 0 0 B 436 | X GND 2 -400 0 100 R 40 40 0 0 B 437 | X I/O2A 3 -400 100 100 R 40 40 0 0 B 438 | X I/O1A 4 -400 -100 100 R 40 40 0 0 B 439 | X VB 5 500 0 100 L 40 40 0 0 O 440 | X I/O1B 6 500 -100 100 L 40 40 0 0 B 441 | ENDDRAW 442 | ENDDEF 443 | # 444 | # ISP6 445 | # 446 | DEF ISP6 J 0 40 Y Y 1 F N 447 | F0 "J" -100 350 60 H V C CNN 448 | F1 "ISP6" -100 -350 60 H V C CNN 449 | F2 "" 0 0 60 H V C CNN 450 | F3 "" 0 0 60 H V C CNN 451 | DRAW 452 | T 900 -250 0 60 0 0 0 ISP6 Normal 1 C C 453 | P 4 0 0 0 -250 -300 0 -300 0 300 -250 300 N 454 | X MISO 1 200 250 200 L 50 50 1 1 O 455 | X VCC 2 200 150 200 L 50 50 1 1 W 456 | X SCK 3 200 50 200 L 50 50 1 1 O 457 | X MOSI 4 200 -50 200 L 50 50 1 1 I 458 | X TRST 5 200 -150 200 L 50 50 1 1 I 459 | X GND 6 200 -250 200 L 50 50 1 1 O 460 | ENDDRAW 461 | ENDDEF 462 | # 463 | # JUMPER 464 | # 465 | DEF JUMPER JP 0 30 Y N 1 F N 466 | F0 "JP" 0 150 60 H V C CNN 467 | F1 "JUMPER" 0 -80 40 H V C CNN 468 | F2 "" 0 0 60 H V C CNN 469 | F3 "" 0 0 60 H V C CNN 470 | DRAW 471 | A 0 -26 125 1426 373 0 1 0 N -98 50 99 50 472 | C -100 0 35 0 1 0 N 473 | C 100 0 35 0 1 0 N 474 | X 1 1 -300 0 165 R 60 60 0 1 P 475 | X 2 2 300 0 165 L 60 60 0 1 P 476 | ENDDRAW 477 | ENDDEF 478 | # 479 | # JUMPER3 480 | # 481 | DEF JUMPER3 JP 0 30 Y N 1 F N 482 | F0 "JP" 50 -100 40 H V L CNN 483 | F1 "JUMPER3" 0 100 40 H V C CNN 484 | F2 "" 0 0 60 H V C CNN 485 | F3 "" 0 0 60 H V C CNN 486 | DRAW 487 | A -60 10 64 386 1413 0 1 0 N -10 50 -110 50 488 | A 60 10 64 386 1413 0 1 0 N 110 50 10 50 489 | C -120 0 35 0 1 0 N 490 | C 0 0 36 0 1 0 N 491 | C 120 0 35 0 1 0 N 492 | X 1 1 -250 0 95 R 40 40 0 1 P 493 | X 2 2 0 -100 60 U 40 40 0 1 P 494 | X 3 3 250 0 95 L 40 40 0 1 P 495 | ENDDRAW 496 | ENDDEF 497 | # 498 | # LED 499 | # 500 | DEF LED D 0 40 Y N 1 F N 501 | F0 "D" 0 100 50 H V C CNN 502 | F1 "LED" 0 -100 50 H V C CNN 503 | F2 "" 0 0 60 H V C CNN 504 | F3 "" 0 0 60 H V C CNN 505 | $FPLIST 506 | LED-3MM 507 | LED-5MM 508 | LED-10MM 509 | LED-0603 510 | LED-0805 511 | LED-1206 512 | LEDV 513 | $ENDFPLIST 514 | DRAW 515 | P 2 0 1 0 50 50 50 -50 N 516 | P 3 0 1 0 -50 50 50 0 -50 -50 F 517 | P 3 0 1 0 65 -40 110 -80 105 -55 N 518 | P 3 0 1 0 80 -25 125 -65 120 -40 N 519 | X A 1 -200 0 150 R 40 40 1 1 P 520 | X K 2 200 0 150 L 40 40 1 1 P 521 | ENDDRAW 522 | ENDDEF 523 | # 524 | # MCP1623 525 | # 526 | DEF MCP1623 U 0 40 Y Y 1 L N 527 | F0 "U" -200 200 50 H V L CNN 528 | F1 "MCP1623" -200 -200 50 H V L CNN 529 | F2 "" -400 -150 50 H I L CNN 530 | F3 "" 0 0 60 H V C CNN 531 | DRAW 532 | X SW 1 -400 100 200 R 40 40 0 0 I 533 | X EN 3 -400 -100 200 R 40 40 0 0 I 534 | X VFB 4 400 -100 200 L 40 40 0 0 I 535 | X VOUT 5 400 0 200 L 40 40 0 0 I 536 | X VIN 6 400 100 200 L 40 40 0 0 I 537 | X GND 2 -400 0 200 R 40 40 1 0 P 538 | S -200 150 200 -150 0 1 16 N 539 | ENDDRAW 540 | ENDDEF 541 | # 542 | # MCP23018_SSOP 543 | # 544 | DEF MCP23018_SSOP U 0 30 Y Y 1 F N 545 | F0 "U" -50 -25 60 V V C BNN 546 | F1 "MCP23018_SSOP" 50 -25 60 V V C TNN 547 | F2 "" 0 0 60 H V C CNN 548 | F3 "" 0 0 60 H V C CNN 549 | DRAW 550 | S -500 900 500 -900 0 1 0 f 551 | X GND 1 0 -900 0 U 60 60 1 1 W 552 | X GPB0 2 800 -100 300 L 60 60 1 1 O 553 | X GPB1 3 800 -200 300 L 60 60 1 1 O 554 | X GPB2 4 800 -300 300 L 60 60 1 1 O 555 | X GPB3 5 800 -400 300 L 60 60 1 1 O 556 | X GPB4 6 800 -500 300 L 60 60 1 1 O 557 | X GPB5 7 800 -600 300 L 60 60 1 1 O 558 | X GPB6 8 800 -700 300 L 60 60 1 1 O 559 | X GPB7 9 800 -800 300 L 60 60 1 1 I 560 | X VCC 10 0 900 0 D 60 60 1 1 W 561 | X GPA3 20 800 500 300 L 60 60 1 1 I 562 | X SCL 11 -800 550 300 R 60 60 1 1 I 563 | X GPA4 21 800 400 300 L 60 60 1 1 I 564 | X SDA 12 -800 450 300 R 60 60 1 1 I 565 | X GPA5 22 800 300 300 L 60 60 1 1 I 566 | X ADDR 13 -800 250 300 R 60 60 1 1 O 567 | X GPA6 23 800 200 300 L 60 60 1 1 I 568 | X RESET 14 -800 800 300 R 60 60 1 1 I I 569 | X GPA7 24 800 100 300 L 60 60 1 1 I 570 | X INTB 15 -800 -50 300 R 60 60 1 1 I 571 | X INTA 16 -800 50 300 R 60 60 1 1 I 572 | X GPA0 17 800 800 300 L 60 60 1 1 I 573 | X GPA1 18 800 700 300 L 60 60 1 1 I 574 | X GPA2 19 800 600 300 L 60 60 1 1 I 575 | ENDDRAW 576 | ENDDEF 577 | # 578 | # MCP73833 579 | # 580 | DEF MCP73833 U 0 40 Y Y 1 L N 581 | F0 "U" -350 300 50 H V L CNN 582 | F1 "MCP73833" -50 300 50 H V L CNN 583 | F2 "" -400 -150 50 H I L CNN 584 | F3 "" 0 0 60 H V C CNN 585 | DRAW 586 | S -350 250 350 -250 0 0 16 N 587 | X VDD 1 -550 200 200 R 40 40 0 0 I 588 | X VDD 2 -550 100 200 R 40 40 0 0 I 589 | X STAT1 3 -550 0 200 R 40 40 0 0 I 590 | X STAT2 4 -550 -100 200 R 40 40 0 0 I 591 | X PROG 6 550 -200 200 L 40 40 0 0 I 592 | X PG 7 550 -100 200 L 40 40 0 0 I 593 | X THERM 8 550 0 200 L 40 40 0 0 I 594 | X VBAT 9 550 100 200 L 40 40 0 0 I 595 | X VBAT 10 550 200 200 L 40 40 0 0 I 596 | X VSS 5 -550 -200 200 R 40 40 1 0 P 597 | ENDDRAW 598 | ENDDEF 599 | # 600 | # MISC 601 | # 602 | DEF MISC M 0 40 Y Y 1 F N 603 | F0 "M" 0 150 60 H V C CNN 604 | F1 "MISC" 0 -150 60 H V C CNN 605 | F2 "" 0 0 60 H V C CNN 606 | F3 "" 0 0 60 H V C CNN 607 | DRAW 608 | C 0 0 100 0 1 0 N 609 | ENDDRAW 610 | ENDDEF 611 | # 612 | # MOSFET_N 613 | # 614 | DEF MOSFET_N Q 0 0 N Y 1 F N 615 | F0 "Q" 10 170 60 H V R CNN 616 | F1 "MOSFET_N" 10 -150 60 H V R CNN 617 | F2 "" 0 0 60 H V C CNN 618 | F3 "" 0 0 60 H V C CNN 619 | DRAW 620 | P 2 0 1 8 -50 -100 -50 100 N 621 | P 2 0 1 10 0 -150 0 150 N 622 | P 2 0 1 0 100 -100 0 -100 N 623 | P 2 0 1 0 100 100 0 100 N 624 | P 2 0 1 0 125 25 175 25 N 625 | P 3 0 1 0 100 -125 150 -125 150 -25 N 626 | P 3 0 1 8 100 -100 100 0 50 0 N 627 | P 3 0 1 0 100 125 150 125 150 25 N 628 | P 4 0 1 0 125 -25 175 -25 150 25 125 -25 N 629 | P 5 0 1 8 50 30 50 -30 0 0 50 30 50 30 N 630 | X D D 100 200 100 D 40 40 1 1 P 631 | X G G -200 0 150 R 40 40 1 1 I 632 | X S S 100 -200 100 U 40 40 1 1 P 633 | ENDDRAW 634 | ENDDEF 635 | # 636 | # MOSFET_P 637 | # 638 | DEF MOSFET_P Q 0 40 Y N 1 F N 639 | F0 "Q" 0 190 60 H V R CNN 640 | F1 "MOSFET_P" 0 -180 60 H V R CNN 641 | F2 "" 0 0 60 H V C CNN 642 | F3 "" 0 0 60 H V C CNN 643 | DRAW 644 | P 2 0 1 8 -50 -100 -50 100 N 645 | P 2 0 1 10 0 -150 0 150 N 646 | P 2 0 1 8 30 0 0 0 N 647 | P 2 0 1 0 100 -100 0 -100 N 648 | P 2 0 1 0 100 100 0 100 N 649 | P 2 0 1 0 125 -25 175 -25 N 650 | P 3 0 1 0 80 0 100 0 100 -100 N 651 | P 3 0 1 0 150 -25 150 -125 100 -125 N 652 | P 3 0 1 0 150 25 150 125 100 125 N 653 | P 4 0 1 0 125 25 175 25 150 -25 125 25 N 654 | P 5 0 1 8 30 40 30 -30 80 0 30 40 30 40 N 655 | X D D 100 200 100 D 40 40 1 1 P 656 | X G G -200 0 150 R 40 40 1 1 I 657 | X S S 100 -200 100 U 40 40 1 1 P 658 | ENDDRAW 659 | ENDDEF 660 | # 661 | # MOUNT_HOLE 662 | # 663 | DEF MOUNT_HOLE MH 0 40 Y Y 1 F N 664 | F0 "MH" 0 150 60 H V C CNN 665 | F1 "MOUNT_HOLE" 0 -150 60 H V C CNN 666 | F2 "" 0 0 60 H V C CNN 667 | F3 "" 0 0 60 H V C CNN 668 | DRAW 669 | C 0 0 100 0 1 0 N 670 | X ~ 1 0 0 0 R 39 50 1 1 B 671 | ENDDRAW 672 | ENDDEF 673 | # 674 | # MXALPS 675 | # 676 | DEF MXALPS S 0 40 Y Y 1 F N 677 | F0 "S" 0 100 60 H V C CNN 678 | F1 "MXALPS" 0 -50 60 H V C CNN 679 | F2 "" 0 0 60 H V C CNN 680 | F3 "" 0 0 60 H V C CNN 681 | DRAW 682 | P 2 0 1 0 100 0 50 0 N 683 | P 2 0 1 0 150 0 100 0 N 684 | P 3 0 1 0 50 50 -50 0 -150 0 N 685 | X 1 1 -200 0 50 R 50 50 1 1 B 686 | X 2 2 200 0 50 L 50 50 1 1 B 687 | ENDDRAW 688 | ENDDEF 689 | # 690 | # NPN 691 | # 692 | DEF NPN Q 0 0 Y Y 1 F N 693 | F0 "Q" 0 -150 50 H V R CNN 694 | F1 "NPN" 0 150 50 H V R CNN 695 | F2 "" 0 0 60 H V C CNN 696 | F3 "" 0 0 60 H V C CNN 697 | DRAW 698 | C 50 0 111 0 1 10 N 699 | P 2 0 1 0 0 0 100 100 N 700 | P 3 0 1 10 0 75 0 -75 0 -75 N 701 | P 3 0 1 0 50 -50 0 0 0 0 N 702 | P 3 0 1 0 90 -90 100 -100 100 -100 N 703 | P 5 0 1 0 90 -90 70 -30 30 -70 90 -90 90 -90 F 704 | X E 1 100 -200 100 U 40 40 1 1 P 705 | X B 2 -200 0 200 R 40 40 1 1 I 706 | X C 3 100 200 100 D 40 40 1 1 P 707 | ENDDRAW 708 | ENDDEF 709 | # 710 | # PAM2804 711 | # 712 | DEF PAM2804 U 0 40 Y Y 1 F N 713 | F0 "U" -150 200 60 H V C CNN 714 | F1 "PAM2804" 0 -200 60 H V C CNN 715 | F2 "" 0 50 60 H V C CNN 716 | F3 "" 0 50 60 H V C CNN 717 | DRAW 718 | S -200 150 200 -150 0 1 0 N 719 | X EN 1 -400 -100 200 R 50 50 1 1 B 720 | X GND 2 -400 0 200 R 50 50 1 1 P 721 | X SW 3 400 100 200 L 50 50 1 1 O 722 | X VIN 4 -400 100 200 R 50 50 1 1 I 723 | X FB 5 400 -100 200 L 50 50 1 1 B 724 | ENDDRAW 725 | ENDDEF 726 | # 727 | # PWR_FLAG 728 | # 729 | DEF PWR_FLAG #FLG 0 0 N N 1 F P 730 | F0 "#FLG" 0 95 30 H I C CNN 731 | F1 "PWR_FLAG" 0 180 30 H V C CNN 732 | F2 "" 0 0 60 H V C CNN 733 | F3 "" 0 0 60 H V C CNN 734 | DRAW 735 | X pwr 1 0 0 0 U 20 20 0 0 w 736 | P 6 0 1 0 0 0 0 50 -75 100 0 150 75 100 0 50 N 737 | ENDDRAW 738 | ENDDEF 739 | # 740 | # R 741 | # 742 | DEF R R 0 0 N Y 1 F N 743 | F0 "R" 80 0 40 V V C CNN 744 | F1 "R" 7 1 40 V V C CNN 745 | F2 "" -70 0 30 V V C CNN 746 | F3 "" 0 0 30 H V C CNN 747 | $FPLIST 748 | R? 749 | SM0603 750 | SM0805 751 | R?-* 752 | SM1206 753 | $ENDFPLIST 754 | DRAW 755 | S -40 150 40 -150 0 1 12 N 756 | X ~ 1 0 250 100 D 60 60 1 1 P 757 | X ~ 2 0 -250 100 U 60 60 1 1 P 758 | ENDDRAW 759 | ENDDEF 760 | # 761 | # SCHOTTKY 762 | # 763 | DEF SCHOTTKY D 0 40 N N 1 F N 764 | F0 "D" 0 100 40 H V C CNN 765 | F1 "SCHOTTKY" 0 -100 40 H V C CNN 766 | F2 "" 0 0 60 H V C CNN 767 | F3 "" 0 0 60 H V C CNN 768 | $FPLIST 769 | D? 770 | S* 771 | $ENDFPLIST 772 | DRAW 773 | P 2 0 1 6 50 50 50 -50 N 774 | P 3 0 1 0 -50 50 50 0 -50 -50 F 775 | P 3 0 1 0 50 -50 25 -50 25 -25 N 776 | P 3 0 1 0 50 50 75 50 75 25 N 777 | X A 1 -200 0 150 R 40 40 1 1 P 778 | X K 2 200 0 150 L 40 40 1 1 P 779 | ENDDRAW 780 | ENDDEF 781 | # 782 | # SPEAKER 783 | # 784 | DEF SPEAKER SP 0 0 N Y 1 F N 785 | F0 "SP" -100 250 70 H V C CNN 786 | F1 "SPEAKER" -100 -250 70 H V C CNN 787 | F2 "" 0 0 60 H V C CNN 788 | F3 "" 0 0 60 H V C CNN 789 | DRAW 790 | P 4 0 0 0 100 150 250 300 250 -300 100 -150 N 791 | P 5 0 0 0 -100 150 100 150 100 -150 -100 -150 -100 150 F 792 | X 1 1 -300 100 200 R 40 40 1 1 I 793 | X 2 2 -300 -100 200 R 40 40 1 1 I 794 | ENDDRAW 795 | ENDDEF 796 | # 797 | # SW 798 | # 799 | DEF SW S 0 40 Y Y 1 F N 800 | F0 "S" 0 100 60 H V C CNN 801 | F1 "SW" 0 -50 60 H V C CNN 802 | F2 "" 0 0 60 H V C CNN 803 | F3 "" 0 0 60 H V C CNN 804 | DRAW 805 | P 2 0 1 0 100 0 50 0 N 806 | P 2 0 1 0 150 0 100 0 N 807 | P 3 0 1 0 50 50 -50 0 -150 0 N 808 | X 1 1 -200 0 50 R 50 50 1 1 B 809 | X 2 2 200 0 50 L 50 50 1 1 B 810 | ENDDRAW 811 | ENDDEF 812 | # 813 | # TAC_SWITCH 814 | # 815 | DEF TAC_SWITCH S 0 40 Y Y 1 L N 816 | F0 "S" -25 225 50 H V L BNN 817 | F1 "TAC_SWITCH" -225 -200 50 H V L BNN 818 | F2 "EVQP2" 0 150 50 H I C CNN 819 | F3 "" 0 0 60 H V C CNN 820 | DRAW 821 | P 2 1 0 0 -100 -100 -100 0 N 822 | P 2 1 0 0 -100 0 75 50 N 823 | P 2 1 0 0 -75 175 -75 125 N 824 | P 2 1 0 0 0 50 0 25 N 825 | P 2 1 0 0 0 100 0 75 N 826 | P 2 1 0 0 0 175 -75 175 N 827 | P 2 1 0 0 0 175 0 125 N 828 | P 2 1 0 0 75 0 100 0 N 829 | P 2 1 0 0 75 175 0 175 N 830 | P 2 1 0 0 75 175 75 125 N 831 | P 2 1 0 0 100 -100 100 0 N 832 | C -100 0 5 1 1 0 F 833 | C 100 0 5 1 1 0 F 834 | X 1 1 -200 -100 100 R 40 40 1 1 P 835 | X 2 2 -200 0 100 R 40 40 1 1 P 836 | X 3 3 200 0 100 L 40 40 1 1 P 837 | X 4 4 200 -100 100 L 40 40 1 1 P 838 | ENDDRAW 839 | ENDDEF 840 | # 841 | # USB3 842 | # 843 | DEF USB3 P 0 40 Y Y 1 F N 844 | F0 "P" -50 -550 59 H V C CNN 845 | F1 "USB3" 0 0 59 V V C CNN 846 | F2 "" 0 0 60 H V C CNN 847 | F3 "" 0 0 60 H V C CNN 848 | F4 "Single-row" -80 -480 5 H I L BNN 849 | DRAW 850 | S -100 -500 100 500 0 1 0 N 851 | X ~ 1 -300 400 200 R 44 44 1 1 P 852 | X ~ 2 -300 300 200 R 44 44 1 1 P 853 | X ~ 3 -300 200 200 R 44 44 1 1 P 854 | X ~ 4 -300 100 200 R 44 44 1 1 P 855 | X ~ 5 -300 0 200 R 44 44 1 1 P 856 | X ~ 6 -300 -100 200 R 44 44 1 1 P 857 | X ~ 7 -300 -200 200 R 44 44 1 1 P 858 | X ~ 8 -300 -300 200 R 44 44 1 1 P 859 | X ~ 9 -300 -400 200 R 44 44 1 1 P 860 | X ~ 10 0 -700 200 U 44 44 1 1 P I 861 | ENDDRAW 862 | ENDDEF 863 | # 864 | # USB3_MICRO 865 | # 866 | DEF USB3_MICRO P 0 40 Y Y 1 F N 867 | F0 "P" -50 -550 59 H V C CNN 868 | F1 "USB3_MICRO" 0 0 59 V V C CNN 869 | F2 "" 0 0 60 H V C CNN 870 | F3 "" 0 0 60 H V C CNN 871 | F4 "Single-row" -80 -480 5 H I L BNN 872 | DRAW 873 | S -100 -500 100 500 0 1 0 N 874 | X ~ 1 -300 450 200 R 44 44 1 1 P 875 | X ~ 2 -300 350 200 R 44 44 1 1 P 876 | X ~ 3 -300 250 200 R 44 44 1 1 P 877 | X ~ 4 -300 150 200 R 44 44 1 1 P 878 | X ~ 5 -300 50 200 R 44 44 1 1 P 879 | X ~ 6 -300 -50 200 R 44 44 1 1 P 880 | X ~ 7 -300 -150 200 R 44 44 1 1 P 881 | X ~ 8 -300 -250 200 R 44 44 1 1 P 882 | X ~ 9 -300 -350 200 R 44 44 1 1 P 883 | X ~ 10 -300 -450 200 R 44 44 1 1 P 884 | X ~ 11 0 -700 200 U 44 44 1 1 P I 885 | ENDDRAW 886 | ENDDEF 887 | # 888 | # USB_CONN 889 | # 890 | DEF USB_CONN J 0 40 Y Y 1 F N 891 | F0 "J" -50 0 50 V V C CNN 892 | F1 "USB_CONN" 50 0 50 V V C CNN 893 | F2 "" 0 0 60 H V C CNN 894 | F3 "" 0 0 60 H V C CNN 895 | DRAW 896 | S -100 250 100 -250 0 1 0 f 897 | X ~ 1 -400 200 300 R 60 60 1 1 P I 898 | X ~ 2 -400 100 300 R 60 60 1 1 P I 899 | X ~ 3 -400 0 300 R 60 60 1 1 P I 900 | X ~ 4 -400 -100 300 R 60 60 1 1 P I 901 | X ~ 5 -400 -200 300 R 60 60 1 1 B I 902 | X ~ 6 0 -550 300 U 50 50 1 1 B I 903 | ENDDRAW 904 | ENDDEF 905 | # 906 | # VSS 907 | # 908 | DEF VSS #PWR 0 0 Y Y 1 F P 909 | F0 "#PWR" 0 0 30 H I C CNN 910 | F1 "VSS" 0 -70 30 H V C CNN 911 | F2 "" 0 0 60 H V C CNN 912 | F3 "" 0 0 60 H V C CNN 913 | DRAW 914 | P 4 0 1 0 -50 0 0 -50 50 0 -50 0 N 915 | X VSS 1 0 0 0 U 30 30 1 1 W N 916 | ENDDRAW 917 | ENDDEF 918 | # 919 | # WS2812B 920 | # 921 | DEF WS2812B D 0 40 Y Y 1 L N 922 | F0 "D" -150 200 50 H V L CNN 923 | F1 "WS2812B" -200 -200 50 H V L CNN 924 | F2 "WS2812B" 0 0 50 H I L CNN 925 | F3 "" 0 0 60 H V C CNN 926 | DRAW 927 | X VDD 1 -250 100 100 R 31 31 0 0 I 928 | X DOUT 2 -250 -100 100 R 31 31 0 0 O 929 | X VSS 3 250 -100 100 L 31 31 0 0 I 930 | X DIN 4 250 100 100 L 31 31 0 0 I 931 | S -150 150 150 -150 0 1 0 N 932 | ENDDRAW 933 | ENDDEF 934 | # 935 | #End Library 936 | -------------------------------------------------------------------------------- /PCB/prettylib/BUZZER_SMT.kicad_mod: -------------------------------------------------------------------------------- 1 | (module BUZZER_SMT (layer F.Cu) (tedit 57151A54) 2 | (fp_text reference REF** (at 0.1524 5.9436) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value >NAME (at -0.0508 -5.715) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text user + (at -1.7018 -1.9558) (layer F.SilkS) 9 | (effects (font (size 2 2) (thickness 0.5))) 10 | ) 11 | (fp_line (start -6 -6) (end -6 6) (layer Eco1.User) (width 0.15)) 12 | (fp_line (start 6 -6) (end -6 -6) (layer Eco1.User) (width 0.15)) 13 | (fp_line (start 5 5) (end 5 -5) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -6 6) (end 6 6) (layer Eco1.User) (width 0.15)) 15 | (fp_text user + (at -5.461 -5.6134) (layer F.SilkS) 16 | (effects (font (size 1 1) (thickness 0.25))) 17 | ) 18 | (fp_line (start 6 6) (end 6 -6) (layer Eco1.User) (width 0.15)) 19 | (fp_line (start 5 -5) (end -5 -5) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start -5 -5) (end -5 5) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start -5 5) (end 5 5) (layer F.SilkS) (width 0.15)) 22 | (pad 1 smd rect (at -3.5 -3.5) (size 2.5 2.5) (layers F.Cu F.Paste F.Mask)) 23 | (pad 1 smd rect (at 3.5 -3.5) (size 2.5 2.5) (layers F.Cu F.Paste F.Mask)) 24 | (pad 2 smd rect (at 3.5 3.5) (size 2.5 2.5) (layers F.Cu F.Paste F.Mask)) 25 | (pad 2 smd rect (at -3.5 3.5) (size 2.5 2.5) (layers F.Cu F.Paste F.Mask)) 26 | ) 27 | -------------------------------------------------------------------------------- /PCB/prettylib/BreakHoles.kicad_mod: -------------------------------------------------------------------------------- 1 | (module BreakHoles (layer F.Cu) (tedit 573F2420) 2 | (fp_text reference BREAKHOLES1 (at 0 1.4732) (layer Dwgs.User) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value MISC (at 0 -1.4224) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (pad "" np_thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) 9 | (pad "" np_thru_hole circle (at 0 -1.27) (size 0.8 0.8) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) 10 | (pad "" np_thru_hole circle (at 0 -2.54) (size 0.8 0.8) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) 11 | (pad "" np_thru_hole circle (at 0 1.27) (size 0.8 0.8) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) 12 | (pad "" np_thru_hole circle (at 0 2.54) (size 0.8 0.8) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) 13 | ) 14 | -------------------------------------------------------------------------------- /PCB/prettylib/DIPS4.kicad_mod: -------------------------------------------------------------------------------- 1 | (module DIPS4 (layer F.Cu) (tedit 57151A76) 2 | (fp_text reference REF** (at 7.0358 0.1016 90) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value >NAME (at -7.4676 -0.0762 90) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start 5 2) (end 5 -2) (layer Cmts.User) (width 0.15)) 9 | (fp_line (start -5 2) (end 5 2) (layer Cmts.User) (width 0.15)) 10 | (fp_line (start -5 -2) (end -5 2) (layer Cmts.User) (width 0.15)) 11 | (fp_line (start 5 -2) (end -5 -2) (layer Cmts.User) (width 0.15)) 12 | (fp_line (start -6 2) (end -5 3) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -6 2) (end -6 -3) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 6 3) (end -5 3) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start 6 -3) (end 6 3) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -6 -3) (end 6 -3) (layer F.SilkS) (width 0.15)) 17 | (fp_line (start 7 -4) (end -7 -4) (layer Eco1.User) (width 0.15)) 18 | (fp_line (start 7 4) (end -7 4) (layer Eco1.User) (width 0.15)) 19 | (fp_line (start 7 4) (end 7 -4) (layer Eco1.User) (width 0.15)) 20 | (fp_line (start -7 4) (end -7 -4) (layer Eco1.User) (width 0.15)) 21 | (pad 7 smd rect (at -1.27 -4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 22 | (pad 6 smd rect (at 1.27 -4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 23 | (pad 2 smd rect (at -1.27 4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 24 | (pad 3 smd rect (at 1.27 4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 25 | (pad 8 smd rect (at -3.81 -4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 26 | (pad 5 smd rect (at 3.81 -4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 27 | (pad 4 smd rect (at 3.81 4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 28 | (pad 1 smd rect (at -3.81 4.3) (size 1.12 2.44) (layers F.Cu F.Paste F.Mask)) 29 | ) 30 | -------------------------------------------------------------------------------- /PCB/prettylib/ENCODER_12MM.kicad_mod: -------------------------------------------------------------------------------- 1 | (module ENCODER_12MM (layer F.Cu) (tedit 57151A38) 2 | (fp_text reference S2 (at 0.0508 9.525) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value ENCODER (at -0.0254 -7.8486) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -4 6) (end -4 9) (layer Eco1.User) (width 0.15)) 9 | (fp_line (start 4 6) (end -4 6) (layer Eco1.User) (width 0.15)) 10 | (fp_line (start 4 9) (end 4 6) (layer Eco1.User) (width 0.15)) 11 | (fp_line (start -4 9) (end 4 9) (layer Eco1.User) (width 0.15)) 12 | (fp_line (start -7 7) (end 7 7) (layer Dwgs.User) (width 0.15)) 13 | (fp_line (start -7 -7) (end -7 7) (layer Dwgs.User) (width 0.15)) 14 | (fp_line (start 7 -7) (end -7 -7) (layer Dwgs.User) (width 0.15)) 15 | (fp_line (start 7 7) (end 7 -7) (layer Dwgs.User) (width 0.15)) 16 | (fp_circle (center 0 0) (end 3 0) (layer F.SilkS) (width 0.15)) 17 | (pad "" np_thru_hole circle (at -5.6 0) (size 2.5 2.5) (drill 2.5) (layers *.Cu *.Mask)) 18 | (pad "" np_thru_hole circle (at 5.6 0) (size 2.5 2.5) (drill 2.5) (layers *.Cu *.Mask)) 19 | (pad 2 thru_hole circle (at 0 7.5) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)) 20 | (pad 3 thru_hole circle (at 2.5 7.5) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)) 21 | (pad 1 thru_hole circle (at -2.5 7.5) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)) 22 | ) 23 | -------------------------------------------------------------------------------- /PCB/prettylib/FID.kicad_mod: -------------------------------------------------------------------------------- 1 | (module FID (layer F.Cu) (tedit 5584E943) 2 | (descr FID) 3 | (tags FIDUCIAL) 4 | (attr smd) 5 | (fp_text reference FID (at 0 2.2) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.2))) 7 | ) 8 | (fp_text value >VALUE (at 0 -2.1) (layer F.Fab) hide 9 | (effects (font (size 1 1) (thickness 0.2))) 10 | ) 11 | (pad "" smd circle (at 0 0) (size 1 1) (layers F.Cu F.Mask) 12 | (solder_mask_margin 1) (clearance 1.2)) 13 | ) 14 | -------------------------------------------------------------------------------- /PCB/prettylib/Fuse_SMD1206.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Fuse_SMD1206 (layer F.Cu) (tedit 56DED6ED) 2 | (descr "Fuse, Sicherung, SMD1206, Littlefuse-Wickmann 433 Series, Hand Soldering,") 3 | (tags "Fuse, Sicherung, SMD1206, Littlefuse-Wickmann 433 Series, Hand Soldering,") 4 | (attr smd) 5 | (fp_text reference REF** (at -0.0508 -2.19964) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value Fuse_SMD1206 (at -0.14986 2.49936) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start 3.81 -1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 3.81 1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -3.81 1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -3.81 -1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.15)) 15 | (pad 1 smd rect (at -2.08534 0 90) (size 2.02946 2.65176) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 2.08534 0 90) (size 2.02946 2.65176) (layers F.Cu F.Paste F.Mask)) 17 | ) 18 | -------------------------------------------------------------------------------- /PCB/prettylib/HM-10.kicad_mod: -------------------------------------------------------------------------------- 1 | (module HM-10 (layer F.Cu) (tedit 5715207D) 2 | (descr "HM-01, HM-02, HM-09, HM-10 HAVE SAME SIZE AND SAME PINS. 26.9MM X 13MM X 2.2 MM") 3 | (tags "HM-01, HM-02, HM-09, HM-10 HAVE SAME SIZE AND SAME PINS. 26.9MM X 13MM X 2.2 MM") 4 | (attr smd) 5 | (fp_text reference >NAME (at -1.1938 -5.4864) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1524))) 7 | ) 8 | (fp_text value Val** (at 0 0) (layer Dwgs.User) 9 | (effects (font (thickness 0.1524))) 10 | ) 11 | (fp_line (start -7.24916 -7.0993) (end 5.74802 -7.0993) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start 5.74802 -7.0993) (end 5.74802 19.7993) (layer F.SilkS) (width 0.127)) 13 | (fp_line (start 5.74802 19.7993) (end -7.24916 19.7993) (layer F.SilkS) (width 0.127)) 14 | (fp_line (start -7.24916 19.7993) (end -7.24916 -7.0993) (layer F.SilkS) (width 0.127)) 15 | (fp_text user RX (at -5.4864 1.6002) (layer F.SilkS) 16 | (effects (font (size 0.8128 0.8128) (thickness 0.0762))) 17 | ) 18 | (fp_text user TX (at -5.461 0.1016) (layer F.SilkS) 19 | (effects (font (size 0.8128 0.8128) (thickness 0.0762))) 20 | ) 21 | (fp_text user 3.3 (at -5.1562 16.5354) (layer F.SilkS) 22 | (effects (font (size 0.8128 0.8128) (thickness 0.0762))) 23 | ) 24 | (fp_text user GND (at -5.588 18.4404) (layer F.SilkS) 25 | (effects (font (size 0.6096 0.6096) (thickness 0.0508))) 26 | ) 27 | (fp_text user GND (at 4.0894 18.3896) (layer F.SilkS) 28 | (effects (font (size 0.6096 0.6096) (thickness 0.0508))) 29 | ) 30 | (fp_text user KEY (at 3.81 16.5354) (layer F.SilkS) 31 | (effects (font (size 0.8128 0.8128) (thickness 0.0762))) 32 | ) 33 | (fp_text user LED (at 3.7592 15.0114) (layer F.SilkS) 34 | (effects (font (size 0.8128 0.8128) (thickness 0.0762))) 35 | ) 36 | (fp_line (start -8 -8) (end 7 -8) (layer Eco1.User) (width 0.127)) 37 | (fp_line (start -8 21) (end 7 21) (layer Eco1.User) (width 0.127)) 38 | (fp_line (start 7 -8) (end 7 21) (layer Eco1.User) (width 0.127)) 39 | (fp_line (start -8 -8) (end -8 21) (layer Eco1.User) (width 0.127)) 40 | (pad 1 smd rect (at -7.49808 0) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 41 | (pad 2 smd rect (at -7.49808 1.4986) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 42 | (pad 12 smd rect (at -7.49808 16.49984) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 43 | (pad 13 smd rect (at -7.49808 17.99844) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 44 | (pad 14 smd rect (at -5.99948 19.87296 90) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 45 | (pad 21 smd rect (at 4.49834 19.87296 90) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 46 | (pad 22 smd rect (at 5.99948 17.99844 180) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 47 | (pad 23 smd rect (at 5.99948 16.49984 180) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 48 | (pad 24 smd rect (at 5.99948 14.9987 180) (size 1.4986 0.635) (layers F.Cu F.Paste F.Mask)) 49 | ) 50 | -------------------------------------------------------------------------------- /PCB/prettylib/INSW_LEDS_REG.kicad_mod: -------------------------------------------------------------------------------- 1 | (module INSW_LEDS_REG (layer F.Cu) (tedit 56F81390) 2 | (attr smd) 3 | (fp_text reference >NAME (at -0.1016 6.9596) (layer B.SilkS) 4 | (effects (font (size 1 1) (thickness 0.2)) (justify mirror)) 5 | ) 6 | (fp_text value Val** (at 0 2.413) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3048))) 8 | ) 9 | (pad 2 thru_hole oval (at 1.27 5.08) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask F.SilkS)) 10 | (pad 1 thru_hole rect (at -1.27 5.08) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask F.SilkS)) 11 | ) 12 | -------------------------------------------------------------------------------- /PCB/prettylib/Inductor_Bourn_4mmx4mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Inductor_Bourn_4mmx4mm (layer F.Cu) (tedit 56EAD789) 2 | (fp_text reference REF** (at 0.1778 2.5654) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value >NAME (at 0 -2.794) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -2.4 2) (end -2.4 -2) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 2.4 2) (end -2.4 2) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 2.4 -2) (end 2.4 2) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -2.4 -2) (end 2.4 -2) (layer F.SilkS) (width 0.15)) 12 | (pad 1 smd rect (at -1.525 0) (size 1.5 3.6) (layers F.Cu F.Paste F.Mask)) 13 | (pad 2 smd rect (at 1.525 0) (size 1.5 3.6) (layers F.Cu F.Paste F.Mask)) 14 | ) 15 | -------------------------------------------------------------------------------- /PCB/prettylib/JLINK_NEEDLE.kicad_mod: -------------------------------------------------------------------------------- 1 | (module JLINK_NEEDLE (layer F.Cu) (tedit 56DED796) 2 | (tags jlink) 3 | (fp_text reference REF** (at 0 5.08) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.2))) 5 | ) 6 | (fp_text value >VALUE (at 0 -4.826) (layer F.Fab) hide 7 | (effects (font (size 1.5 1.5) (thickness 0.15))) 8 | ) 9 | (pad 8 smd circle (at 0 -0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 10 | (pad 3 smd circle (at 0 0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 11 | (pad 7 smd circle (at 1.27 -0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 12 | (pad 4 smd circle (at 1.27 0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 13 | (pad 5 smd circle (at 2.54 0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 14 | (pad 6 smd circle (at 2.54 -0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 15 | (pad 9 smd circle (at -1.27 -0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 16 | (pad 2 smd circle (at -1.27 0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 17 | (pad 10 smd circle (at -2.54 -0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 18 | (pad 1 smd circle (at -2.54 0.635) (size 0.7874 0.7874) (layers F.Cu F.Mask)) 19 | (pad "" np_thru_hole circle (at -3.81 0) (size 0.99061 0.99061) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)) 20 | (pad "" np_thru_hole circle (at 3.81 -1.016) (size 0.99061 0.99061) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)) 21 | (pad "" np_thru_hole circle (at 3.81 1.016) (size 0.99061 0.99061) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)) 22 | (pad "" np_thru_hole circle (at -3.81 -2.54) (size 2.37491 2.37491) (drill 2.3749) (layers *.Cu *.Mask F.SilkS)) 23 | (pad "" np_thru_hole circle (at 1.905 -2.54) (size 2.37491 2.37491) (drill 2.3749) (layers *.Cu *.Mask F.SilkS)) 24 | (pad "" np_thru_hole circle (at -3.81 2.54) (size 2.37491 2.37491) (drill 2.3749) (layers *.Cu *.Mask F.SilkS)) 25 | (pad "" np_thru_hole circle (at 1.905 2.54) (size 2.37491 2.37491) (drill 2.3749) (layers *.Cu *.Mask F.SilkS)) 26 | ) 27 | -------------------------------------------------------------------------------- /PCB/prettylib/JST_PH_2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module JST_PH_2 (layer F.Cu) (tedit 571522A9) 2 | (fp_text reference REF** (at 4.9022 -0.635 90) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value >NAME (at -4.7244 -0.8636 90) (layer Dwgs.User) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start 5 -11) (end 5 5) (layer Eco1.User) (width 0.15)) 9 | (fp_text user + (at 5.334 -4.953) (layer F.SilkS) 10 | (effects (font (size 2 2) (thickness 0.5))) 11 | ) 12 | (fp_line (start -4 4) (end -4 -6) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 4 4) (end -4 4) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 4 -6) (end 4 4) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -4 -6) (end 4 -6) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -5 -11) (end 5 -11) (layer Eco1.User) (width 0.15)) 17 | (fp_line (start -5 5) (end 5 5) (layer Eco1.User) (width 0.15)) 18 | (fp_line (start -5 -11) (end -5 5) (layer Eco1.User) (width 0.15)) 19 | (pad 1 smd rect (at -1 1.75) (size 1 3.5) (layers F.Cu F.Paste F.Mask)) 20 | (pad 2 smd rect (at 1 1.75) (size 1 3.5) (layers F.Cu F.Paste F.Mask)) 21 | (pad ~ smd rect (at -2.6 -3.8) (size 1.5 3.4) (layers F.Cu F.Paste F.Mask)) 22 | (pad ~ smd rect (at 2.6 -3.8) (size 1.5 3.4) (layers F.Cu F.Paste F.Mask)) 23 | ) 24 | -------------------------------------------------------------------------------- /PCB/prettylib/JUMPER_SMD_2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module JUMPER_SMD_2 (layer F.Cu) (tedit 56DFDF84) 2 | (fp_text reference REF** (at 0 -1.2446) (layer F.SilkS) 3 | (effects (font (size 0.5 0.5) (thickness 0.1))) 4 | ) 5 | (fp_text value VAL** (at 0.0508 1.27) (layer Dwgs.User) 6 | (effects (font (size 0.5 0.5) (thickness 0.1))) 7 | ) 8 | (fp_line (start -1.3 -0.762) (end 1.3 -0.762) (layer F.SilkS) (width 0.2)) 9 | (fp_line (start 1.3 -0.762) (end 1.3 0.762) (layer F.SilkS) (width 0.2)) 10 | (fp_line (start 1.3 0.762) (end -1.3 0.762) (layer F.SilkS) (width 0.2)) 11 | (fp_line (start -1.3 0.762) (end -1.3 -0.762) (layer F.SilkS) (width 0.2)) 12 | (pad 1 smd trapezoid (at -0.5812 0.2754) (size 0.5001 0.5) (rect_delta 0 0.5 ) (layers F.Cu F.Paste F.Mask)) 13 | (pad 2 smd rect (at 0.5588 0.0254) (size 1 1) (layers F.Cu F.Paste F.Mask)) 14 | (pad 2 smd rect (at 0.0588 0.0254 45) (size 0.707 0.707) (layers F.Cu F.Paste F.Mask)) 15 | (pad 1 smd trapezoid (at -0.5812 -0.2246 180) (size 0.5001 0.5) (rect_delta 0 0.5 ) (layers F.Cu F.Paste F.Mask)) 16 | (pad 1 smd rect (at -0.8312 0.0254 180) (size 0.5 1) (layers F.Cu F.Paste F.Mask)) 17 | ) 18 | -------------------------------------------------------------------------------- /PCB/prettylib/JUMPER_SMD_3.kicad_mod: -------------------------------------------------------------------------------- 1 | (module JUMPER_SMD_3 (layer F.Cu) (tedit 573A12C6) 2 | (fp_text reference REF** (at 0.127 -1.524) (layer F.SilkS) 3 | (effects (font (size 0.5 0.5) (thickness 0.1))) 4 | ) 5 | (fp_text value VAL** (at 0.254 1.524) (layer Dwgs.User) 6 | (effects (font (size 0.5 0.5) (thickness 0.1))) 7 | ) 8 | (fp_line (start -2.159 -1.016) (end 2.159 -1.016) (layer F.SilkS) (width 0.2)) 9 | (fp_line (start 2.159 -1.016) (end 2.159 1.016) (layer F.SilkS) (width 0.2)) 10 | (fp_line (start 2.159 1.016) (end -2.159 1.016) (layer F.SilkS) (width 0.2)) 11 | (fp_line (start -2.159 1.016) (end -2.159 -1.016) (layer F.SilkS) (width 0.2)) 12 | (pad 2 smd rect (at 0 0) (size 1 1.5) (layers F.Cu F.Paste F.Mask)) 13 | (pad 1 smd rect (at -1.5 0 180) (size 1 1.5) (layers F.Cu F.Paste F.Mask)) 14 | (pad 3 smd rect (at 1.5 0 180) (size 1 1.5) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /PCB/prettylib/Jumper_SMD_3way.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Jumper_SMD_3way (layer F.Cu) (tedit 56DFD89A) 2 | (fp_text reference REF** (at -0.4826 -1.1938) (layer F.SilkS) 3 | (effects (font (size 0.5 0.5) (thickness 0.1))) 4 | ) 5 | (fp_text value VAL** (at 0.2032 1.2446) (layer Dwgs.User) 6 | (effects (font (size 0.5 0.5) (thickness 0.1))) 7 | ) 8 | (fp_line (start -1.397 -0.762) (end 1.397 -0.762) (layer F.SilkS) (width 0.2)) 9 | (fp_line (start 1.397 -0.762) (end 1.397 0.762) (layer F.SilkS) (width 0.2)) 10 | (fp_line (start 1.397 0.762) (end -1.397 0.762) (layer F.SilkS) (width 0.2)) 11 | (fp_line (start -1.397 0.762) (end -1.397 -0.762) (layer F.SilkS) (width 0.2)) 12 | (pad 1 smd rect (at 0 0.25) (size 1 0.5) (layers F.Cu F.Paste F.Mask)) 13 | (pad 3 smd rect (at 0.9 0) (size 0.6 1) (layers F.Cu F.Paste F.Mask)) 14 | (pad 2 smd rect (at -0.9 0) (size 0.6 1) (layers F.Cu F.Paste F.Mask)) 15 | (pad 2 smd rect (at -0.625 -0.3) (size 1.15 0.4) (layers F.Cu F.Paste F.Mask)) 16 | (pad 3 smd rect (at 0.625 -0.3) (size 1.15 0.4) (layers F.Cu F.Paste F.Mask)) 17 | ) 18 | -------------------------------------------------------------------------------- /PCB/prettylib/LED-3MM.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LED-3MM (layer F.Cu) (tedit 56DED773) 2 | (descr "LED 3mm round vertical") 3 | (tags "LED 3mm round vertical") 4 | (fp_text reference REF** (at 1.91 3.06) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value LED-3MM (at 1.3 -2.9) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -0.199 1.314) (end -0.199 1.114) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -0.199 -1.28) (end -0.199 -1.1) (layer F.SilkS) (width 0.15)) 12 | (fp_arc (start 1.301 0.034) (end -0.199 -1.286) (angle 108.5) (layer F.SilkS) (width 0.15)) 13 | (fp_arc (start 1.301 0.034) (end 0.25 -1.1) (angle 85.7) (layer F.SilkS) (width 0.15)) 14 | (fp_arc (start 1.311 0.034) (end 3.051 0.994) (angle 110) (layer F.SilkS) (width 0.15)) 15 | (fp_arc (start 1.301 0.034) (end 2.335 1.094) (angle 87.5) (layer F.SilkS) (width 0.15)) 16 | (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) 17 | (pad 2 thru_hole circle (at 2.54 0) (size 1.7 1.7) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) 18 | (model LEDs.3dshapes/LED-3MM.wrl 19 | (at (xyz 0.05 0 0)) 20 | (scale (xyz 1 1 1)) 21 | (rotate (xyz 0 0 90)) 22 | ) 23 | ) 24 | -------------------------------------------------------------------------------- /PCB/prettylib/LED_0805.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LED_0805 (layer F.Cu) (tedit 56DED784) 2 | (descr "LED 0805 smd package") 3 | (tags "LED 0805 SMD") 4 | (attr smd) 5 | (fp_text reference REF** (at 0 -1.75) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value LED_0805 (at 0 1.75) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -0.762 1.5875) (end 0.6985 1.5875) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 0.027 1.7375) (end 0.027 1.4875) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 0.027 1.4875) (end -0.123 1.6375) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -0.223 1.2375) (end -0.223 1.9375) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -0.223 1.5875) (end 0.127 1.2375) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start 0.127 1.2375) (end 0.127 1.9375) (layer F.SilkS) (width 0.15)) 17 | (fp_line (start 0.127 1.9375) (end -0.223 1.5875) (layer F.SilkS) (width 0.15)) 18 | (fp_line (start 1.9 -0.95) (end 1.9 0.95) (layer F.SilkS) (width 0.15)) 19 | (fp_line (start 1.9 0.95) (end -1.9 0.95) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start -1.9 0.95) (end -1.9 -0.95) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start -1.9 -0.95) (end 1.9 -0.95) (layer F.SilkS) (width 0.15)) 22 | (pad 1 smd rect (at 1.04902 0 180) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 23 | (pad 2 smd rect (at -1.04902 0 180) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 24 | (model LEDs.3dshapes/LED_0805.wrl 25 | (at (xyz 0 0 0)) 26 | (scale (xyz 1 1 1)) 27 | (rotate (xyz 0 0 0)) 28 | ) 29 | ) 30 | -------------------------------------------------------------------------------- /PCB/prettylib/MSOP-10.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MSOP-10 (layer F.Cu) (tedit 56DEDCBC) 2 | (descr "10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf)") 3 | (tags "SSOP 0.5") 4 | (attr smd) 5 | (fp_text reference REF** (at 0.7874 -2.3876) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at 0 2.6) (layer F.SilkS) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -1.488581 -1.905) (end -1.564781 -1.9558) (layer F.SilkS) (width 0.15)) 12 | (fp_circle (center -0.7112 -1.1938) (end -0.8636 -1.3208) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 1.1938 1.675) (end 1.1938 -1.675) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -1.1938 1.675) (end -1.1938 -1.675) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -1.1938 -1.675) (end 1.1938 -1.675) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -1.1938 1.6764) (end 1.1938 1.675) (layer F.SilkS) (width 0.15)) 17 | (pad 1 smd rect (at -2.2 -1) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at -2.2 -0.5) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at -2.2 0) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 20 | (pad 4 smd rect (at -2.2 0.5) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 21 | (pad 5 smd rect (at -2.2 1) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 22 | (pad 6 smd rect (at 2.2 1) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 23 | (pad 7 smd rect (at 2.2 0.5) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 24 | (pad 8 smd rect (at 2.2 0) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 25 | (pad 9 smd rect (at 2.2 -0.5) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 26 | (pad 10 smd rect (at 2.2 -1) (size 1.4 0.3) (layers F.Cu F.Paste F.Mask)) 27 | (model Housings_SSOP.3dshapes/MSOP-10_3x3mm_Pitch0.5mm.wrl 28 | (at (xyz 0 0 0)) 29 | (scale (xyz 1 1 1)) 30 | (rotate (xyz 0 0 0)) 31 | ) 32 | ) 33 | -------------------------------------------------------------------------------- /PCB/prettylib/MSOP-8.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MSOP-8 (layer F.Cu) (tedit 56DEE1AE) 2 | (descr "8-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf)") 3 | (tags "SSOP 0.65") 4 | (attr smd) 5 | (fp_text reference REF** (at 0.7366 -2.4638) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at 0 2.6) (layer F.SilkS) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -1.4478 -1.9304) (end -1.524 -2.0066) (layer F.SilkS) (width 0.15)) 12 | (fp_circle (center -0.7112 -1.143) (end -0.8636 -1.2954) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.1684 -1.675) (end -1.1684 1.675) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 1.1684 -1.675) (end 1.1684 1.675) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -1.1684 -1.675) (end 1.1684 -1.675) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -1.1684 1.6764) (end 1.1684 1.675) (layer F.SilkS) (width 0.15)) 17 | (pad 1 smd rect (at -2.2 -0.975) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at -2.2 -0.325) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at -2.2 0.325) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 20 | (pad 4 smd rect (at -2.2 0.975) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 21 | (pad 5 smd rect (at 2.2 0.975) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 22 | (pad 6 smd rect (at 2.2 0.325) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 23 | (pad 7 smd rect (at 2.2 -0.325) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 24 | (pad 8 smd rect (at 2.2 -0.975) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)) 25 | (model Housings_SSOP.3dshapes/MSOP-8_3x3mm_Pitch0.65mm.wrl 26 | (at (xyz 0 0 0)) 27 | (scale (xyz 1 1 1)) 28 | (rotate (xyz 0 0 0)) 29 | ) 30 | ) 31 | -------------------------------------------------------------------------------- /PCB/prettylib/MXALPS.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MXALPS (layer F.Cu) (tedit 56F94BCA) 2 | (descr MXALPS) 3 | (tags MXALPS) 4 | (fp_text reference >NAME (at 0 3.048) (layer B.SilkS) 5 | (effects (font (thickness 0.3048)) (justify mirror)) 6 | ) 7 | (fp_text value >VALUE (at -3.5 9) (layer B.SilkS) hide 8 | (effects (font (thickness 0.3048)) (justify mirror)) 9 | ) 10 | (fp_line (start -7.75 6.4) (end -7.75 -6.4) (layer Dwgs.User) (width 0.3)) 11 | (fp_line (start -7.75 6.4) (end 7.75 6.4) (layer Dwgs.User) (width 0.3)) 12 | (fp_line (start 7.75 6.4) (end 7.75 -6.4) (layer Dwgs.User) (width 0.3)) 13 | (fp_line (start 7.75 -6.4) (end -7.75 -6.4) (layer Dwgs.User) (width 0.3)) 14 | (fp_line (start -7.62 -7.62) (end 7.62 -7.62) (layer Dwgs.User) (width 0.3)) 15 | (fp_line (start 7.62 -7.62) (end 7.62 7.62) (layer Dwgs.User) (width 0.3)) 16 | (fp_line (start 7.62 7.62) (end -7.62 7.62) (layer Dwgs.User) (width 0.3)) 17 | (fp_line (start -7.62 7.62) (end -7.62 -7.62) (layer Dwgs.User) (width 0.3)) 18 | (pad "" np_thru_hole circle (at 0 0) (size 3.98781 3.98781) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 19 | (clearance 0.1524)) 20 | (pad "" np_thru_hole circle (at -5.08 0) (size 1.70181 1.70181) (drill 1.7018) (layers *.Cu *.Mask F.SilkS) 21 | (clearance 0.1524)) 22 | (pad "" np_thru_hole circle (at 5.08 0) (size 1.70181 1.70181) (drill 1.7018) (layers *.Cu *.Mask F.SilkS) 23 | (clearance 0.1524)) 24 | (pad 1 thru_hole oval (at -3.405 -3.27 330.95) (size 2.5 4.17) (drill oval 1.5 3.17) (layers *.Cu *.Mask F.SilkS)) 25 | (pad 2 thru_hole oval (at 2.52 -4.79 356.1) (size 2.5 3.08) (drill oval 1.5 2.08) (layers *.Cu *.Mask F.SilkS)) 26 | ) 27 | -------------------------------------------------------------------------------- /PCB/prettylib/MXALPS2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MXALPS2 (layer F.Cu) (tedit 56F94BDF) 2 | (descr MXALPS2) 3 | (tags MXALPS) 4 | (fp_text reference >NAME (at 0 3.048) (layer B.SilkS) 5 | (effects (font (thickness 0.3048)) (justify mirror)) 6 | ) 7 | (fp_text value >VALUE (at -3.5 9) (layer B.SilkS) hide 8 | (effects (font (thickness 0.3048)) (justify mirror)) 9 | ) 10 | (fp_line (start -7.75 6.4) (end -7.75 -6.4) (layer Dwgs.User) (width 0.3)) 11 | (fp_line (start -7.75 6.4) (end 7.75 6.4) (layer Dwgs.User) (width 0.3)) 12 | (fp_line (start 7.75 6.4) (end 7.75 -6.4) (layer Dwgs.User) (width 0.3)) 13 | (fp_line (start 7.75 -6.4) (end -7.75 -6.4) (layer Dwgs.User) (width 0.3)) 14 | (fp_line (start -7.62 -7.62) (end 7.62 -7.62) (layer Dwgs.User) (width 0.3)) 15 | (fp_line (start 7.62 -7.62) (end 7.62 7.62) (layer Dwgs.User) (width 0.3)) 16 | (fp_line (start 7.62 7.62) (end -7.62 7.62) (layer Dwgs.User) (width 0.3)) 17 | (fp_line (start -7.62 7.62) (end -7.62 -7.62) (layer Dwgs.User) (width 0.3)) 18 | (pad "" np_thru_hole circle (at 0 0) (size 3.98781 3.98781) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 19 | (clearance 0.1524)) 20 | (pad "" np_thru_hole circle (at -5.08 0) (size 1.70181 1.70181) (drill 1.7018) (layers *.Cu *.Mask F.SilkS) 21 | (clearance 0.1524)) 22 | (pad "" np_thru_hole circle (at 5.08 0) (size 1.70181 1.70181) (drill 1.7018) (layers *.Cu *.Mask F.SilkS) 23 | (clearance 0.1524)) 24 | (pad 1 thru_hole circle (at -3.918 -2.54) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask F.SilkS)) 25 | (pad 1 thru_hole circle (at -2.608 -4) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask F.SilkS)) 26 | (pad 2 thru_hole circle (at 2.433 -5.08) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask F.SilkS)) 27 | (pad 2 thru_hole circle (at 2.393 -4.5) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask F.SilkS)) 28 | ) 29 | -------------------------------------------------------------------------------- /PCB/prettylib/MX_200.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MX_200 (layer F.Cu) (tedit 56C31912) 2 | (fp_text reference SW? (at 0 3.175) (layer Dwgs.User) 3 | (effects (font (size 1.27 1.524) (thickness 0.2032))) 4 | ) 5 | (fp_text value MX_200 (at 0.127 5.08) (layer Dwgs.User) 6 | (effects (font (size 1.27 1.524) (thickness 0.2032))) 7 | ) 8 | (fp_text user 2.00u (at -15.367 8.255) (layer Dwgs.User) hide 9 | (effects (font (thickness 0.3048))) 10 | ) 11 | (fp_line (start -18.923 -9.398) (end 18.923 -9.398) (layer Dwgs.User) (width 0.1524)) 12 | (fp_line (start 18.923 -9.398) (end 18.923 9.398) (layer Dwgs.User) (width 0.1524)) 13 | (fp_line (start 18.923 9.398) (end -18.923 9.398) (layer Dwgs.User) (width 0.1524)) 14 | (fp_line (start -18.923 9.398) (end -18.923 -9.398) (layer Dwgs.User) (width 0.1524)) 15 | (fp_line (start 15.367 -7.62) (end 8.509 -7.62) (layer Cmts.User) (width 0.1524)) 16 | (fp_line (start 8.509 -7.62) (end 8.509 7.62) (layer Cmts.User) (width 0.1524)) 17 | (fp_line (start 8.509 7.62) (end -8.509 7.62) (layer Cmts.User) (width 0.1524)) 18 | (fp_line (start -8.509 7.62) (end -8.509 -7.62) (layer Cmts.User) (width 0.1524)) 19 | (fp_line (start -8.509 -7.62) (end -15.367 -7.62) (layer Cmts.User) (width 0.1524)) 20 | (fp_line (start -15.367 -7.62) (end -15.367 10.16) (layer Cmts.User) (width 0.1524)) 21 | (fp_line (start -15.367 10.16) (end 15.367 10.16) (layer Cmts.User) (width 0.1524)) 22 | (fp_line (start 15.367 10.16) (end 15.367 -7.62) (layer Cmts.User) (width 0.1524)) 23 | (pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask F.SilkS) 24 | (solder_mask_margin -0.254) (zone_connect 2)) 25 | (pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask F.SilkS) 26 | (solder_mask_margin -0.254) (zone_connect 2)) 27 | (pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 28 | (solder_mask_margin -0.254) (zone_connect 2)) 29 | (pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 30 | (solder_mask_margin -0.254) (zone_connect 2)) 31 | ) 32 | -------------------------------------------------------------------------------- /PCB/prettylib/MX_ISO.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MX_ISO (layer F.Cu) (tedit 569FEC75) 2 | (fp_text reference SW? (at 3.175 0 90) (layer F.SilkS) 3 | (effects (font (size 1.27 1.524) (thickness 0.2032))) 4 | ) 5 | (fp_text value MX_ISO (at 5.08 -0.127 90) (layer F.SilkS) hide 6 | (effects (font (size 1.27 1.524) (thickness 0.2032))) 7 | ) 8 | (fp_text user "ISO ENTER" (at -3.215 17.78) (layer Dwgs.User) 9 | (effects (font (thickness 0.3048))) 10 | ) 11 | (fp_line (start -9.398 0) (end -9.398 18.923) (layer Dwgs.User) (width 0.1524)) 12 | (fp_line (start -14.16304 0) (end -14.16304 -18.923) (layer Dwgs.User) (width 0.1524)) 13 | (fp_line (start -14.16304 -18.923) (end 9.398 -18.923) (layer Dwgs.User) (width 0.1524)) 14 | (fp_line (start 9.398 -18.923) (end 9.398 18.923) (layer Dwgs.User) (width 0.1524)) 15 | (fp_line (start 9.398 18.923) (end -9.398 18.923) (layer Dwgs.User) (width 0.1524)) 16 | (fp_line (start -7.62 -15.367) (end -7.62 -8.509) (layer Cmts.User) (width 0.1524)) 17 | (fp_line (start -7.62 -8.509) (end 7.62 -8.509) (layer Cmts.User) (width 0.1524)) 18 | (fp_line (start 7.62 -8.509) (end 7.62 8.509) (layer Cmts.User) (width 0.1524)) 19 | (fp_line (start 7.62 8.509) (end -7.62 8.509) (layer Cmts.User) (width 0.1524)) 20 | (fp_line (start -7.62 8.509) (end -7.62 15.367) (layer Cmts.User) (width 0.1524)) 21 | (fp_line (start -7.62 15.367) (end 10.16 15.367) (layer Cmts.User) (width 0.1524)) 22 | (fp_line (start 10.16 15.367) (end 10.16 -15.367) (layer Cmts.User) (width 0.1524)) 23 | (fp_line (start 10.16 -15.367) (end -7.62 -15.367) (layer Cmts.User) (width 0.1524)) 24 | (pad HOLE thru_hole circle (at -6.985 11.938 90) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask F.SilkS) 25 | (solder_mask_margin -0.254) (zone_connect 2)) 26 | (pad HOLE thru_hole circle (at -6.985 -11.938 90) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask F.SilkS) 27 | (solder_mask_margin -0.254) (zone_connect 2)) 28 | (pad HOLE thru_hole circle (at 8.255 11.938 90) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 29 | (solder_mask_margin -0.254) (zone_connect 2)) 30 | (pad HOLE thru_hole circle (at 8.255 -11.938 90) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask F.SilkS) 31 | (solder_mask_margin -0.254) (zone_connect 2)) 32 | ) 33 | -------------------------------------------------------------------------------- /PCB/prettylib/NX3225SA.kicad_mod: -------------------------------------------------------------------------------- 1 | (module NX3225SA (layer F.Cu) (tedit 5531CC7C) 2 | (descr NX3225SA) 3 | (tags NX3225SA) 4 | (fp_text reference >NAME (at 0 2.794) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.2))) 6 | ) 7 | (fp_text value >VALUE (at 0 -2.54) (layer F.SilkS) hide 8 | (effects (font (thickness 0.3048))) 9 | ) 10 | (fp_line (start -1.6 0.15) (end -1.6 -0.15) (layer F.SilkS) (width 0.1)) 11 | (fp_line (start 0.35 1.25) (end -0.35 1.25) (layer F.SilkS) (width 0.1)) 12 | (fp_line (start 1.6 -0.15) (end 1.6 0.15) (layer F.SilkS) (width 0.1)) 13 | (fp_line (start 0.35 -1.2) (end -0.35 -1.2) (layer F.SilkS) (width 0.1)) 14 | (pad 3 smd rect (at 1.1 -0.8) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)) 15 | (pad 2 smd rect (at 1.1 0.8) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)) 16 | (pad 1 smd rect (at -1.1 0.8) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)) 17 | (pad 4 smd rect (at -1.1 -0.8) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)) 18 | ) 19 | -------------------------------------------------------------------------------- /PCB/prettylib/Pin_Header_1x02.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Pin_Header_1x02 (layer F.Cu) (tedit 56DFE0AD) 2 | (descr "Through hole pin header") 3 | (tags "pin header") 4 | (fp_text reference REF** (at 0.2032 -2.54) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at -0.2794 5.2578) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.SilkS) (width 0.15)) 14 | (pad 1 thru_hole rect (at 0 0) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 15 | (pad 2 thru_hole oval (at 0 2.54) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 16 | (model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl 17 | (at (xyz 0 -0.05 0)) 18 | (scale (xyz 1 1 1)) 19 | (rotate (xyz 0 0 90)) 20 | ) 21 | ) 22 | -------------------------------------------------------------------------------- /PCB/prettylib/Pin_Header_1x05.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Pin_Header_1x05 (layer F.Cu) (tedit 56DFE14C) 2 | (descr "Through hole pin header") 3 | (tags "pin header") 4 | (fp_text reference REF** (at 0.127 -2.5654) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at 0.254 12.827) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -1.75 -1.75) (end -1.75 11.95) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 1.75 -1.75) (end 1.75 11.95) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.75 11.95) (end 1.75 11.95) (layer F.SilkS) (width 0.15)) 14 | (pad 1 thru_hole rect (at 0 0) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 15 | (pad 2 thru_hole oval (at 0 2.54) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 16 | (pad 3 thru_hole oval (at 0 5.08) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 17 | (pad 4 thru_hole oval (at 0 7.62) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 18 | (pad 5 thru_hole oval (at 0 10.16) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 19 | (model Pin_Headers.3dshapes/Pin_Header_Straight_1x05.wrl 20 | (at (xyz 0 -0.2 0)) 21 | (scale (xyz 1 1 1)) 22 | (rotate (xyz 0 0 90)) 23 | ) 24 | ) 25 | -------------------------------------------------------------------------------- /PCB/prettylib/Pin_Header_1x06.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Pin_Header_1x06 (layer F.Cu) (tedit 56FC0FA0) 2 | (descr "Through hole pin header") 3 | (tags "pin header") 4 | (fp_text reference REF** (at 0.127 -2.5654) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at 0 15.24) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -1.75 -1.75) (end -1.75 13.97) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 1.75 -1.75) (end 1.75 13.97) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.75 13.97) (end 1.75 13.97) (layer F.SilkS) (width 0.15)) 14 | (pad 1 thru_hole rect (at 0 0) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 15 | (pad 2 thru_hole oval (at 0 2.54) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 16 | (pad 3 thru_hole oval (at 0 5.08) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 17 | (pad 4 thru_hole oval (at 0 7.62) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 18 | (pad 5 thru_hole oval (at 0 10.16) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 19 | (pad 6 thru_hole oval (at 0 12.7) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 20 | (model Pin_Headers.3dshapes/Pin_Header_Straight_1x05.wrl 21 | (at (xyz 0 -0.2 0)) 22 | (scale (xyz 1 1 1)) 23 | (rotate (xyz 0 0 90)) 24 | ) 25 | ) 26 | -------------------------------------------------------------------------------- /PCB/prettylib/Pin_Header_1x10.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Pin_Header_1x10 (layer F.Cu) (tedit 56DFE1E7) 2 | (descr "Through hole pin header") 3 | (tags "pin header") 4 | (fp_text reference REF** (at 0.1524 -2.54) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at -0.0254 25.5016) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -1.75 -1.75) (end -1.75 24.65) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 1.75 -1.75) (end 1.75 24.65) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.75 24.65) (end 1.75 24.65) (layer F.SilkS) (width 0.15)) 14 | (pad 1 thru_hole rect (at 0 0) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 15 | (pad 2 thru_hole oval (at 0 2.54) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 16 | (pad 3 thru_hole oval (at 0 5.08) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 17 | (pad 4 thru_hole oval (at 0 7.62) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 18 | (pad 5 thru_hole oval (at 0 10.16) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 19 | (pad 6 thru_hole oval (at 0 12.7) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 20 | (pad 7 thru_hole oval (at 0 15.24) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 21 | (pad 8 thru_hole oval (at 0 17.78) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 22 | (pad 9 thru_hole oval (at 0 20.32) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 23 | (pad 10 thru_hole oval (at 0 22.86) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 24 | (model Pin_Headers.3dshapes/Pin_Header_Straight_1x10.wrl 25 | (at (xyz 0 -0.45 0)) 26 | (scale (xyz 1 1 1)) 27 | (rotate (xyz 0 0 90)) 28 | ) 29 | ) 30 | -------------------------------------------------------------------------------- /PCB/prettylib/Pin_Header_2x10.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Pin_Header_2x10 (layer F.Cu) (tedit 56DFE24E) 2 | (descr "Through hole pin header") 3 | (tags "pin header") 4 | (fp_text reference REF** (at 0.1778 -2.5908) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at 1.0668 25.5524) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start -1.75 -1.75) (end -1.75 24.65) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 4.3 -1.75) (end 4.3 24.65) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.75 -1.75) (end 4.3 -1.75) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.75 24.65) (end 4.3 24.65) (layer F.SilkS) (width 0.15)) 14 | (pad 1 thru_hole rect (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 15 | (pad 2 thru_hole oval (at 2.54 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 16 | (pad 3 thru_hole oval (at 0 2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 17 | (pad 4 thru_hole oval (at 2.54 2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 18 | (pad 5 thru_hole oval (at 0 5.08) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 19 | (pad 6 thru_hole oval (at 2.54 5.08) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 20 | (pad 7 thru_hole oval (at 0 7.62) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 21 | (pad 8 thru_hole oval (at 2.54 7.62) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 22 | (pad 9 thru_hole oval (at 0 10.16) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 23 | (pad 10 thru_hole oval (at 2.54 10.16) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 24 | (pad 11 thru_hole oval (at 0 12.7) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 25 | (pad 12 thru_hole oval (at 2.54 12.7) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 26 | (pad 13 thru_hole oval (at 0 15.24) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 27 | (pad 14 thru_hole oval (at 2.54 15.24) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 28 | (pad 15 thru_hole oval (at 0 17.78) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 29 | (pad 16 thru_hole oval (at 2.54 17.78) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 30 | (pad 17 thru_hole oval (at 0 20.32) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 31 | (pad 18 thru_hole oval (at 2.54 20.32) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 32 | (pad 19 thru_hole oval (at 0 22.86) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 33 | (pad 20 thru_hole oval (at 2.54 22.86) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)) 34 | (model Pin_Headers.3dshapes/Pin_Header_Straight_2x10.wrl 35 | (at (xyz 0.05 -0.45 0)) 36 | (scale (xyz 1 1 1)) 37 | (rotate (xyz 0 0 90)) 38 | ) 39 | ) 40 | -------------------------------------------------------------------------------- /PCB/prettylib/SMD_0805.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SMD_0805 (layer F.Cu) (tedit 56DEC562) 2 | (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)") 3 | (tags "capacitor 0805") 4 | (attr smd) 5 | (fp_text reference >NAME (at 0 -2.1) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >VALUE (at 0 2.1) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -1.8 -1) (end 1.8 -1) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.8 1) (end 1.8 1) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -1.8 -1) (end -1.8 1) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 1.8 -1) (end 1.8 1) (layer F.SilkS) (width 0.15)) 15 | (pad 1 smd rect (at -1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)) 17 | (model Capacitors_SMD.3dshapes/C_0805.wrl 18 | (at (xyz 0 0 0)) 19 | (scale (xyz 1 1 1)) 20 | (rotate (xyz 0 0 0)) 21 | ) 22 | ) 23 | -------------------------------------------------------------------------------- /PCB/prettylib/SOD123-DIODE.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOD123-DIODE (layer F.Cu) (tedit 56DEC59B) 2 | (descr DIODE) 3 | (tags DIODE) 4 | (fp_text reference >NAME (at -1.7145 -0.127 90) (layer F.SilkS) 5 | (effects (font (size 1.016 1.016) (thickness 0.2032))) 6 | ) 7 | (fp_text value >VALUE (at 1.905 0 90) (layer F.SilkS) hide 8 | (effects (font (size 1.016 1.016) (thickness 0.2032))) 9 | ) 10 | (fp_line (start -0.8509 -0.70104) (end 0.8509 -0.70104) (layer F.SilkS) (width 0.22098)) 11 | (fp_line (start -0.8509 -1.45034) (end -0.59944 -1.45034) (layer F.SilkS) (width 0.22098)) 12 | (fp_line (start 0.8509 -1.45034) (end 0.59944 -1.45034) (layer F.SilkS) (width 0.22098)) 13 | (fp_line (start 0.8509 1.45034) (end 0.59944 1.45034) (layer F.SilkS) (width 0.22098)) 14 | (fp_line (start -0.8509 1.45034) (end -0.59944 1.45034) (layer F.SilkS) (width 0.22098)) 15 | (fp_line (start -0.8509 1.45034) (end -0.8509 -1.45034) (layer F.SilkS) (width 0.22098)) 16 | (fp_line (start 0.8509 1.45034) (end 0.8509 -1.45034) (layer F.SilkS) (width 0.22098)) 17 | (pad 2 smd rect (at 0 -1.7526 270) (size 1.00076 0.8509) (layers F.Cu F.Paste F.Mask)) 18 | (pad 1 smd rect (at 0 1.74752 270) (size 1.00076 0.8509) (layers F.Cu F.Paste F.Mask)) 19 | (model SOD123.wrl 20 | (at (xyz 0 0 -0.003)) 21 | (scale (xyz 0.393701 0.393701 0.393701)) 22 | (rotate (xyz 0 0 90)) 23 | ) 24 | ) 25 | -------------------------------------------------------------------------------- /PCB/prettylib/SOT-23-5.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOT-23-5 (layer F.Cu) (tedit 56EAD184) 2 | (descr "5-pin SOT23 package") 3 | (tags SOT-23-5) 4 | (attr smd) 5 | (fp_text reference REF** (at -0.05 -2.55) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at -0.05 2.35) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -0.3 -1.7) (end -0.2 -1.7) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 0.25 -1.45) (end -0.25 -1.45) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 0.25 1.45) (end 0.25 -1.45) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -0.25 1.45) (end 0.25 1.45) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -0.25 -1.45) (end -0.25 1.45) (layer F.SilkS) (width 0.15)) 16 | (pad 1 smd rect (at -1.1 -0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 17 | (pad 2 smd rect (at -1.1 0) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 18 | (pad 3 smd rect (at -1.1 0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 19 | (pad 4 smd rect (at 1.1 0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 20 | (pad 5 smd rect (at 1.1 -0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 21 | (model TO_SOT_Packages_SMD.3dshapes/SOT-23-5.wrl 22 | (at (xyz 0 0 0)) 23 | (scale (xyz 1 1 1)) 24 | (rotate (xyz 0 0 0)) 25 | ) 26 | ) 27 | -------------------------------------------------------------------------------- /PCB/prettylib/SOT-23-6.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOT-23-6 (layer F.Cu) (tedit 56F3ACEC) 2 | (descr "5-pin SOT23 package") 3 | (tags SOT-23-6) 4 | (attr smd) 5 | (fp_text reference REF** (at -0.05 -2.55) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at -0.05 2.35) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -0.3 -1.7) (end -0.2 -1.7) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 0.25 -1.45) (end -0.25 -1.45) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 0.25 1.45) (end 0.25 -1.45) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -0.25 1.45) (end 0.25 1.45) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -0.25 -1.45) (end -0.25 1.45) (layer F.SilkS) (width 0.15)) 16 | (pad 1 smd rect (at -1.1 -0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 17 | (pad 2 smd rect (at -1.1 0) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 18 | (pad 3 smd rect (at -1.1 0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 19 | (pad 4 smd rect (at 1.1 0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 20 | (pad 5 smd rect (at 1.1 0) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 21 | (pad 6 smd rect (at 1.1 -0.95) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) 22 | (model TO_SOT_Packages_SMD.3dshapes/SOT-23-5.wrl 23 | (at (xyz 0 0 0)) 24 | (scale (xyz 1 1 1)) 25 | (rotate (xyz 0 0 0)) 26 | ) 27 | ) 28 | -------------------------------------------------------------------------------- /PCB/prettylib/SOT-23.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOT-23 (layer F.Cu) (tedit 56DED7D1) 2 | (descr "SOT-23, Handsoldering") 3 | (tags SOT-23) 4 | (attr smd) 5 | (fp_text reference REF** (at 0.0254 -2.794) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at 0 2.8956) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -1.49982 0.0508) (end -1.49982 -0.65024) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.49982 -0.65024) (end -1.2509 -0.65024) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 1.29916 -0.65024) (end 1.49982 -0.65024) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 1.49982 -0.65024) (end 1.49982 0.0508) (layer F.SilkS) (width 0.15)) 15 | (pad 1 smd rect (at -0.95 1.20114) (size 0.8001 1.2) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 0.95 1.20114) (size 0.8001 1.2) (layers F.Cu F.Paste F.Mask)) 17 | (pad 3 smd rect (at 0 -1.20114) (size 0.8001 1.2) (layers F.Cu F.Paste F.Mask)) 18 | (model TO_SOT_Packages_SMD.3dshapes/SOT-23_Handsoldering.wrl 19 | (at (xyz 0 0 0)) 20 | (scale (xyz 1 1 1)) 21 | (rotate (xyz 0 0 0)) 22 | ) 23 | ) 24 | -------------------------------------------------------------------------------- /PCB/prettylib/SOT457.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SOT457 (layer F.Cu) (tedit 56DED7F9) 2 | (fp_text reference >NAME (at -0.1524 -2.413) (layer F.SilkS) 3 | (effects (font (size 0.9 0.9) (thickness 0.1524))) 4 | ) 5 | (fp_text value REF** (at 0.3048 2.5146) (layer F.SilkS) 6 | (effects (font (size 0.762 0.889) (thickness 0.1905))) 7 | ) 8 | (fp_circle (center -0.9906 0.2794) (end -1.016 0.4572) (layer F.SilkS) (width 0.125)) 9 | (fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.SilkS) (width 0.125)) 10 | (fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.SilkS) (width 0.125)) 11 | (fp_line (start 1.45 0.75) (end -1.45 0.75) (layer F.SilkS) (width 0.125)) 12 | (fp_line (start -1.45 0.75) (end -1.45 -0.75) (layer F.SilkS) (width 0.125)) 13 | (fp_circle (center -1.7272 0.9144) (end -1.7272 0.9644) (layer F.SilkS) (width 0.125)) 14 | (pad 1 smd rect (at -0.95 1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 15 | (pad 2 smd rect (at 0 1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 16 | (pad 3 smd rect (at 0.95 1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 17 | (pad 4 smd rect (at 0.95 -1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 18 | (pad 5 smd rect (at 0 -1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 19 | (pad 6 smd rect (at -0.95 -1.2) (size 0.55 0.8) (layers F.Cu F.Paste F.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /PCB/prettylib/SSOP-24.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SSOP-24 (layer F.Cu) (tedit 56DEDA74) 2 | (descr "24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf)") 3 | (tags "SSOP 0.65") 4 | (attr smd) 5 | (fp_text reference REF** (at 0 -5.25) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at 0 5.25) (layer F.SilkS) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -1.636176 -3.6322) (end -1.483776 -3.3274) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -2.375 4.325) (end -2.375 -4.325) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -2.375 -4.325) (end 2.375 -4.325) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -2.375 4.325) (end 2.375 4.325) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start 2.375 4.325) (end 2.375 -4.325) (layer F.SilkS) (width 0.15)) 16 | (fp_circle (center -2.7432 -4.699) (end -2.667 -4.5466) (layer F.SilkS) (width 0.15)) 17 | (pad 1 smd rect (at -3.6 -3.575) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at -3.6 -2.925) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at -3.6 -2.275) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 20 | (pad 4 smd rect (at -3.6 -1.625) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 21 | (pad 5 smd rect (at -3.6 -0.975) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 22 | (pad 6 smd rect (at -3.6 -0.325) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 23 | (pad 7 smd rect (at -3.6 0.325) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 24 | (pad 8 smd rect (at -3.6 0.975) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 25 | (pad 9 smd rect (at -3.6 1.625) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 26 | (pad 10 smd rect (at -3.6 2.275) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 27 | (pad 11 smd rect (at -3.6 2.925) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 28 | (pad 12 smd rect (at -3.6 3.575) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 29 | (pad 13 smd rect (at 3.6 3.575) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 30 | (pad 14 smd rect (at 3.6 2.925) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 31 | (pad 15 smd rect (at 3.6 2.275) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 32 | (pad 16 smd rect (at 3.6 1.625) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 33 | (pad 17 smd rect (at 3.6 0.975) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 34 | (pad 18 smd rect (at 3.6 0.325) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 35 | (pad 19 smd rect (at 3.6 -0.325) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 36 | (pad 20 smd rect (at 3.6 -0.975) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 37 | (pad 21 smd rect (at 3.6 -1.625) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 38 | (pad 22 smd rect (at 3.6 -2.275) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 39 | (pad 23 smd rect (at 3.6 -2.925) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 40 | (pad 24 smd rect (at 3.6 -3.575) (size 1.75 0.45) (layers F.Cu F.Paste F.Mask)) 41 | (model Housings_SSOP.3dshapes/SSOP-24_5.3x8.2mm_Pitch0.65mm.wrl 42 | (at (xyz 0 0 0)) 43 | (scale (xyz 1 1 1)) 44 | (rotate (xyz 0 0 0)) 45 | ) 46 | ) 47 | -------------------------------------------------------------------------------- /PCB/prettylib/TACT_5.2x5.2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TACT_5.2x5.2 (layer F.Cu) (tedit 57152511) 2 | (attr smd) 3 | (fp_text reference >NAME (at 5.1 0 90) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.2))) 5 | ) 6 | (fp_text value >VALUE (at 0 3.40106) (layer F.SilkS) hide 7 | (effects (font (size 1 1) (thickness 0.2))) 8 | ) 9 | (fp_circle (center 0 0) (end 0 1) (layer Eco1.User) (width 0.15)) 10 | (fp_line (start 4.2 2.6) (end -4.2 2.6) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start -4.2 2.6) (end -4.2 -2.6) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start -4.2 -2.6) (end 4.2 -2.6) (layer F.SilkS) (width 0.127)) 13 | (fp_line (start 4.2 -2.6) (end 4.2 2.6) (layer F.SilkS) (width 0.127)) 14 | (pad 1 smd rect (at -3.1 -1.85) (size 1.8 1.1) (layers F.Cu F.Paste F.Mask)) 15 | (pad 3 smd rect (at -3.1 1.85) (size 1.8 1.1) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 3.1 -1.85) (size 1.8 1.1) (layers F.Cu F.Paste F.Mask)) 17 | (pad 4 smd rect (at 3.1 1.85) (size 1.8 1.1) (layers F.Cu F.Paste F.Mask)) 18 | ) 19 | -------------------------------------------------------------------------------- /PCB/prettylib/TC2030_BIG.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TC2030_BIG (layer F.Cu) (tedit 4FBCB217) 2 | (descr "Tag-Connect TC2030 footprint by carloscuev@gmail.com") 3 | (tags "Tag-Connect TC2030") 4 | (clearance 0.127) 5 | (attr virtual) 6 | (fp_text reference TC2030 (at 0 -5.20192) (layer F.SilkS) 7 | (effects (font (size 0.75692 0.75692) (thickness 0.127))) 8 | ) 9 | (fp_text value VAL (at 0 5.334) (layer F.SilkS) hide 10 | (effects (font (size 0.75692 0.75692) (thickness 0.127))) 11 | ) 12 | (fp_line (start 1.4097 -4.59486) (end 1.4097 -3.3782) (layer B.SilkS) (width 0.127)) 13 | (fp_line (start -0.13716 -4.59486) (end -0.13716 -3.3782) (layer B.SilkS) (width 0.127)) 14 | (fp_line (start -1.7653 -4.59486) (end -1.7653 -3.3782) (layer B.SilkS) (width 0.127)) 15 | (fp_line (start -3.3147 -4.59486) (end -3.3147 -3.3782) (layer B.SilkS) (width 0.127)) 16 | (fp_line (start 1.4097 4.59486) (end 1.4097 3.3782) (layer B.SilkS) (width 0.127)) 17 | (fp_line (start -0.13716 4.59486) (end -0.13716 3.3782) (layer B.SilkS) (width 0.127)) 18 | (fp_line (start -1.6383 4.59486) (end -1.6383 3.3782) (layer B.SilkS) (width 0.127)) 19 | (fp_line (start -3.1877 4.59486) (end -3.1877 3.3782) (layer B.SilkS) (width 0.127)) 20 | (fp_line (start 2.6035 1.905) (end -2.0828 1.905) (layer F.SilkS) (width 0.127)) 21 | (fp_line (start 2.6035 -1.905) (end -2.0828 -1.905) (layer F.SilkS) (width 0.127)) 22 | (fp_line (start -3.2639 0.7239) (end -2.0828 1.905) (layer F.SilkS) (width 0.127)) 23 | (fp_line (start -3.2639 -0.7239) (end -2.0828 -1.905) (layer F.SilkS) (width 0.127)) 24 | (fp_arc (start -2.54 0) (end -3.2639 0.7239) (angle 90) (layer F.SilkS) (width 0.127)) 25 | (fp_line (start 3.556 3.7338) (end 3.556 3.048) (layer F.SilkS) (width 0.127)) 26 | (fp_line (start 3.556 3.7338) (end -3.556 3.7338) (layer F.SilkS) (width 0.127)) 27 | (fp_line (start -3.556 3.7338) (end -3.556 3.048) (layer F.SilkS) (width 0.127)) 28 | (fp_line (start 3.556 -3.7338) (end 3.556 -3.048) (layer F.SilkS) (width 0.127)) 29 | (fp_line (start -3.556 -3.7338) (end -3.556 -3.048) (layer F.SilkS) (width 0.127)) 30 | (fp_line (start 3.556 -3.7338) (end -3.556 -3.7338) (layer F.SilkS) (width 0.127)) 31 | (fp_line (start 3.556 -0.9525) (end 3.556 0.9525) (layer F.SilkS) (width 0.127)) 32 | (fp_arc (start 2.6035 0.9525) (end 3.556 0.9525) (angle 90) (layer F.SilkS) (width 0.127)) 33 | (fp_arc (start 2.6035 -0.9525) (end 2.6035 -1.905) (angle 90) (layer F.SilkS) (width 0.127)) 34 | (fp_line (start 4.953 -1.524) (end 4.953 1.524) (layer F.SilkS) (width 0.127)) 35 | (fp_line (start -4.953 1.524) (end -4.953 -1.524) (layer F.SilkS) (width 0.127)) 36 | (fp_line (start -3.429 -3.048) (end 3.429 -3.048) (layer F.SilkS) (width 0.127)) 37 | (fp_line (start -3.429 3.048) (end 3.429 3.048) (layer F.SilkS) (width 0.127)) 38 | (fp_arc (start 3.429 -1.524) (end 3.429 -3.048) (angle 90) (layer F.SilkS) (width 0.127)) 39 | (fp_arc (start 3.429 1.524) (end 4.953 1.524) (angle 90) (layer F.SilkS) (width 0.127)) 40 | (fp_arc (start -3.429 1.524) (end -3.429 3.048) (angle 90) (layer F.SilkS) (width 0.127)) 41 | (fp_arc (start -3.429 -1.524) (end -4.953 -1.524) (angle 90) (layer F.SilkS) (width 0.127)) 42 | (fp_line (start -3.3147 -4.59994) (end -1.7653 -4.59994) (layer B.SilkS) (width 0.127)) 43 | (fp_line (start -0.13716 -4.59994) (end 1.4097 -4.59994) (layer B.SilkS) (width 0.127)) 44 | (fp_line (start 1.4097 4.59486) (end -0.13716 4.59486) (layer B.SilkS) (width 0.127)) 45 | (fp_line (start -1.6383 4.59486) (end -3.1877 4.59486) (layer B.SilkS) (width 0.127)) 46 | (pad 1 connect circle (at -1.27 0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 47 | (pad 2 connect circle (at -1.27 -0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 48 | (pad 3 connect circle (at 0 0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 49 | (pad 4 connect circle (at 0 -0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 50 | (pad 5 connect circle (at 1.27 0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 51 | (pad 6 connect circle (at 1.27 -0.635) (size 0.78486 0.78486) (layers F.Cu F.Mask)) 52 | (pad "" np_thru_hole circle (at -2.54 0) (size 0.98806 0.98806) (drill 0.98806) (layers *.Cu *.Mask F.SilkS)) 53 | (pad "" np_thru_hole circle (at 2.54 -1.016) (size 0.98552 0.98552) (drill 0.98552) (layers *.Cu *.Mask F.SilkS)) 54 | (pad "" np_thru_hole circle (at 2.54 1.016) (size 0.98552 0.98552) (drill 0.98552) (layers *.Cu *.Mask F.SilkS)) 55 | (pad "" np_thru_hole circle (at -2.54 -2.54) (size 2.37236 2.37236) (drill 2.37236) (layers *.Cu *.Mask F.SilkS)) 56 | (pad "" np_thru_hole circle (at 0.635 -2.54) (size 2.36982 2.36982) (drill 2.36982) (layers *.Cu *.Mask F.SilkS)) 57 | (pad "" np_thru_hole circle (at -2.413 2.54) (size 2.36982 2.36982) (drill 2.36982) (layers *.Cu *.Mask F.SilkS)) 58 | (pad "" np_thru_hole circle (at 0.635 2.54) (size 2.36982 2.36982) (drill 2.36982) (layers *.Cu *.Mask F.SilkS)) 59 | ) 60 | -------------------------------------------------------------------------------- /PCB/prettylib/TQFP-64.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TQFP-64 (layer F.Cu) (tedit 56DED832) 2 | (descr "64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)") 3 | (tags "QFP 0.8") 4 | (attr smd) 5 | (fp_text reference REF** (at 0 -9.45) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at 0 0) (layer F.SilkS) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -6.604 -5.334) (end -5.334 -6.604) (layer F.SilkS) (width 0.15)) 12 | (fp_circle (center -5.0165 -5.08) (end -5.588 -5.461) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -6.604 -5.334) (end -6.604 6.604) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 6.604 -6.604) (end 6.604 6.604) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -5.334 -6.604) (end 6.604 -6.604) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -6.604 6.604) (end 6.604 6.604) (layer F.SilkS) (width 0.15)) 17 | (fp_circle (center -7.747 -7.62) (end -8.001 -7.747) (layer F.SilkS) (width 0.15)) 18 | (pad 1 smd rect (at -7.7 -6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 19 | (pad 2 smd rect (at -7.7 -5.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 20 | (pad 3 smd rect (at -7.7 -4.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 21 | (pad 4 smd rect (at -7.7 -3.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 22 | (pad 5 smd rect (at -7.7 -2.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 23 | (pad 6 smd rect (at -7.7 -2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 24 | (pad 7 smd rect (at -7.7 -1.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 25 | (pad 8 smd rect (at -7.7 -0.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 26 | (pad 9 smd rect (at -7.7 0.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 27 | (pad 10 smd rect (at -7.7 1.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 28 | (pad 11 smd rect (at -7.7 2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 29 | (pad 12 smd rect (at -7.7 2.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 30 | (pad 13 smd rect (at -7.7 3.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 31 | (pad 14 smd rect (at -7.7 4.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 32 | (pad 15 smd rect (at -7.7 5.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 33 | (pad 16 smd rect (at -7.7 6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 34 | (pad 17 smd rect (at -6 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 35 | (pad 18 smd rect (at -5.2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 36 | (pad 19 smd rect (at -4.4 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 37 | (pad 20 smd rect (at -3.6 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 38 | (pad 21 smd rect (at -2.8 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 39 | (pad 22 smd rect (at -2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 40 | (pad 23 smd rect (at -1.2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 41 | (pad 24 smd rect (at -0.4 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 42 | (pad 25 smd rect (at 0.4 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 43 | (pad 26 smd rect (at 1.2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 44 | (pad 27 smd rect (at 2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 45 | (pad 28 smd rect (at 2.8 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 46 | (pad 29 smd rect (at 3.6 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 47 | (pad 30 smd rect (at 4.4 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 48 | (pad 31 smd rect (at 5.2 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 49 | (pad 32 smd rect (at 6 7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 50 | (pad 33 smd rect (at 7.7 6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 51 | (pad 34 smd rect (at 7.7 5.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 52 | (pad 35 smd rect (at 7.7 4.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 53 | (pad 36 smd rect (at 7.7 3.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 54 | (pad 37 smd rect (at 7.7 2.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 55 | (pad 38 smd rect (at 7.7 2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 56 | (pad 39 smd rect (at 7.7 1.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 57 | (pad 40 smd rect (at 7.7 0.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 58 | (pad 41 smd rect (at 7.7 -0.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 59 | (pad 42 smd rect (at 7.7 -1.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 60 | (pad 43 smd rect (at 7.7 -2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 61 | (pad 44 smd rect (at 7.7 -2.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 62 | (pad 45 smd rect (at 7.7 -3.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 63 | (pad 46 smd rect (at 7.7 -4.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 64 | (pad 47 smd rect (at 7.7 -5.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 65 | (pad 48 smd rect (at 7.7 -6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 66 | (pad 49 smd rect (at 6 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 67 | (pad 50 smd rect (at 5.2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 68 | (pad 51 smd rect (at 4.4 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 69 | (pad 52 smd rect (at 3.6 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 70 | (pad 53 smd rect (at 2.8 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 71 | (pad 54 smd rect (at 2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 72 | (pad 55 smd rect (at 1.2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 73 | (pad 56 smd rect (at 0.4 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 74 | (pad 57 smd rect (at -0.4 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 75 | (pad 58 smd rect (at -1.2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 76 | (pad 59 smd rect (at -2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 77 | (pad 60 smd rect (at -2.8 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 78 | (pad 61 smd rect (at -3.6 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 79 | (pad 62 smd rect (at -4.4 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 80 | (pad 63 smd rect (at -5.2 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 81 | (pad 64 smd rect (at -6 -7.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)) 82 | (model Housings_QFP.3dshapes/TQFP-64_14x14mm_Pitch0.8mm.wrl 83 | (at (xyz 0 0 0)) 84 | (scale (xyz 1 1 1)) 85 | (rotate (xyz 0 0 0)) 86 | ) 87 | ) 88 | -------------------------------------------------------------------------------- /PCB/prettylib/TQFP44.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TQFP44 (layer F.Cu) (tedit 526452A2) 2 | (attr smd) 3 | (fp_text reference IC1 (at 7.808 3.1801 270) (layer F.SilkS) hide 4 | (effects (font (size 1 1) (thickness 0.1588))) 5 | ) 6 | (fp_text value ATMEGA32U4 (at 0 1.904999) (layer F.SilkS) 7 | (effects (font (size 0.9 0.9) (thickness 0.2032))) 8 | ) 9 | (fp_line (start 5.0038 -5.0038) (end 5.0038 5.0038) (layer F.SilkS) (width 0.3048)) 10 | (fp_line (start 5.0038 5.0038) (end -5.0038 5.0038) (layer F.SilkS) (width 0.3048)) 11 | (fp_line (start -5.0038 -4.5212) (end -5.0038 5.0038) (layer F.SilkS) (width 0.3048)) 12 | (fp_line (start -4.5212 -5.0038) (end 5.0038 -5.0038) (layer F.SilkS) (width 0.3048)) 13 | (fp_line (start -5.0038 -4.5212) (end -4.5212 -5.0038) (layer F.SilkS) (width 0.3048)) 14 | (fp_circle (center -3.81 -3.81) (end -3.81 -3.175) (layer F.SilkS) (width 0.2032)) 15 | (pad 39 smd oval (at 0 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 16 | (pad 40 smd oval (at -0.8001 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 17 | (pad 41 smd oval (at -1.6002 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 18 | (pad 42 smd oval (at -2.4003 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 19 | (pad 43 smd oval (at -3.2004 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 20 | (pad 44 smd oval (at -4.0005 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 21 | (pad 38 smd oval (at 0.8001 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 22 | (pad 37 smd oval (at 1.6002 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 23 | (pad 36 smd oval (at 2.4003 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 24 | (pad 35 smd oval (at 3.2004 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 25 | (pad 34 smd oval (at 4.0005 -5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 26 | (pad 17 smd oval (at 0 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 27 | (pad 16 smd oval (at -0.8001 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 28 | (pad 15 smd oval (at -1.6002 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 29 | (pad 14 smd oval (at -2.4003 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 30 | (pad 13 smd oval (at -3.2004 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 31 | (pad 12 smd oval (at -4.0005 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 32 | (pad 18 smd oval (at 0.8001 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 33 | (pad 19 smd oval (at 1.6002 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 34 | (pad 20 smd oval (at 2.4003 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 35 | (pad 21 smd oval (at 3.2004 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 36 | (pad 22 smd oval (at 4.0005 5.715) (size 0.4064 1.89992) (layers F.Cu F.Paste F.Mask)) 37 | (pad 6 smd oval (at -5.715 0) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 38 | (pad 28 smd oval (at 5.715 0) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 39 | (pad 7 smd oval (at -5.715 0.8001) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 40 | (pad 27 smd oval (at 5.715 0.8001) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 41 | (pad 26 smd oval (at 5.715 1.6002) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 42 | (pad 8 smd oval (at -5.715 1.6002) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 43 | (pad 9 smd oval (at -5.715 2.4003) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 44 | (pad 25 smd oval (at 5.715 2.4003) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 45 | (pad 24 smd oval (at 5.715 3.2004) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 46 | (pad 10 smd oval (at -5.715 3.2004) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 47 | (pad 11 smd oval (at -5.715 4.0005) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 48 | (pad 23 smd oval (at 5.715 4.0005) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 49 | (pad 29 smd oval (at 5.715 -0.8001) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 50 | (pad 5 smd oval (at -5.715 -0.8001) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 51 | (pad 4 smd oval (at -5.715 -1.6002) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 52 | (pad 30 smd oval (at 5.715 -1.6002) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 53 | (pad 31 smd oval (at 5.715 -2.4003) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 54 | (pad 3 smd oval (at -5.715 -2.4003) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 55 | (pad 2 smd oval (at -5.715 -3.2004) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 56 | (pad 32 smd oval (at 5.715 -3.2004) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 57 | (pad 33 smd oval (at 5.715 -4.0005) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 58 | (pad 1 smd oval (at -5.715 -4.0005) (size 1.89992 0.4064) (layers F.Cu F.Paste F.Mask)) 59 | (model Housings_QFP.3dshapes/LQFP-44_10x10mm_Pitch0.8mm.wrl 60 | (at (xyz 0 0 0)) 61 | (scale (xyz 1 1 1)) 62 | (rotate (xyz 0 0 0)) 63 | ) 64 | ) 65 | -------------------------------------------------------------------------------- /PCB/prettylib/TS65-LOGO.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TS65-LOGO (layer F.Cu) (tedit 0) 2 | (fp_text reference G*** (at 0 0) (layer F.SilkS) hide 3 | (effects (font (thickness 0.3))) 4 | ) 5 | (fp_text value LOGO (at 0.75 0) (layer F.SilkS) hide 6 | (effects (font (thickness 0.3))) 7 | ) 8 | (fp_poly (pts (xy -4.20624 -2.39268) (xy -4.800535 -1.79832) (xy -5.69976 -1.79832) (xy -5.69976 2.9972) 9 | (xy -6.89864 2.9972) (xy -6.89864 -1.79832) (xy -7.797866 -1.79832) (xy -8.39216 -2.39268) 10 | (xy -8.986455 -2.98704) (xy -3.611946 -2.98704) (xy -4.20624 -2.39268)) (layer F.Cu) (width 0.01)) 11 | (fp_poly (pts (xy 0.584134 -2.98704) (xy -0.01016 -2.39268) (xy -0.604455 -1.79832) (xy -2.402968 -1.79832) 12 | (xy -2.705165 -1.495998) (xy -3.007362 -1.193675) (xy -2.705039 -0.891478) (xy -2.402716 -0.58928) 13 | (xy -0.59944 -0.58928) (xy -0.59944 2.9972) (xy -5.09016 2.9972) (xy -5.09016 1.80848) 14 | (xy -1.79832 1.80848) (xy -1.79832 0.59944) (xy -2.992185 0.59944) (xy -4.196081 -0.604584) 15 | (xy -4.19608 -1.198945) (xy -4.19608 -1.793305) (xy -3.002216 -2.987041) (xy -1.209041 -2.987041) 16 | (xy 0.584134 -2.98704)) (layer F.Cu) (width 0.01)) 17 | (fp_poly (pts (xy 3.59664 -2.98704) (xy 3.59664 -1.79832) (xy 1.19888 -1.79832) (xy 1.19888 -0.58928) 18 | (xy 3.59664 -0.58928) (xy 3.59664 1.803464) (xy 2.999707 2.400332) (xy 2.402775 2.9972) 19 | (xy 0.01016 2.9972) (xy 0.01016 0.59944) (xy 1.19888 0.59944) (xy 1.19888 1.80848) 20 | (xy 1.803275 1.80848) (xy 2.105597 1.506283) (xy 2.40792 1.204087) (xy 2.40792 0.59944) 21 | (xy 1.19888 0.59944) (xy 0.01016 0.59944) (xy 0.01016 -1.793305) (xy 1.204024 -2.987041) 22 | (xy 2.400332 -2.987041) (xy 3.59664 -2.98704)) (layer F.Cu) (width 0.01)) 23 | (fp_poly (pts (xy 8.39216 -2.39268) (xy 7.797865 -1.79832) (xy 5.39496 -1.79832) (xy 5.39496 -0.58928) 24 | (xy 6.598984 -0.58928) (xy 7.79272 0.604584) (xy 7.79272 1.803464) (xy 7.195787 2.400332) 25 | (xy 6.598855 2.9972) (xy 3.022665 2.9972) (xy 3.61696 2.40284) (xy 4.211254 1.80848) 26 | (xy 6.604 1.80848) (xy 6.604 0.59944) (xy 4.20624 0.59944) (xy 4.20624 -2.98704) 27 | (xy 8.986454 -2.98704) (xy 8.39216 -2.39268)) (layer F.Cu) (width 0.01)) 28 | (fp_poly (pts (xy 3.830320 -1.564640) (xy 1.432560 -1.564640) (xy 1.432560 -0.833120) (xy 3.830320 -0.833120) (xy 3.830320 0.497840) (xy 3.830378 0.660521) (xy 3.830547 0.817499) (xy 3.830822 0.967585) 29 | (xy 3.831194 1.109589) (xy 3.831657 1.242325) (xy 3.832204 1.364602) (xy 3.832828 1.475233) (xy 3.833522 1.573030) (xy 3.834279 1.656804) (xy 3.835092 1.725366) (xy 3.835955 1.777528) 30 | (xy 3.836860 1.812102) (xy 3.837800 1.827899) (xy 3.838086 1.828800) (xy 3.847397 1.821938) (xy 3.868568 1.802868) (xy 3.899202 1.773856) (xy 3.936900 1.737174) (xy 3.977639 1.696720) 31 | (xy 4.109426 1.564640) (xy 6.360160 1.564640) (xy 6.360160 0.843280) (xy 3.962400 0.843280) (xy 3.962400 -3.230880) (xy 9.565593 -3.230880) (xy 8.732519 -2.397760) (xy 7.899446 -1.564640) 32 | (xy 5.638800 -1.564640) (xy 5.638800 -0.833120) (xy 6.164608 -0.833121) (xy 6.690417 -0.833121) (xy 7.363488 -0.159992) (xy 8.036560 0.513136) (xy 8.036559 1.204017) (xy 8.036559 1.894897) 33 | (xy 7.363431 2.567968) (xy 6.690303 3.241040) (xy -0.233839 3.241040) (xy -0.231367 0.843280) (xy 1.432560 0.843280) (xy 1.432560 1.564640) (xy 1.712129 1.564640) (xy 1.938104 1.338497) 34 | (xy 2.164080 1.112354) (xy 2.164080 0.843280) (xy 1.432560 0.843280) (xy -0.231367 0.843280) (xy -0.231220 0.701204) (xy -0.228600 -1.838631) (xy -0.335280 -1.732748) (xy -0.378935 -1.690019) 35 | (xy -0.412673 -1.659022) (xy -0.440567 -1.636752) (xy -0.466691 -1.620205) (xy -0.495116 -1.606374) (xy -0.520965 -1.595753) (xy -0.599969 -1.564641) (xy -1.450711 -1.564641) (xy -2.301452 -1.564640) 36 | (xy -2.484121 -1.381760) (xy -2.666789 -1.198881) (xy -2.484120 -1.016001) (xy -2.301452 -0.833120) (xy -0.365760 -0.833120) (xy -0.365760 3.241040) (xy -5.334000 3.241040) (xy -5.334000 1.564640) 37 | (xy -2.032000 1.564640) (xy -2.032000 0.843280) (xy -2.562889 0.843280) (xy -3.093778 0.843279) (xy -3.766998 0.170002) (xy -4.440219 -0.503276) (xy -4.437530 -1.153338) (xy -4.436924 -1.266901) 38 | (xy -4.436085 -1.374785) (xy -4.435044 -1.475217) (xy -4.433831 -1.566425) (xy -4.432478 -1.646637) (xy -4.431016 -1.714081) (xy -4.429475 -1.766985) (xy -4.427885 -1.803577) (xy -4.426279 -1.822084) 39 | (xy -4.425860 -1.823720) (xy -4.429837 -1.823260) (xy -4.446152 -1.810167) (xy -4.472828 -1.786228) (xy -4.507884 -1.753228) (xy -4.549343 -1.712955) (xy -4.558071 -1.704340) (xy -4.699264 -1.564640) 40 | (xy -5.466080 -1.564640) (xy -5.466080 3.241040) (xy -7.132320 3.241040) (xy -7.132320 -1.564640) (xy -7.899447 -1.564640) (xy -8.732521 -2.397760) (xy -9.565594 -3.230880) (xy 3.830320 -3.230880) 41 | (xy 3.830320 -1.564640) )(layer F.Mask) (width 0.010000) 42 | ) 43 | ) 44 | -------------------------------------------------------------------------------- /PCB/prettylib/TSSOP-16.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TSSOP-16 (layer F.Cu) (tedit 56DED843) 2 | (descr "16-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf)") 3 | (tags "SSOP 0.65") 4 | (attr smd) 5 | (fp_text reference REF** (at 0.127 -3.556) (layer F.SilkS) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value >NAME (at -0.1016 3.683) (layer F.SilkS) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -2.2225 -3.175) (end -2.3495 -3.302) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -1.905 -2.794) (end -1.905 2.794) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 1.905 -2.8) (end 1.905 2.8) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -1.905 -2.8) (end 1.905 -2.8) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -1.905 2.8) (end 1.905 2.8) (layer F.SilkS) (width 0.15)) 16 | (fp_circle (center -1.3335 -2.2225) (end -1.4605 -2.3495) (layer F.SilkS) (width 0.15)) 17 | (pad 1 smd rect (at -2.95 -2.275) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at -2.95 -1.625) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at -2.95 -0.975) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 20 | (pad 4 smd rect (at -2.95 -0.325) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 21 | (pad 5 smd rect (at -2.95 0.325) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 22 | (pad 6 smd rect (at -2.95 0.975) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 23 | (pad 7 smd rect (at -2.95 1.625) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 24 | (pad 8 smd rect (at -2.95 2.275) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 25 | (pad 9 smd rect (at 2.95 2.275) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 26 | (pad 10 smd rect (at 2.95 1.625) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 27 | (pad 11 smd rect (at 2.95 0.975) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 28 | (pad 12 smd rect (at 2.95 0.325) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 29 | (pad 13 smd rect (at 2.95 -0.325) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 30 | (pad 14 smd rect (at 2.95 -0.975) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 31 | (pad 15 smd rect (at 2.95 -1.625) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 32 | (pad 16 smd rect (at 2.95 -2.275) (size 1.5 0.45) (layers F.Cu F.Paste F.Mask)) 33 | (model Housings_SSOP.3dshapes/TSSOP-16_4.4x5mm_Pitch0.65mm.wrl 34 | (at (xyz 0 0 0)) 35 | (scale (xyz 1 1 1)) 36 | (rotate (xyz 0 0 0)) 37 | ) 38 | ) 39 | -------------------------------------------------------------------------------- /PCB/prettylib/USB3_AFEMALE_MOD.kicad_mod: -------------------------------------------------------------------------------- 1 | (module USB3_AFEMALE_MOD (layer F.Cu) (tedit 57151E03) 2 | (descr USB1070) 3 | (tags USB1070) 4 | (attr smd) 5 | (fp_text reference REF** (at 0 -12.446) (layer F.SilkS) 6 | (effects (font (thickness 0.3048))) 7 | ) 8 | (fp_text value >NAME (at 0.0508 5.2324) (layer F.SilkS) hide 9 | (effects (font (thickness 0.3048))) 10 | ) 11 | (fp_text user "Mating Distance" (at -2.032 7.112) (layer Cmts.User) 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | ) 14 | (fp_line (start -6.731 -11) (end 6.731 -11) (layer Cmts.User) (width 0.15)) 15 | (fp_line (start -7.25 3.5) (end 7.25 3.5) (layer Cmts.User) (width 0.15)) 16 | (fp_line (start 7.25 3.25) (end 7.25 3.5) (layer Cmts.User) (width 0.15)) 17 | (fp_line (start 6.731 3.25) (end 7.25 3.25) (layer Cmts.User) (width 0.15)) 18 | (fp_line (start 6.731 -11) (end 6.731 3.25) (layer Cmts.User) (width 0.15)) 19 | (fp_line (start -6.731 3.25) (end -7.25 3.25) (layer Cmts.User) (width 0.15)) 20 | (fp_line (start -7.25 3.5) (end -7.25 3.25) (layer Cmts.User) (width 0.15)) 21 | (fp_line (start -6.731 -11) (end -6.731 3.25) (layer Cmts.User) (width 0.15)) 22 | (fp_line (start 6.731 -8.509) (end -6.731 -8.509) (layer Dwgs.User) (width 0.1016)) 23 | (fp_line (start -6.731 -8.509) (end -6.731 0) (layer Dwgs.User) (width 0.1016)) 24 | (fp_line (start 6.731 0) (end 6.731 -8.509) (layer Dwgs.User) (width 0.1016)) 25 | (fp_line (start -8 6.2) (end 8 6.2) (layer Cmts.User) (width 0.15)) 26 | (fp_line (start -9 -12) (end 9 -12) (layer Eco1.User) (width 0.15)) 27 | (fp_line (start -9 4) (end 9 4) (layer Eco1.User) (width 0.15)) 28 | (fp_line (start -9 -12) (end -9 4) (layer Eco1.User) (width 0.15)) 29 | (fp_line (start 9 -12) (end 9 4) (layer Eco1.User) (width 0.15)) 30 | (pad 10 thru_hole oval (at 7.9 -9) (size 1.8 3.5) (drill oval 0.6 2.2) (layers *.Cu *.Mask F.Paste F.SilkS)) 31 | (pad 10 thru_hole oval (at -7.9 -9) (size 1.8 3.5) (drill oval 0.6 2.2) (layers *.Cu *.Mask F.Paste F.SilkS)) 32 | (pad 7 smd rect (at 0 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 33 | (pad 3 smd rect (at 1 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 34 | (pad 6 smd rect (at 2 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 35 | (pad 4 smd rect (at 3 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 36 | (pad 5 smd rect (at 4 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 37 | (pad 2 smd rect (at -1 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 38 | (pad 8 smd rect (at -2 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 39 | (pad 1 smd rect (at -3 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 40 | (pad 9 smd rect (at -4 -9.9) (size 0.7 1.8) (layers F.Cu F.Paste F.Mask)) 41 | (pad 10 smd rect (at 7.67 -5) (size 1.64 2.2) (layers F.Cu F.Paste F.Mask)) 42 | (pad 10 smd rect (at -7.67 -5) (size 1.64 2.2) (layers F.Cu F.Paste F.Mask)) 43 | (model 3d/usb3afemale_mid.wrl 44 | (at (xyz 0 0.195 0)) 45 | (scale (xyz 0.393701 0.393701 0.393701)) 46 | (rotate (xyz 90 180 0)) 47 | ) 48 | ) 49 | -------------------------------------------------------------------------------- /PCB/prettylib/USB3_MICROB.kicad_mod: -------------------------------------------------------------------------------- 1 | (module USB3_MICROB (layer F.Cu) (tedit 57151D1D) 2 | (descr USB3110) 3 | (tags USB3110) 4 | (attr smd) 5 | (fp_text reference REF** (at 0.3302 -4.5974) (layer F.SilkS) 6 | (effects (font (thickness 0.3048))) 7 | ) 8 | (fp_text value >NAME (at -0.889 4.3434) (layer F.SilkS) hide 9 | (effects (font (thickness 0.3048))) 10 | ) 11 | (fp_line (start 6.325 -4) (end 6.325 3) (layer Eco1.User) (width 0.15)) 12 | (fp_text user "Mating Distance" (at -2.667 4.826) (layer Dwgs.User) 13 | (effects (font (size 1 1) (thickness 0.15))) 14 | ) 15 | (fp_line (start -7.175 1.45) (end 5.825 1.45) (layer Dwgs.User) (width 0.15)) 16 | (fp_line (start -7.175 2.75) (end -7.175 -3) (layer Cmts.User) (width 0.15)) 17 | (fp_line (start 5.825 -3) (end 5.825 2.75) (layer Cmts.User) (width 0.15)) 18 | (fp_line (start 5.825 -3) (end -7.175 -3) (layer Cmts.User) (width 0.15)) 19 | (fp_line (start -7.175 2.75) (end 5.825 2.75) (layer Cmts.User) (width 0.15)) 20 | (fp_line (start -8.675 4.05) (end 7.325 4.05) (layer Cmts.User) (width 0.15)) 21 | (fp_line (start -7.675 3) (end 6.325 3) (layer Eco1.User) (width 0.15)) 22 | (fp_line (start -7.675 -4) (end 6.325 -4) (layer Eco1.User) (width 0.15)) 23 | (fp_line (start -7.675 -4) (end -7.675 3) (layer Eco1.User) (width 0.15)) 24 | (pad 11 smd rect (at 0.65 0) (size 1.8 1.9) (layers F.Cu F.Paste F.Mask)) 25 | (pad 8 smd rect (at 3.35 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 26 | (pad 9 smd rect (at 4 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 27 | (pad 10 smd rect (at 4.65 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 28 | (pad 7 smd rect (at 2.7 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 29 | (pad 6 smd rect (at 2.05 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 30 | (pad 3 smd rect (at -3.35 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 31 | (pad 4 smd rect (at -2.7 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 32 | (pad 5 smd rect (at -2.05 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 33 | (pad 2 smd rect (at -4 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 34 | (pad 1 smd rect (at -4.65 -2.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) 35 | (pad 11 smd rect (at -4.55 0) (size 1.9 1.9) (layers F.Cu F.Paste F.Mask)) 36 | (pad 11 smd rect (at -2.15 0) (size 1.9 1.9) (layers F.Cu F.Paste F.Mask)) 37 | (pad 11 thru_hole oval (at -6.95 0) (size 1.05 1.9) (drill oval 0.45 1.3) (layers *.Cu *.Mask F.Paste F.SilkS)) 38 | (pad 11 smd rect (at 3.15 0) (size 1.8 1.9) (layers F.Cu F.Paste F.Mask)) 39 | (pad 11 thru_hole oval (at 5.6 0) (size 1.05 1.9) (drill oval 0.45 1.2) (layers *.Cu *.Mask F.Paste F.SilkS)) 40 | (model 3d/usb3microstakes.wrl 41 | (at (xyz -0.02 0.08 -0.038)) 42 | (scale (xyz 0.393701 0.393701 0.393701)) 43 | (rotate (xyz -90 0 0)) 44 | ) 45 | ) 46 | -------------------------------------------------------------------------------- /PCB/prettylib/USB_Micro-B.kicad_mod: -------------------------------------------------------------------------------- 1 | (module USB_Micro-B (layer F.Cu) (tedit 573F5600) 2 | (descr "Micro USB Type B Receptacle") 3 | (tags "USB USB_B USB_micro USB_OTG") 4 | (attr smd) 5 | (fp_text reference P1_2 (at 0.254 -5.969) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value USB_CONN (at -0.254 -4.699) (layer Dwgs.User) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_text user "Mating Distance" (at 0 4.953) (layer Dwgs.User) 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | ) 14 | (fp_line (start 3.75 2.2) (end 4.02 2.82) (layer Cmts.User) (width 0.15)) 15 | (fp_line (start -3.75 2.2) (end -4.02 2.82) (layer Cmts.User) (width 0.15)) 16 | (fp_line (start -3.75 1.7) (end 3.75 1.7) (layer Dwgs.User) (width 0.15)) 17 | (fp_line (start -3.75 -3.11) (end 3.75 -3.11) (layer Cmts.User) (width 0.15)) 18 | (fp_line (start 3.75 -3.11) (end 3.75 2.2) (layer Cmts.User) (width 0.15)) 19 | (fp_line (start -3.75 2.2) (end -3.75 -3.11) (layer Cmts.User) (width 0.15)) 20 | (fp_line (start -4.02 2.82) (end 4.02 2.82) (layer Cmts.User) (width 0.15)) 21 | (fp_line (start -5.3 4.12) (end 5.3 4.12) (layer Cmts.User) (width 0.15)) 22 | (fp_line (start -4.5 3) (end 4.5 3) (layer Eco1.User) (width 0.15)) 23 | (fp_line (start -4.5 -4.5) (end 4.5 -4.5) (layer Eco1.User) (width 0.15)) 24 | (fp_line (start 4.5 -4.5) (end 4.5 3) (layer Eco1.User) (width 0.15)) 25 | (fp_line (start -4.5 -4.5) (end -4.5 3) (layer Eco1.User) (width 0.15)) 26 | (pad 1 smd rect (at -1.3 -2.825 90) (size 1.75 0.4) (layers F.Cu F.Paste F.Mask)) 27 | (pad 2 smd rect (at -0.65 -2.825 90) (size 1.75 0.4) (layers F.Cu F.Paste F.Mask)) 28 | (pad 3 smd rect (at 0 -2.825 90) (size 1.75 0.4) (layers F.Cu F.Paste F.Mask)) 29 | (pad 4 smd rect (at 0.65 -2.825 90) (size 1.75 0.4) (layers F.Cu F.Paste F.Mask)) 30 | (pad 5 smd rect (at 1.3 -2.825 90) (size 1.75 0.4) (layers F.Cu F.Paste F.Mask)) 31 | (pad 6 smd rect (at -2.425 -3) (size 2 1.4) (drill oval (offset -0.475 0)) (layers F.Cu F.Paste F.Mask)) 32 | (pad 6 smd rect (at 2.725 0) (size 1.3 3.25) (drill oval (offset 0 -0.425)) (layers F.Cu F.Paste F.Mask)) 33 | (pad 6 smd rect (at 2.425 -3) (size 2 1.4) (drill oval (offset 0.475 0)) (layers F.Cu F.Paste F.Mask)) 34 | (pad 6 smd rect (at 2.9875 -1.7) (size 1.825 0.7) (layers F.Cu F.Paste F.Mask)) 35 | (pad 6 smd rect (at -2.9875 -1.7) (size 1.825 0.7) (layers F.Cu F.Paste F.Mask)) 36 | (pad 6 smd rect (at -2.725 0) (size 1.3 3.25) (drill oval (offset 0 -0.425)) (layers F.Cu F.Paste F.Mask)) 37 | (pad 6 thru_hole oval (at 2.725 0) (size 1.3 1.8) (drill oval 0.7 1.2) (layers *.Cu *.Mask F.SilkS)) 38 | (pad 6 thru_hole oval (at -2.725 0) (size 1.3 1.8) (drill oval 0.7 1.2) (layers *.Cu *.Mask F.SilkS)) 39 | (pad 6 smd rect (at 0.9625 0.25) (size 1.425 2.5) (layers F.Cu F.Paste F.Mask)) 40 | (pad 6 smd rect (at -0.9625 0.25) (size 1.425 2.5) (layers F.Cu F.Paste F.Mask)) 41 | (pad 6 thru_hole oval (at 2.425 -3) (size 1 1.4) (drill oval 0.65 1.05) (layers *.Cu *.Mask F.SilkS)) 42 | (pad 6 thru_hole oval (at -2.425 -3) (size 1 1.4) (drill oval 0.65 1.05) (layers *.Cu *.Mask F.SilkS)) 43 | ) 44 | -------------------------------------------------------------------------------- /PCB/prettylib/VSSOP8.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VSSOP8 (layer F.Cu) (tedit 56EAD22B) 2 | (solder_mask_margin 0.125) 3 | (clearance 0.125) 4 | (fp_text reference REF** (at -0.0254 -2.6162) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value >NAME (at -0.1778 2.6416) (layer Dwgs.User) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_circle (center -0.7874 0.381) (end -0.635 0.2794) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -1.2 0.8) (end -1.2 -0.8) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 1.2 0.8) (end -1.2 0.8) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 1.2 -0.8) (end 1.2 0.8) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -1.2 -0.8) (end 1.2 -0.8) (layer F.SilkS) (width 0.15)) 15 | (fp_circle (center -1.524 0.9652) (end -1.4478 0.889) (layer F.SilkS) (width 0.15)) 16 | (pad 4 smd rect (at 0.8 1.375) (size 0.4 0.75) (layers F.Cu F.Paste F.Mask)) 17 | (pad 1 smd rect (at -0.8 1.375) (size 0.4 0.75) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at -0.25 1.375) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at 0.25 1.375) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask)) 20 | (pad 6 smd rect (at 0.25 -1.375) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask)) 21 | (pad 7 smd rect (at -0.25 -1.375) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask)) 22 | (pad 8 smd rect (at -0.8 -1.375) (size 0.4 0.75) (layers F.Cu F.Paste F.Mask)) 23 | (pad 5 smd rect (at 0.8 -1.375) (size 0.4 0.75) (layers F.Cu F.Paste F.Mask)) 24 | (model walter/smd_dil/tssop-8.wrl 25 | (at (xyz 0 0 0)) 26 | (scale (xyz 1 1 1)) 27 | (rotate (xyz 0 0 0)) 28 | ) 29 | ) 30 | -------------------------------------------------------------------------------- /PCB/prettylib/WS2812B.kicad_mod: -------------------------------------------------------------------------------- 1 | (module WS2812B (layer F.Cu) (tedit 56CC5151) 2 | (descr "Intelligent control LED with integrated light source
WS2812B
source: http://www.world-semi.com/uploads/soft/130904/1_1500205981.pdf")
3 | (solder_mask_margin 0.1)
4 | (attr smd)
5 | (fp_text reference WS2812B (at 6.35 0.0254) (layer F.SilkS)
6 | (effects (font (size 1 1) (thickness 0.2)))
7 | )
8 | (fp_text value >NAME (at 5.778 1.2952) (layer Dwgs.User)
9 | (effects (font (size 0.8 0.8) (thickness 0.15)))
10 | )
11 | (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer Dwgs.User) (width 0.127))
12 | (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer Dwgs.User) (width 0.127))
13 | (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer Dwgs.User) (width 0.127))
14 | (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer Dwgs.User) (width 0.127))
15 | (fp_line (start -2.4892 -2.3622) (end -2.4892 -2.6162) (layer F.SilkS) (width 0.2032))
16 | (fp_line (start -2.4892 -2.6162) (end -2.4384 -2.6162) (layer F.SilkS) (width 0.2032))
17 | (fp_line (start -2.4384 -2.6162) (end -2.4384 -2.61112) (layer F.SilkS) (width 0.2032))
18 | (fp_line (start -2.4384 -2.61112) (end 2.51206 -2.61112) (layer F.SilkS) (width 0.2032))
19 | (fp_line (start 2.51206 -2.61112) (end 2.51206 -2.37998) (layer F.SilkS) (width 0.2032))
20 | (fp_line (start -2.50952 2.31902) (end -2.50952 2.5908) (layer F.SilkS) (width 0.2032))
21 | (fp_line (start -2.50952 2.5908) (end -2.45872 2.5908) (layer F.SilkS) (width 0.2032))
22 | (fp_line (start -2.45872 2.5908) (end -2.45872 2.59334) (layer F.SilkS) (width 0.2032))
23 | (fp_line (start -2.45872 2.59334) (end 2.50952 2.59334) (layer F.SilkS) (width 0.2032))
24 | (fp_line (start 2.50952 2.59334) (end 2.50952 2.36728) (layer F.SilkS) (width 0.2032))
25 | (fp_line (start -2.54 0.889) (end -2.54 -0.8128) (layer F.SilkS) (width 0.2032))
26 | (fp_line (start 2.54 -0.8636) (end 2.54 0) (layer F.SilkS) (width 0.2032))
27 | (fp_line (start 2.54 0) (end 2.54 0.8636) (layer F.SilkS) (width 0.2032))
28 | (fp_line (start 2.54 0) (end 0 2.54) (layer F.SilkS) (width 0.2032))
29 | (pad 1 smd rect (at -2.577 -1.6) (size 1.651 1) (layers F.Cu F.Paste F.Mask)
30 | (solder_mask_margin 0.2))
31 | (pad 4 smd rect (at 2.577 -1.6) (size 1.651 1) (layers F.Cu F.Paste F.Mask)
32 | (solder_mask_margin 0.2))
33 | (pad 3 smd rect (at 2.577 1.6) (size 1.651 1) (layers F.Cu F.Paste F.Mask)
34 | (solder_mask_margin 0.2))
35 | (pad 2 smd rect (at -2.577 1.6) (size 1.651 1) (layers F.Cu F.Paste F.Mask)
36 | (solder_mask_margin 0.2))
37 | )
38 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SAMPad
2 |
3 | This is a custom numeric pad that is designed to be usable on the right side of the keyboard or on the left (With a mirrored layout if required).
4 | There is a gap in the top row and the second row of 1.25U. The top row can be broken off by simply scoring the two brifges and snapping.
5 | The bottom 5 rows can then be used in conjunction with a 60%/65% keyboard.
6 |
7 | SAMPad stands for Sundstrand Adding Machine. David Sundstrand was the inventor of the 10-key adding machine, the layout of which is used till date on most numeric pads. This is a humble dedication to the great man.
8 |
9 | #Features
10 | - Open Source Design
11 | - Fully Programmable Keys
12 | - Numpad can be mirrored for use on the left side of the main keyboard.
13 | - Multiple layers
14 | - Alps/Cherry (PCB/Plate) support
15 | - PCB mount stabs supported
16 | - Backlight, LED on bottom for windowed keycaps
17 | - 6 Indicator LEDs, 4 on the top row and one on either Num Lock positions (Regular and mirrored)
18 | - 4 SMD RGB LEDs on the bottom of the PCB for under/side glow
19 | - SMD (SOD-123) diodes only
20 | - Individual resistors for the LEDs not required as it uses a dedicated LED driver
21 | - Using large (0805) capacitors and resistors so it is easier to hand-solder
22 | - Possibility to add a buzzer
23 | - Possibility to add a rotary dial on the top-right most key position for changing volume, LED brightness, etc.
24 |
25 | #Layout options decided/implemented:
26 | - Standard numpad with extra row on top with a 1.25U vertical offset that matches most TKL boards.
27 | - Possibility for upto 5*4 + 4 keys layout
28 | - Mirrored numpad layout for use on left side of main keyboard
29 |
30 | In the below image you can see the different options available.
31 | 
32 |
--------------------------------------------------------------------------------
/layouts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohitg11/SAMPad/7abb9d1b25d0cdf6a313904ca391be4438a21741/layouts.png
--------------------------------------------------------------------------------
/schematics.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohitg11/SAMPad/7abb9d1b25d0cdf6a313904ca391be4438a21741/schematics.pdf
--------------------------------------------------------------------------------