├── .gitignore ├── LICENSE.txt ├── README.md ├── buttons.sch ├── charliedistance-cache.lib ├── charliedistance.kicad_pcb ├── charliedistance.net ├── charliedistance.pro ├── charliedistance.sch ├── examples ├── buttons │ └── code.py ├── party │ └── code.py ├── snake │ └── code.py └── startHere │ └── code.py ├── fp-lib-table ├── ir.sch ├── issi_charlie_9x16.sch ├── psu_2xAA_usb_3v3.sch ├── samd21.sch ├── schematic.pdf └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | 17 | # Autorouter files (exported from Pcbnew) 18 | *.dsn 19 | *.ses 20 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | 429 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bornhack Badge 2020 2 | 3 | ## About the hardware 4 | 5 | Similar to the last couple of years, this badge has an ARM cortex M0+ as the main 6 | controller, but on this badge it's the SAMD21 from Microchip, with 4 times as much 7 | flash and RAM compared to the chips from the previous badges. 8 | 9 | This makes it possible to run Adafruit CircuitPython on this badge, which lowers the 10 | bar for how easy it is to get started hacking on the badge, since all you need is a 11 | USB cable to connect it to your computer and an editor (vi, nano, VSCode, notepad, 12 | you name it) to change the `code.py` file on the badge. No need to have a tool chain 13 | installed on your computer, it's all happening on the badge when you save the file. 14 | 15 | ## Features 16 | 17 | - The main feature of the badge is a 9x32 pixel LED matrix controlled by 2 18 | IS31FL3731 LED controllers, that control the LEDs via charlieplexing 19 | - The other primary feature is an infrared LED to transmit and an infrared receiver 20 | and decoder to receive badge to badge communication 21 | - There are also 4 navigation/game buttons and a reset button 22 | - The badge is either powered by 2xAA batteries, that have the voltage boosted to 23 | 3.3v or via USB, where the voltage is regulated down to 3.3v 24 | - The main controller is a SAMD21G18A with a GD25Q32C (4MB SPI flash) connected 25 | for libraries, graphics, etc. 26 | - There is also an unpopulated header for Shitty Add On v.1.69bis 27 | - On the back of the badge, all i/o pins that are not used on the microcontroller 28 | is pull out to small SMD pads for optional soldering on add-ons or similar. 29 | 30 | ## Getting started 31 | 32 | To start making your badge your own, you can connect it via USB and a mass storage 33 | device should show up with a `code.py` file in the root directory. 34 | 35 | If you open that file in your favorite text editor you will find a few lines first 36 | that loads some libraries, then some initialisation of the LED drivers and on line 20 37 | you will find an assignment of a string variable with the scrolling text shown on 38 | the LED matrix. To put eg. your name on the badge, you can change this text and save 39 | the file, and after a few seconds, the badge will restart the code and your text 40 | should be slowly scrolling across the "screen". 41 | 42 | If you have gotten this far you are up and running with your first "hack" of the 43 | 2020 BornHack badge and you can continue with more elaborate hacking. 44 | -------------------------------------------------------------------------------- /buttons.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 7 7 7 | Title "Buttons" 8 | Date "" 9 | Rev "1.0" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L Switch:SW_SPST SW2 18 | U 1 1 5EE6745D 19 | P 2950 2300 20 | F 0 "SW2" H 2950 2535 50 0000 C CNN 21 | F 1 "A" H 2950 2444 50 0000 C CNN 22 | F 2 "Buttons:SW_SPST_TS3625A-HT" H 2950 2300 50 0001 C CNN 23 | F 3 "~" H 2950 2300 50 0001 C CNN 24 | 1 2950 2300 25 | 1 0 0 -1 26 | $EndComp 27 | $Comp 28 | L power:GND #PWR053 29 | U 1 1 5EE68B1B 30 | P 3400 2300 31 | F 0 "#PWR053" H 3400 2050 50 0001 C CNN 32 | F 1 "GND" V 3405 2172 50 0000 R CNN 33 | F 2 "" H 3400 2300 50 0001 C CNN 34 | F 3 "" H 3400 2300 50 0001 C CNN 35 | 1 3400 2300 36 | 0 -1 -1 0 37 | $EndComp 38 | Wire Wire Line 39 | 3400 2300 3150 2300 40 | Wire Wire Line 41 | 2750 2300 2450 2300 42 | $Comp 43 | L Switch:SW_SPST SW3 44 | U 1 1 5EE69900 45 | P 2950 2900 46 | F 0 "SW3" H 2950 3135 50 0000 C CNN 47 | F 1 "B" H 2950 3044 50 0000 C CNN 48 | F 2 "Buttons:SW_SPST_TS3625A-HT" H 2950 2900 50 0001 C CNN 49 | F 3 "~" H 2950 2900 50 0001 C CNN 50 | 1 2950 2900 51 | 1 0 0 -1 52 | $EndComp 53 | $Comp 54 | L power:GND #PWR054 55 | U 1 1 5EE6990A 56 | P 3400 2900 57 | F 0 "#PWR054" H 3400 2650 50 0001 C CNN 58 | F 1 "GND" V 3405 2772 50 0000 R CNN 59 | F 2 "" H 3400 2900 50 0001 C CNN 60 | F 3 "" H 3400 2900 50 0001 C CNN 61 | 1 3400 2900 62 | 0 -1 -1 0 63 | $EndComp 64 | Wire Wire Line 65 | 3400 2900 3150 2900 66 | Wire Wire Line 67 | 2750 2900 2450 2900 68 | $Comp 69 | L Switch:SW_SPST SW4 70 | U 1 1 5EE6A1B1 71 | P 2950 3450 72 | F 0 "SW4" H 2950 3685 50 0000 C CNN 73 | F 1 "X" H 2950 3594 50 0000 C CNN 74 | F 2 "Buttons:SW_SPST_TS3625A-HT" H 2950 3450 50 0001 C CNN 75 | F 3 "~" H 2950 3450 50 0001 C CNN 76 | 1 2950 3450 77 | 1 0 0 -1 78 | $EndComp 79 | $Comp 80 | L power:GND #PWR055 81 | U 1 1 5EE6A1BB 82 | P 3400 3450 83 | F 0 "#PWR055" H 3400 3200 50 0001 C CNN 84 | F 1 "GND" V 3405 3322 50 0000 R CNN 85 | F 2 "" H 3400 3450 50 0001 C CNN 86 | F 3 "" H 3400 3450 50 0001 C CNN 87 | 1 3400 3450 88 | 0 -1 -1 0 89 | $EndComp 90 | Wire Wire Line 91 | 3400 3450 3150 3450 92 | Wire Wire Line 93 | 2750 3450 2450 3450 94 | $Comp 95 | L Switch:SW_SPST SW5 96 | U 1 1 5EE6BEEC 97 | P 2950 4000 98 | F 0 "SW5" H 2950 4235 50 0000 C CNN 99 | F 1 "Y" H 2950 4144 50 0000 C CNN 100 | F 2 "Buttons:SW_SPST_TS3625A-HT" H 2950 4000 50 0001 C CNN 101 | F 3 "~" H 2950 4000 50 0001 C CNN 102 | 1 2950 4000 103 | 1 0 0 -1 104 | $EndComp 105 | $Comp 106 | L power:GND #PWR056 107 | U 1 1 5EE6BEF6 108 | P 3400 4000 109 | F 0 "#PWR056" H 3400 3750 50 0001 C CNN 110 | F 1 "GND" V 3405 3872 50 0000 R CNN 111 | F 2 "" H 3400 4000 50 0001 C CNN 112 | F 3 "" H 3400 4000 50 0001 C CNN 113 | 1 3400 4000 114 | 0 -1 -1 0 115 | $EndComp 116 | Wire Wire Line 117 | 3400 4000 3150 4000 118 | Wire Wire Line 119 | 2750 4000 2450 4000 120 | Text HLabel 2450 2300 0 50 Output ~ 0 121 | A 122 | Text HLabel 2450 2900 0 50 Output ~ 0 123 | B 124 | Text HLabel 2450 3450 0 50 Output ~ 0 125 | X 126 | Text HLabel 2450 4000 0 50 Output ~ 0 127 | Y 128 | $EndSCHEMATC 129 | -------------------------------------------------------------------------------- /charliedistance-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Connector_Conn_01x06_Female 5 | # 6 | DEF Connector_Conn_01x06_Female J 0 40 Y N 1 F N 7 | F0 "J" 0 300 50 H V C CNN 8 | F1 "Connector_Conn_01x06_Female" 0 -400 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | $FPLIST 12 | Connector*:*_1x??_* 13 | $ENDFPLIST 14 | DRAW 15 | A 0 -300 20 901 -901 1 1 6 N 0 -280 0 -320 16 | A 0 -200 20 901 -901 1 1 6 N 0 -180 0 -220 17 | A 0 -100 20 901 -901 1 1 6 N 0 -80 0 -120 18 | A 0 0 20 901 -901 1 1 6 N 0 20 0 -20 19 | A 0 100 20 901 -901 1 1 6 N 0 120 0 80 20 | A 0 200 20 901 -901 1 1 6 N 0 220 0 180 21 | P 2 1 1 6 -50 -300 -20 -300 N 22 | P 2 1 1 6 -50 -200 -20 -200 N 23 | P 2 1 1 6 -50 -100 -20 -100 N 24 | P 2 1 1 6 -50 0 -20 0 N 25 | P 2 1 1 6 -50 100 -20 100 N 26 | P 2 1 1 6 -50 200 -20 200 N 27 | X Pin_1 1 -200 200 150 R 50 50 1 1 P 28 | X Pin_2 2 -200 100 150 R 50 50 1 1 P 29 | X Pin_3 3 -200 0 150 R 50 50 1 1 P 30 | X Pin_4 4 -200 -100 150 R 50 50 1 1 P 31 | X Pin_5 5 -200 -200 150 R 50 50 1 1 P 32 | X Pin_6 6 -200 -300 150 R 50 50 1 1 P 33 | ENDDRAW 34 | ENDDEF 35 | # 36 | # Connector_TestPoint 37 | # 38 | DEF Connector_TestPoint TP 0 30 N N 1 F N 39 | F0 "TP" 0 270 50 H V C CNN 40 | F1 "Connector_TestPoint" 0 200 50 H V C CNN 41 | F2 "" 200 0 50 H I C CNN 42 | F3 "" 200 0 50 H I C CNN 43 | $FPLIST 44 | Pin* 45 | Test* 46 | $ENDFPLIST 47 | DRAW 48 | C 0 130 30 0 1 0 N 49 | X 1 1 0 0 100 U 50 50 1 1 P 50 | ENDDRAW 51 | ENDDEF 52 | # 53 | # Connector_USB_C_Receptacle_USB2.0 54 | # 55 | DEF Connector_USB_C_Receptacle_USB2.0 J 0 40 Y Y 1 F N 56 | F0 "J" -400 750 50 H V L CNN 57 | F1 "Connector_USB_C_Receptacle_USB2.0" 750 750 50 H V R CNN 58 | F2 "" 150 0 50 H I C CNN 59 | F3 "" 150 0 50 H I C CNN 60 | $FPLIST 61 | USB*C*Receptacle* 62 | $ENDFPLIST 63 | DRAW 64 | A -275 -150 75 -1799 -1 0 1 20 N -350 -150 -200 -150 65 | A -275 -150 25 -1799 -1 0 1 10 N -300 -150 -250 -150 66 | A -275 -150 25 -1799 -1 0 1 10 F -300 -150 -250 -150 67 | A -275 150 25 1 1799 0 1 10 F -250 150 -300 150 68 | A -275 150 25 1 1799 0 1 10 N -250 150 -300 150 69 | A -275 150 75 1 1799 0 1 20 N -200 150 -350 150 70 | C -100 45 25 0 1 10 F 71 | C 0 -230 50 0 1 0 F 72 | S -10 -700 10 -660 0 0 0 N 73 | S 400 -590 360 -610 0 0 0 N 74 | S 400 -490 360 -510 0 0 0 N 75 | S 400 -190 360 -210 0 0 0 N 76 | S 400 -90 360 -110 0 0 0 N 77 | S 400 10 360 -10 0 0 0 N 78 | S 400 110 360 90 0 0 0 N 79 | S 400 310 360 290 0 0 0 N 80 | S 400 410 360 390 0 0 0 N 81 | S 400 610 360 590 0 0 0 N 82 | S -400 700 400 -700 0 1 10 f 83 | S -300 -150 -250 150 0 1 10 F 84 | S 75 70 125 120 0 1 10 F 85 | P 2 0 1 20 -350 -150 -350 150 N 86 | P 2 0 1 20 -200 150 -200 -150 N 87 | P 2 0 1 20 0 -230 0 170 N 88 | P 3 0 1 20 0 -130 -100 -30 -100 20 N 89 | P 3 0 1 20 0 -80 100 20 100 70 N 90 | P 4 0 1 10 -50 170 0 270 50 170 -50 170 F 91 | X GND A1 0 -900 200 U 50 50 1 1 W 92 | X GND A12 0 -900 200 U 50 50 1 1 P N 93 | X VBUS A4 600 600 200 L 50 50 1 1 W 94 | X CC1 A5 600 400 200 L 50 50 1 1 B 95 | X D+ A6 600 -100 200 L 50 50 1 1 B 96 | X D- A7 600 100 200 L 50 50 1 1 B 97 | X SBU1 A8 600 -500 200 L 50 50 1 1 B 98 | X VBUS A9 600 600 200 L 50 50 1 1 P N 99 | X GND B1 0 -900 200 U 50 50 1 1 P N 100 | X GND B12 0 -900 200 U 50 50 1 1 P N 101 | X VBUS B4 600 600 200 L 50 50 1 1 P N 102 | X CC2 B5 600 300 200 L 50 50 1 1 B 103 | X D+ B6 600 -200 200 L 50 50 1 1 B 104 | X D- B7 600 0 200 L 50 50 1 1 B 105 | X SBU2 B8 600 -600 200 L 50 50 1 1 B 106 | X VBUS B9 600 600 200 L 50 50 1 1 P N 107 | X SHIELD S1 -300 -900 200 U 50 50 1 1 P 108 | ENDDRAW 109 | ENDDEF 110 | # 111 | # Driver_LED_IS31FL3731-QF 112 | # 113 | DEF Driver_LED_IS31FL3731-QF U 0 20 Y Y 1 F N 114 | F0 "U" -400 1025 50 H V L BNN 115 | F1 "Driver_LED_IS31FL3731-QF" 100 -1025 50 H V L TNN 116 | F2 "Package_DFN_QFN:QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm" 0 0 50 H I C CNN 117 | F3 "" 0 0 50 H I C CNN 118 | $FPLIST 119 | QFN*1EP*4x4mm*P0.4mm* 120 | $ENDFPLIST 121 | DRAW 122 | S -400 1000 400 -1000 0 1 10 f 123 | X CA9 1 500 100 100 L 50 50 1 1 B 124 | X CB4 10 500 -400 100 L 50 50 1 1 B 125 | X CB5 11 500 -500 100 L 50 50 1 1 B 126 | X CB6 12 500 -600 100 L 50 50 1 1 B 127 | X CB7 13 500 -700 100 L 50 50 1 1 B 128 | X CB8 14 500 -800 100 L 50 50 1 1 B 129 | X CB9 15 500 -900 100 L 50 50 1 1 B 130 | X C_FILT 16 -500 100 100 R 50 50 1 1 P 131 | X IN 17 -500 200 100 R 50 50 1 1 I 132 | X AD 18 -500 700 100 R 50 50 1 1 I 133 | X SDA 19 -500 900 100 R 50 50 1 1 B 134 | X VCC 2 0 1100 100 D 50 50 1 1 W 135 | X SCL 20 -500 800 100 R 50 50 1 1 I 136 | X CA1 21 500 900 100 L 50 50 1 1 B 137 | X CA2 22 500 800 100 L 50 50 1 1 B 138 | X CA3 23 500 700 100 L 50 50 1 1 B 139 | X CA4 24 500 600 100 L 50 50 1 1 B 140 | X CA5 25 500 500 100 L 50 50 1 1 B 141 | X CA6 26 500 400 100 L 50 50 1 1 B 142 | X CA7 27 500 300 100 L 50 50 1 1 B 143 | X CA8 28 500 200 100 L 50 50 1 1 B 144 | X GND 29 0 -1100 100 U 50 50 1 1 P N 145 | X ~SDB 3 -500 500 100 R 50 50 1 1 I 146 | X ~INTB 4 -500 400 100 R 50 50 1 1 C 147 | X GND 5 0 -1100 100 U 50 50 1 1 W 148 | X R_EXT 6 -500 -100 100 R 50 50 1 1 P 149 | X CB1 7 500 -100 100 L 50 50 1 1 B 150 | X CB2 8 500 -200 100 L 50 50 1 1 B 151 | X CB3 9 500 -300 100 L 50 50 1 1 B 152 | ENDDRAW 153 | ENDDEF 154 | # 155 | # Opto_IRM-Hxx6T 156 | # 157 | DEF Opto_IRM-Hxx6T U 0 40 Y Y 1 F N 158 | F0 "U" 0 -100 50 H V C CNN 159 | F1 "Opto_IRM-Hxx6T" 0 100 50 H V C CNN 160 | F2 "" 0 0 50 H I C CNN 161 | F3 "" 0 0 50 H I C CNN 162 | DRAW 163 | S -250 350 250 -350 0 1 0 N 164 | X GND 1 -100 -450 100 U 50 50 1 1 W 165 | X GND 2 100 -450 100 U 50 50 1 1 W 166 | X OUT 3 350 0 100 L 50 50 1 1 O 167 | X VCC 4 0 450 100 D 50 50 1 1 W 168 | ENDDRAW 169 | ENDDEF 170 | # 171 | # Regulator_Linear_AP2204K-3.3 172 | # 173 | DEF Regulator_Linear_AP2204K-3.3 U 0 10 Y Y 1 F N 174 | F0 "U" -200 225 50 H V L CNN 175 | F1 "Regulator_Linear_AP2204K-3.3" 0 225 50 H V L CNN 176 | F2 "Package_TO_SOT_SMD:SOT-23-5" 0 325 50 H I C CNN 177 | F3 "" 0 100 50 H I C CNN 178 | ALIAS AP2204K-1.8 AP2204K-2.5 AP2204K-2.8 AP2204K-3.0 AP2204K-3.3 AP2204K-5.0 AP2127K-1.0 AP2127K-1.2 AP2127K-1.5 AP2127K-1.8 AP2127K-2.5 AP2127K-2.8 AP2127K-3.0 AP2127K-3.3 AP2127K-4.2 AP2127K-4.75 AP2112K-1.2 AP2112K-1.8 AP2112K-2.5 AP2112K-2.6 AP2112K-3.3 179 | $FPLIST 180 | SOT?23?5* 181 | $ENDFPLIST 182 | DRAW 183 | S -200 175 200 -200 0 1 10 f 184 | X VIN 1 -300 100 100 R 50 50 1 1 W 185 | X GND 2 0 -300 100 U 50 50 1 1 W 186 | X EN 3 -300 0 100 R 50 50 1 1 I 187 | X NC 4 300 0 100 L 50 50 1 1 N N 188 | X VOUT 5 300 100 100 L 50 50 1 1 w 189 | ENDDRAW 190 | ENDDEF 191 | # 192 | # Semiconductors_QX2304 193 | # 194 | DEF Semiconductors_QX2304 U 0 40 Y Y 1 F N 195 | F0 "U" 0 50 50 H V C CNN 196 | F1 "Semiconductors_QX2304" 0 -50 50 H V C CNN 197 | F2 "TO_SOT_Packages_SMD:SOT-23" 0 0 50 H I C CNN 198 | F3 "" 0 0 50 H I C CNN 199 | DRAW 200 | S -250 250 250 -250 0 1 0 N 201 | X GND 1 -350 -150 100 R 50 50 1 1 P 202 | X LX 2 -350 150 100 R 50 50 1 1 W 203 | X VOUT 3 350 150 100 L 50 50 1 1 w 204 | ENDDRAW 205 | ENDDEF 206 | # 207 | # Switch_SW_SPDT 208 | # 209 | DEF Switch_SW_SPDT SW 0 0 Y N 1 F N 210 | F0 "SW" 0 170 50 H V C CNN 211 | F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN 212 | F2 "" 0 0 50 H I C CNN 213 | F3 "" 0 0 50 H I C CNN 214 | DRAW 215 | C -80 0 20 0 0 0 N 216 | C 80 -100 20 0 0 0 N 217 | C 80 100 20 0 1 0 N 218 | P 2 0 1 0 -60 10 65 90 N 219 | X A 1 200 100 100 L 50 50 1 1 P 220 | X B 2 -200 0 100 R 50 50 1 1 P 221 | X C 3 200 -100 100 L 50 50 1 1 P 222 | ENDDRAW 223 | ENDDEF 224 | # 225 | # Switch_SW_SPST 226 | # 227 | DEF Switch_SW_SPST SW 0 0 Y N 1 F N 228 | F0 "SW" 0 125 50 H V C CNN 229 | F1 "Switch_SW_SPST" 0 -100 50 H V C CNN 230 | F2 "" 0 0 50 H I C CNN 231 | F3 "" 0 0 50 H I C CNN 232 | DRAW 233 | C -80 0 20 0 0 0 N 234 | C 80 0 20 0 0 0 N 235 | P 2 0 0 0 -60 10 60 70 N 236 | X A 1 -200 0 100 R 50 50 1 1 P 237 | X B 2 200 0 100 L 50 50 1 1 P 238 | ENDDRAW 239 | ENDDEF 240 | # 241 | # Transistor_BJT_BC817 242 | # 243 | DEF Transistor_BJT_BC817 Q 0 0 Y N 1 F N 244 | F0 "Q" 200 75 50 H V L CNN 245 | F1 "Transistor_BJT_BC817" 200 0 50 H V L CNN 246 | F2 "Package_TO_SOT_SMD:SOT-23" 200 -75 50 H I L CIN 247 | F3 "" 0 0 50 H I L CNN 248 | ALIAS BC818 BC846 BC847 BC848 BC849 BC850 MMBT3904 MMBT5550L MMBT5551L 249 | $FPLIST 250 | SOT?23* 251 | $ENDFPLIST 252 | DRAW 253 | C 50 0 111 0 1 10 N 254 | P 2 0 1 0 25 25 100 100 N 255 | P 3 0 1 0 25 -25 100 -100 100 -100 N 256 | P 3 0 1 20 25 75 25 -75 25 -75 N 257 | P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F 258 | X B 1 -200 0 225 R 50 50 1 1 I 259 | X E 2 100 -200 100 U 50 50 1 1 P 260 | X C 3 100 200 100 D 50 50 1 1 P 261 | ENDDRAW 262 | ENDDEF 263 | # 264 | # badgelife_shitty_addon_v169bis_Badgelife_sao_connector_v169bis 265 | # 266 | DEF badgelife_shitty_addon_v169bis_Badgelife_sao_connector_v169bis X 0 40 Y Y 1 F N 267 | F0 "X" 0 0 50 H V C CNN 268 | F1 "badgelife_shitty_addon_v169bis_Badgelife_sao_connector_v169bis" 0 800 50 H V C CNN 269 | F2 "" 0 200 50 H I C CNN 270 | F3 "" 0 200 50 H I C CNN 271 | DRAW 272 | S -300 350 300 -350 0 1 0 N 273 | X VCC 1 -200 550 200 D 50 50 1 1 I 274 | X GND 2 -200 -550 200 U 50 50 1 1 I 275 | X SDA 3 0 550 200 D 50 50 1 1 I 276 | X SCL 4 0 -550 200 U 50 50 1 1 I 277 | X GPIO1 5 200 550 200 D 50 50 1 1 I 278 | X GPIO2 6 200 -550 200 U 50 50 1 1 I 279 | ENDDRAW 280 | ENDDEF 281 | # 282 | # device_Battery_Cell 283 | # 284 | DEF device_Battery_Cell BT 0 0 N N 1 F N 285 | F0 "BT" 100 100 50 H V L CNN 286 | F1 "device_Battery_Cell" 100 0 50 H V L CNN 287 | F2 "" 0 60 50 V I C CNN 288 | F3 "" 0 60 50 V I C CNN 289 | DRAW 290 | S -90 70 90 60 0 1 0 F 291 | S -62 47 58 27 0 1 0 F 292 | P 2 0 1 0 0 30 0 0 N 293 | P 2 0 1 0 0 70 0 100 N 294 | P 2 0 1 10 20 135 60 135 N 295 | P 2 0 1 10 40 155 40 115 N 296 | X + 1 0 200 100 D 50 50 1 1 P 297 | X - 2 0 -100 100 U 50 50 1 1 P 298 | ENDDRAW 299 | ENDDEF 300 | # 301 | # device_C 302 | # 303 | DEF device_C C 0 10 N Y 1 F N 304 | F0 "C" 25 100 50 H V L CNN 305 | F1 "device_C" 25 -100 50 H V L CNN 306 | F2 "" 38 -150 50 H I C CNN 307 | F3 "" 0 0 50 H I C CNN 308 | $FPLIST 309 | C_* 310 | $ENDFPLIST 311 | DRAW 312 | P 2 0 1 20 -80 -30 80 -30 N 313 | P 2 0 1 20 -80 30 80 30 N 314 | X ~ 1 0 150 110 D 50 50 1 1 P 315 | X ~ 2 0 -150 110 U 50 50 1 1 P 316 | ENDDRAW 317 | ENDDEF 318 | # 319 | # device_L 320 | # 321 | DEF device_L L 0 40 N N 1 F N 322 | F0 "L" -50 0 50 V V C CNN 323 | F1 "device_L" 75 0 50 V V C CNN 324 | F2 "" 0 0 50 H I C CNN 325 | F3 "" 0 0 50 H I C CNN 326 | $FPLIST 327 | Choke_* 328 | *Coil* 329 | Inductor_* 330 | L_* 331 | $ENDFPLIST 332 | DRAW 333 | A 0 -75 25 -899 899 0 1 0 N 0 -100 0 -50 334 | A 0 -25 25 -899 899 0 1 0 N 0 -50 0 0 335 | A 0 25 25 -899 899 0 1 0 N 0 0 0 50 336 | A 0 75 25 -899 899 0 1 0 N 0 50 0 100 337 | X 1 1 0 150 50 D 50 50 1 1 P 338 | X 2 2 0 -150 50 U 50 50 1 1 P 339 | ENDDRAW 340 | ENDDEF 341 | # 342 | # device_LED_ALT 343 | # 344 | DEF device_LED_ALT D 0 40 N N 1 F N 345 | F0 "D" 0 100 50 H V C CNN 346 | F1 "device_LED_ALT" 0 -100 50 H V C CNN 347 | F2 "" 0 0 50 H I C CNN 348 | F3 "" 0 0 50 H I C CNN 349 | $FPLIST 350 | LED* 351 | LED_SMD:* 352 | LED_THT:* 353 | $ENDFPLIST 354 | DRAW 355 | P 2 0 1 8 -50 -50 -50 50 N 356 | P 2 0 1 0 -50 0 50 0 N 357 | P 4 0 1 8 50 -50 50 50 -50 0 50 -50 F 358 | P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N 359 | P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N 360 | X K 1 -150 0 100 R 50 50 1 1 P 361 | X A 2 150 0 100 L 50 50 1 1 P 362 | ENDDRAW 363 | ENDDEF 364 | # 365 | # device_LED_Small_ALT 366 | # 367 | DEF device_LED_Small_ALT D 0 10 N N 1 F N 368 | F0 "D" -50 125 50 H V L CNN 369 | F1 "device_LED_Small_ALT" -175 -100 50 H V L CNN 370 | F2 "" 0 0 50 V I C CNN 371 | F3 "" 0 0 50 V I C CNN 372 | $FPLIST 373 | LED* 374 | LED_SMD:* 375 | LED_THT:* 376 | $ENDFPLIST 377 | DRAW 378 | P 2 0 1 0 -30 -40 -30 40 N 379 | P 2 0 1 0 40 0 -30 0 N 380 | P 4 0 1 0 30 -40 -30 0 30 40 30 -40 F 381 | P 5 0 1 0 0 30 -20 50 -10 50 -20 50 -20 40 N 382 | P 5 0 1 0 20 50 0 70 10 70 0 70 0 60 N 383 | X K 1 -100 0 70 R 50 50 1 1 P 384 | X A 2 100 0 70 L 50 50 1 1 P 385 | ENDDRAW 386 | ENDDEF 387 | # 388 | # device_Q_NMOS_GSD 389 | # 390 | DEF device_Q_NMOS_GSD Q 0 0 Y N 1 F N 391 | F0 "Q" 200 50 50 H V L CNN 392 | F1 "device_Q_NMOS_GSD" 200 -50 50 H V L CNN 393 | F2 "" 200 100 50 H I C CNN 394 | F3 "" 0 0 50 H I C CNN 395 | DRAW 396 | C 65 0 110 0 1 10 N 397 | C 100 -70 10 0 1 0 F 398 | C 100 70 10 0 1 0 F 399 | P 2 0 1 0 10 0 -100 0 N 400 | P 2 0 1 10 10 75 10 -75 N 401 | P 2 0 1 10 30 -50 30 -90 N 402 | P 2 0 1 10 30 20 30 -20 N 403 | P 2 0 1 10 30 90 30 50 N 404 | P 2 0 1 0 100 100 100 70 N 405 | P 3 0 1 0 100 -100 100 0 30 0 N 406 | P 4 0 1 0 30 -70 130 -70 130 70 30 70 N 407 | P 4 0 1 0 40 0 80 15 80 -15 40 0 F 408 | P 4 0 1 0 110 20 115 15 145 15 150 10 N 409 | P 4 0 1 0 130 15 115 -10 145 -10 130 15 N 410 | X G 1 -200 0 100 R 50 50 1 1 I 411 | X S 2 100 -200 100 U 50 50 1 1 P 412 | X D 3 100 200 100 D 50 50 1 1 P 413 | ENDDRAW 414 | ENDDEF 415 | # 416 | # device_Q_PMOS_GSD 417 | # 418 | DEF device_Q_PMOS_GSD Q 0 0 Y N 1 F N 419 | F0 "Q" 200 50 50 H V L CNN 420 | F1 "device_Q_PMOS_GSD" 200 -50 50 H V L CNN 421 | F2 "" 200 100 50 H I C CNN 422 | F3 "" 0 0 50 H I C CNN 423 | DRAW 424 | C 65 0 110 0 1 10 N 425 | C 100 -70 10 0 1 0 F 426 | C 100 70 10 0 1 0 F 427 | P 2 0 1 0 10 0 -100 0 N 428 | P 2 0 1 10 10 75 10 -75 N 429 | P 2 0 1 10 30 -50 30 -90 N 430 | P 2 0 1 10 30 20 30 -20 N 431 | P 2 0 1 10 30 90 30 50 N 432 | P 2 0 1 0 100 100 100 70 N 433 | P 3 0 1 0 100 -100 100 0 30 0 N 434 | P 4 0 1 0 30 70 130 70 130 -70 30 -70 N 435 | P 4 0 1 0 90 0 50 15 50 -15 90 0 F 436 | P 4 0 1 0 110 -20 115 -15 145 -15 150 -10 N 437 | P 4 0 1 0 130 -15 115 10 145 10 130 -15 N 438 | X G 1 -200 0 100 R 50 50 1 1 I 439 | X S 2 100 -200 100 U 50 50 1 1 P 440 | X D 3 100 200 100 D 50 50 1 1 P 441 | ENDDRAW 442 | ENDDEF 443 | # 444 | # device_R 445 | # 446 | DEF device_R R 0 0 N Y 1 F N 447 | F0 "R" 80 0 50 V V C CNN 448 | F1 "device_R" 0 0 50 V V C CNN 449 | F2 "" -70 0 50 V I C CNN 450 | F3 "" 0 0 50 H I C CNN 451 | $FPLIST 452 | R_* 453 | $ENDFPLIST 454 | DRAW 455 | S -40 -100 40 100 0 1 10 N 456 | X ~ 1 0 150 50 D 50 50 1 1 P 457 | X ~ 2 0 -150 50 U 50 50 1 1 P 458 | ENDDRAW 459 | ENDDEF 460 | # 461 | # gd25q32c_GD25Q32C 462 | # 463 | DEF gd25q32c_GD25Q32C U 0 40 Y Y 1 F N 464 | F0 "U" 350 400 50 H V R CNN 465 | F1 "gd25q32c_GD25Q32C" 0 -400 50 H V C CNN 466 | F2 "Package_SON_Extra:USON-8_3x4mm_P0.8mm" 0 -500 50 H I C CNN 467 | F3 "" 0 -600 50 H I C CNN 468 | DRAW 469 | S -350 350 350 -350 0 1 0 f 470 | X ~CS~ 1 450 250 100 L 50 50 1 1 I 471 | X DO/IO1 2 450 -50 100 L 50 50 1 1 B 472 | X ~WP~/IO2 3 450 -150 100 L 50 50 1 1 B 473 | X GND 4 -450 -250 100 R 50 50 1 1 W 474 | X DI/IO0 5 450 50 100 L 50 50 1 1 B 475 | X SCK 6 450 150 100 L 50 50 1 1 I 476 | X ~HOLD~/IO3 7 450 -250 100 L 50 50 1 1 B 477 | X VDD 8 -450 250 100 R 50 50 1 1 W 478 | ENDDRAW 479 | ENDDEF 480 | # 481 | # power_GND 482 | # 483 | DEF power_GND #PWR 0 0 Y Y 1 F P 484 | F0 "#PWR" 0 -250 50 H I C CNN 485 | F1 "power_GND" 0 -150 50 H V C CNN 486 | F2 "" 0 0 50 H I C CNN 487 | F3 "" 0 0 50 H I C CNN 488 | DRAW 489 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 490 | X GND 1 0 0 0 D 50 50 1 1 W N 491 | ENDDRAW 492 | ENDDEF 493 | # 494 | # power_VCC 495 | # 496 | DEF power_VCC #PWR 0 0 Y Y 1 F P 497 | F0 "#PWR" 0 -150 50 H I C CNN 498 | F1 "power_VCC" 0 150 50 H V C CNN 499 | F2 "" 0 0 50 H I C CNN 500 | F3 "" 0 0 50 H I C CNN 501 | DRAW 502 | C 0 75 25 0 1 0 N 503 | P 2 0 1 0 0 0 0 50 N 504 | X VCC 1 0 0 0 U 50 50 1 1 W N 505 | ENDDRAW 506 | ENDDEF 507 | # 508 | # samd21g18_SAMD21G18A 509 | # 510 | DEF samd21g18_SAMD21G18A IC 0 100 Y Y 1 F N 511 | F0 "IC" -200 0 100 H V L BNN 512 | F1 "samd21g18_SAMD21G18A" -1200 1600 100 H V L BNN 513 | F2 "atmel:TQFP48" -1200 1500 50 H V L BNN 514 | F3 "" 0 0 50 H I C CNN 515 | F4 "SAMD21G18A-AUT" 0 0 50 H I C CNN "VALUE" 516 | DRAW 517 | P 2 0 0 10 -1500 -1500 -1500 1600 N 518 | P 2 0 0 10 -1500 1600 1600 1600 N 519 | P 2 0 0 10 1600 -1500 -1500 -1500 N 520 | P 2 0 0 10 1600 1600 1600 -1500 N 521 | X PA0/XIN32/EIC/SCOM1PAD0/TC2 1 -1700 1300 200 R 50 50 0 0 B 522 | X PA5/EIC/AIN5/SCOM0PAD1/TC0 10 -1700 400 200 R 50 50 0 0 B 523 | X PA6/EIC/AIN6/SCOM0PAD2/TC1 11 -1700 300 200 R 50 50 0 0 B 524 | X PA7/EIC/AIN7/SCOM0PAD3/TC1 12 -1700 200 200 R 50 50 0 0 B 525 | X PA8/I2C/AIN16/SCOM2PAD0+/TC0 13 -1700 -100 200 R 50 50 0 0 B 526 | X PA9/I2C/EIC/AIN17/SCOM2PAD1+/TC0 14 -1700 -200 200 R 50 50 0 0 B 527 | X PA10/EIC/AIN18/SCOM2PAD2+/TC1 15 -1700 -300 200 R 50 50 0 0 B 528 | X PA11/EIC/AIN19/SCOM2PAD3+/TC1 16 -1700 -400 200 R 50 50 0 0 B 529 | X VDDIO1 17 -1700 -500 200 R 50 50 0 0 W 530 | X GND1 18 -1700 -600 200 R 50 50 0 0 W 531 | X PB10/EIC/SCOM4PAD2/TC5 19 -1700 -700 200 R 50 50 0 0 B 532 | X PA1/XOUT32/EIC/SCOM1PAD1/TC2 2 -1700 1200 200 R 50 50 0 0 B 533 | X PB11/EIC/SCOM4PAD3/TC5 20 -1700 -800 200 R 50 50 0 0 B 534 | X PA12/I2C/EIC/SCOM2PAD0+/TC2 21 -1700 -900 200 R 50 50 0 0 B 535 | X PA13/I2C/EIC/SCOM2PAD1+/TC2 22 -1700 -1000 200 R 50 50 0 0 B 536 | X PA14/XIN/EIC/SCOM2PAD2+/TC3 23 -1700 -1100 200 R 50 50 0 0 B 537 | X PA15/XOUT/EIC/SCOM2PAD3+/TC3 24 -1700 -1200 200 R 50 50 0 0 B 538 | X PA16/I2C/EIC/SCOM1PAD0+/TC2 25 1800 -1200 200 L 50 50 0 0 B 539 | X PA17/I2C/EIC/SCOM1PAD1+/TC2 26 1800 -1100 200 L 50 50 0 0 B 540 | X PA18/EIC/SCOM1PAD2+/TC3 27 1800 -1000 200 L 50 50 0 0 B 541 | X PA19/EIC/SCOM1PAD3+/TC3 28 1800 -900 200 L 50 50 0 0 B 542 | X PA20/EIC/SCOM5PAD2+ 29 1800 -800 200 L 50 50 0 0 B 543 | X PA2/EIC/AIN0 3 -1700 1100 200 R 50 50 0 0 B 544 | X PA21/EIC/SCOM5PAD3+ 30 1800 -700 200 L 50 50 0 0 B 545 | X PA22/I2C/EIC/SCOM5PAD0+/TC4 31 1800 -600 200 L 50 50 0 0 B 546 | X PA23/I2C/EIC/SCOM5PAD1+/TC4 32 1800 -500 200 L 50 50 0 0 B 547 | X PA24/EIC/SCOM3PAD2+/TC5 33 1800 -400 200 L 50 50 0 0 B 548 | X PA25/EIC/SCOM3PAD3+/TC5 34 1800 -300 200 L 50 50 0 0 B 549 | X GND2 35 1800 -200 200 L 50 50 0 0 W 550 | X VDDIO2 36 1800 -100 200 L 50 50 0 0 W 551 | X PB22/EIC/SCOM5PAD2 37 1800 200 200 L 50 50 0 0 B 552 | X PB23/EIC/SCOM5PAD3 38 1800 300 200 L 50 50 0 0 B 553 | X PA27/EIC 39 1800 400 200 L 50 50 0 0 B 554 | X PA3/EIC/REF/AIN1 4 -1700 1000 200 R 50 50 0 0 B 555 | X RESETN 40 1800 500 200 L 50 50 0 0 B 556 | X PA28/EIC 41 1800 600 200 L 50 50 0 0 B 557 | X GND3 42 1800 700 200 L 50 50 0 0 W 558 | X VDDCORE1 43 1800 800 200 L 50 50 0 0 I 559 | X VDDIN 44 1800 900 200 L 50 50 0 0 W 560 | X PA30/EIC/SCOM1PAD2/TC1 45 1800 1000 200 L 50 50 0 0 B 561 | X PA31/EIC/SCOM1PAD3/TC1 46 1800 1100 200 L 50 50 0 0 B 562 | X PB2/EIC/AIN10/SCOM5PAD0 47 1800 1200 200 L 50 50 0 0 B 563 | X PB3/EIC/AIN11/SCOM5PAD1 48 1800 1300 200 L 50 50 0 0 B 564 | X GNDANA 5 -1700 900 200 R 50 50 0 0 W 565 | X VDDANA 6 -1700 800 200 R 50 50 0 0 W 566 | X PB8/EIC/AIN2/SCOM4PAD0/TC4 7 -1700 700 200 R 50 50 0 0 B 567 | X PB9/EIC/AIN3/SCOM4PAD1//TC4 8 -1700 600 200 R 50 50 0 0 B 568 | X PA4/EIC/REF/AIN4/SCOM0PAD0/TC0 9 -1700 500 200 R 50 50 0 0 B 569 | ENDDRAW 570 | ENDDEF 571 | # 572 | #End Library 573 | -------------------------------------------------------------------------------- /charliedistance.pro: -------------------------------------------------------------------------------- 1 | update=Thursday, 23 July 2020 at 10:22:56 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [schematic_editor] 16 | version=1 17 | PageLayoutDescrFile= 18 | PlotDirectoryName= 19 | SubpartIdSeparator=0 20 | SubpartFirstId=65 21 | NetFmtName=Pcbnew 22 | SpiceAjustPassiveValues=0 23 | LabSize=50 24 | ERC_TestSimilarLabels=1 25 | [pcbnew] 26 | version=1 27 | PageLayoutDescrFile= 28 | LastNetListRead=charliedistance.net 29 | CopperLayerCount=2 30 | BoardThickness=1.6 31 | AllowMicroVias=0 32 | AllowBlindVias=0 33 | RequireCourtyardDefinitions=0 34 | ProhibitOverlappingCourtyards=1 35 | MinTrackWidth=0.1524 36 | MinViaDiameter=0.4 37 | MinViaDrill=0.3 38 | MinMicroViaDiameter=0.2 39 | MinMicroViaDrill=0.09999999999999999 40 | MinHoleToHole=0.25 41 | TrackWidth1=0.25 42 | TrackWidth2=0.1524 43 | TrackWidth3=0.2032 44 | TrackWidth4=0.254 45 | TrackWidth5=0.3048 46 | TrackWidth6=0.381 47 | TrackWidth7=0.508 48 | ViaDiameter1=0.8 49 | ViaDrill1=0.4 50 | ViaDiameter2=0.6 51 | ViaDrill2=0.3 52 | ViaDiameter3=0.8 53 | ViaDrill3=0.4 54 | dPairWidth1=0.2 55 | dPairGap1=0.25 56 | dPairViaGap1=0.25 57 | SilkLineWidth=0.12 58 | SilkTextSizeV=1 59 | SilkTextSizeH=1 60 | SilkTextSizeThickness=0.15 61 | SilkTextItalic=0 62 | SilkTextUpright=1 63 | CopperLineWidth=0.2 64 | CopperTextSizeV=1.5 65 | CopperTextSizeH=1.5 66 | CopperTextThickness=0.3 67 | CopperTextItalic=0 68 | CopperTextUpright=1 69 | EdgeCutLineWidth=0.05 70 | CourtyardLineWidth=0.05 71 | OthersLineWidth=0.15 72 | OthersTextSizeV=1 73 | OthersTextSizeH=1 74 | OthersTextSizeThickness=0.15 75 | OthersTextItalic=0 76 | OthersTextUpright=1 77 | SolderMaskClearance=0.05 78 | SolderMaskMinWidth=0.09999999999999999 79 | SolderPasteClearance=0 80 | SolderPasteRatio=-0 81 | [pcbnew/Layer.F.Cu] 82 | Name=F.Cu 83 | Type=0 84 | Enabled=1 85 | [pcbnew/Layer.In1.Cu] 86 | Name=In1.Cu 87 | Type=0 88 | Enabled=0 89 | [pcbnew/Layer.In2.Cu] 90 | Name=In2.Cu 91 | Type=0 92 | Enabled=0 93 | [pcbnew/Layer.In3.Cu] 94 | Name=In3.Cu 95 | Type=0 96 | Enabled=0 97 | [pcbnew/Layer.In4.Cu] 98 | Name=In4.Cu 99 | Type=0 100 | Enabled=0 101 | [pcbnew/Layer.In5.Cu] 102 | Name=In5.Cu 103 | Type=0 104 | Enabled=0 105 | [pcbnew/Layer.In6.Cu] 106 | Name=In6.Cu 107 | Type=0 108 | Enabled=0 109 | [pcbnew/Layer.In7.Cu] 110 | Name=In7.Cu 111 | Type=0 112 | Enabled=0 113 | [pcbnew/Layer.In8.Cu] 114 | Name=In8.Cu 115 | Type=0 116 | Enabled=0 117 | [pcbnew/Layer.In9.Cu] 118 | Name=In9.Cu 119 | Type=0 120 | Enabled=0 121 | [pcbnew/Layer.In10.Cu] 122 | Name=In10.Cu 123 | Type=0 124 | Enabled=0 125 | [pcbnew/Layer.In11.Cu] 126 | Name=In11.Cu 127 | Type=0 128 | Enabled=0 129 | [pcbnew/Layer.In12.Cu] 130 | Name=In12.Cu 131 | Type=0 132 | Enabled=0 133 | [pcbnew/Layer.In13.Cu] 134 | Name=In13.Cu 135 | Type=0 136 | Enabled=0 137 | [pcbnew/Layer.In14.Cu] 138 | Name=In14.Cu 139 | Type=0 140 | Enabled=0 141 | [pcbnew/Layer.In15.Cu] 142 | Name=In15.Cu 143 | Type=0 144 | Enabled=0 145 | [pcbnew/Layer.In16.Cu] 146 | Name=In16.Cu 147 | Type=0 148 | Enabled=0 149 | [pcbnew/Layer.In17.Cu] 150 | Name=In17.Cu 151 | Type=0 152 | Enabled=0 153 | [pcbnew/Layer.In18.Cu] 154 | Name=In18.Cu 155 | Type=0 156 | Enabled=0 157 | [pcbnew/Layer.In19.Cu] 158 | Name=In19.Cu 159 | Type=0 160 | Enabled=0 161 | [pcbnew/Layer.In20.Cu] 162 | Name=In20.Cu 163 | Type=0 164 | Enabled=0 165 | [pcbnew/Layer.In21.Cu] 166 | Name=In21.Cu 167 | Type=0 168 | Enabled=0 169 | [pcbnew/Layer.In22.Cu] 170 | Name=In22.Cu 171 | Type=0 172 | Enabled=0 173 | [pcbnew/Layer.In23.Cu] 174 | Name=In23.Cu 175 | Type=0 176 | Enabled=0 177 | [pcbnew/Layer.In24.Cu] 178 | Name=In24.Cu 179 | Type=0 180 | Enabled=0 181 | [pcbnew/Layer.In25.Cu] 182 | Name=In25.Cu 183 | Type=0 184 | Enabled=0 185 | [pcbnew/Layer.In26.Cu] 186 | Name=In26.Cu 187 | Type=0 188 | Enabled=0 189 | [pcbnew/Layer.In27.Cu] 190 | Name=In27.Cu 191 | Type=0 192 | Enabled=0 193 | [pcbnew/Layer.In28.Cu] 194 | Name=In28.Cu 195 | Type=0 196 | Enabled=0 197 | [pcbnew/Layer.In29.Cu] 198 | Name=In29.Cu 199 | Type=0 200 | Enabled=0 201 | [pcbnew/Layer.In30.Cu] 202 | Name=In30.Cu 203 | Type=0 204 | Enabled=0 205 | [pcbnew/Layer.B.Cu] 206 | Name=B.Cu 207 | Type=0 208 | Enabled=1 209 | [pcbnew/Layer.B.Adhes] 210 | Enabled=1 211 | [pcbnew/Layer.F.Adhes] 212 | Enabled=1 213 | [pcbnew/Layer.B.Paste] 214 | Enabled=1 215 | [pcbnew/Layer.F.Paste] 216 | Enabled=1 217 | [pcbnew/Layer.B.SilkS] 218 | Enabled=1 219 | [pcbnew/Layer.F.SilkS] 220 | Enabled=1 221 | [pcbnew/Layer.B.Mask] 222 | Enabled=1 223 | [pcbnew/Layer.F.Mask] 224 | Enabled=1 225 | [pcbnew/Layer.Dwgs.User] 226 | Enabled=1 227 | [pcbnew/Layer.Cmts.User] 228 | Enabled=1 229 | [pcbnew/Layer.Eco1.User] 230 | Enabled=1 231 | [pcbnew/Layer.Eco2.User] 232 | Enabled=1 233 | [pcbnew/Layer.Edge.Cuts] 234 | Enabled=1 235 | [pcbnew/Layer.Margin] 236 | Enabled=1 237 | [pcbnew/Layer.B.CrtYd] 238 | Enabled=1 239 | [pcbnew/Layer.F.CrtYd] 240 | Enabled=1 241 | [pcbnew/Layer.B.Fab] 242 | Enabled=1 243 | [pcbnew/Layer.F.Fab] 244 | Enabled=1 245 | [pcbnew/Layer.Rescue] 246 | Enabled=0 247 | [pcbnew/Netclasses] 248 | [pcbnew/Netclasses/Default] 249 | Name=Default 250 | Clearance=0.1524 251 | TrackWidth=0.25 252 | ViaDiameter=0.8 253 | ViaDrill=0.4 254 | uViaDiameter=0.3 255 | uViaDrill=0.1 256 | dPairWidth=0.2 257 | dPairGap=0.25 258 | dPairViaGap=0.25 259 | -------------------------------------------------------------------------------- /charliedistance.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 7 7 | Title "Charlie Distance Badge" 8 | Date "" 9 | Rev "" 10 | Comp "BornHack" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Sheet 17 | S 8550 1350 1700 650 18 | U 5EC90811 19 | F0 "issi_charlie_9x16_a" 50 20 | F1 "issi_charlie_9x16.sch" 50 21 | F2 "SDA" B L 8550 1450 50 22 | F3 "SCL" B L 8550 1550 50 23 | F4 "ADDRESS" I L 8550 1650 50 24 | F5 "~SDB" I L 8550 1800 50 25 | F6 "~INTB" O L 8550 1900 50 26 | $EndSheet 27 | $Sheet 28 | S 8550 2600 1700 650 29 | U 5F64D6C7 30 | F0 "issi_charlie_9x16_b" 50 31 | F1 "issi_charlie_9x16.sch" 50 32 | F2 "SDA" B L 8550 2700 50 33 | F3 "SCL" B L 8550 2800 50 34 | F4 "ADDRESS" I L 8550 2900 50 35 | F5 "~SDB" I L 8550 3050 50 36 | F6 "~INTB" O L 8550 3150 50 37 | $EndSheet 38 | Text GLabel 8550 1450 0 50 BiDi ~ 0 39 | SDA 40 | Text GLabel 8550 1550 0 50 BiDi ~ 0 41 | SCL 42 | Text GLabel 8550 2700 0 50 BiDi ~ 0 43 | SDA 44 | Text GLabel 8550 2800 0 50 BiDi ~ 0 45 | SCL 46 | $Comp 47 | L power:GND #PWR01 48 | U 1 1 5F6546B4 49 | P 8150 1750 50 | F 0 "#PWR01" H 8150 1500 50 0001 C CNN 51 | F 1 "GND" H 8155 1577 50 0000 C CNN 52 | F 2 "" H 8150 1750 50 0001 C CNN 53 | F 3 "" H 8150 1750 50 0001 C CNN 54 | 1 8150 1750 55 | 1 0 0 -1 56 | $EndComp 57 | Text GLabel 8550 1800 0 50 Input ~ 0 58 | IS_SDB 59 | Text GLabel 8550 3050 0 50 Input ~ 0 60 | IS_SDB 61 | Wire Wire Line 62 | 8150 1650 8150 1750 63 | Wire Wire Line 64 | 8150 1650 8550 1650 65 | $Sheet 66 | S 1100 1150 2000 850 67 | U 5ECCD596 68 | F0 "psu" 50 69 | F1 "psu_2xAA_usb_3v3.sch" 50 70 | F2 "USB_BUS_POWER" I L 1100 1350 50 71 | $EndSheet 72 | Text GLabel 3100 2700 2 50 BiDi ~ 0 73 | SDA 74 | Text GLabel 3100 2800 2 50 BiDi ~ 0 75 | SCL 76 | Wire Wire Line 77 | 1100 1350 950 1350 78 | Wire Wire Line 79 | 950 1350 950 2800 80 | Wire Wire Line 81 | 950 2800 1100 2800 82 | $Comp 83 | L power:VCC #PWR02 84 | U 1 1 5EE1B586 85 | P 8150 2800 86 | F 0 "#PWR02" H 8150 2650 50 0001 C CNN 87 | F 1 "VCC" H 8167 2973 50 0000 C CNN 88 | F 2 "" H 8150 2800 50 0001 C CNN 89 | F 3 "" H 8150 2800 50 0001 C CNN 90 | 1 8150 2800 91 | 1 0 0 -1 92 | $EndComp 93 | $Sheet 94 | S 1100 2600 2000 1700 95 | U 5ED0DA4B 96 | F0 "samd21" 50 97 | F1 "samd21.sch" 50 98 | F2 "USB_BUS_POWER" O L 1100 2800 50 99 | F3 "SDA" B R 3100 2700 50 100 | F4 "SCL" B R 3100 2800 50 101 | F5 "SAO_GPIO1" B R 3100 4000 50 102 | F6 "SAO_GPIO2" B R 3100 4100 50 103 | F7 "IR_TX" O R 3100 3200 50 104 | F8 "IR_RX" I R 3100 3300 50 105 | F9 "BTN_A" I R 3100 3500 50 106 | F10 "BTN_B" I R 3100 3600 50 107 | F11 "BTN_X" I R 3100 3700 50 108 | F12 "BTN_Y" I R 3100 3800 50 109 | F13 "SDB" O R 3100 3100 50 110 | F14 "INTB_1" I R 3100 2900 50 111 | F15 "INTB_2" I R 3100 3000 50 112 | $EndSheet 113 | Wire Wire Line 114 | 8150 2800 8150 2900 115 | Wire Wire Line 116 | 8150 2900 8550 2900 117 | $Sheet 118 | S 8550 4250 1700 600 119 | U 5EE5A538 120 | F0 "ir" 50 121 | F1 "ir.sch" 50 122 | F2 "TX" I L 8550 4400 50 123 | F3 "RX" O L 8550 4500 50 124 | $EndSheet 125 | $Sheet 126 | S 8550 5200 1700 950 127 | U 5EE5ADBC 128 | F0 "buttons" 50 129 | F1 "buttons.sch" 50 130 | F2 "A" O L 8550 5350 50 131 | F3 "B" O L 8550 5450 50 132 | F4 "X" O L 8550 5550 50 133 | F5 "Y" O L 8550 5650 50 134 | $EndSheet 135 | $Comp 136 | L badgelife_shitty_addon_v169bis:Badgelife_sao_connector_v169bis X1 137 | U 1 1 5EE11D88 138 | P 2900 6300 139 | F 0 "X1" V 2435 6300 50 0000 C CNN 140 | F 1 "Badgelife_sao_connector_v169bis" V 2526 6300 50 0000 C CNN 141 | F 2 "badgelife_sao_v169bis:Badgelife-SAOv169-BADGE-2x3" H 2900 6500 50 0001 C CNN 142 | F 3 "" H 2900 6500 50 0001 C CNN 143 | 1 2900 6300 144 | 0 1 1 0 145 | $EndComp 146 | Text GLabel 3450 6300 2 50 BiDi ~ 0 147 | SDA 148 | Text GLabel 2350 6300 0 50 BiDi ~ 0 149 | SCL 150 | $Comp 151 | L power:GND #PWR03 152 | U 1 1 5EE132B0 153 | P 1950 6200 154 | F 0 "#PWR03" H 1950 5950 50 0001 C CNN 155 | F 1 "GND" H 1955 6027 50 0000 C CNN 156 | F 2 "" H 1950 6200 50 0001 C CNN 157 | F 3 "" H 1950 6200 50 0001 C CNN 158 | 1 1950 6200 159 | 1 0 0 -1 160 | $EndComp 161 | $Comp 162 | L power:VCC #PWR04 163 | U 1 1 5EE13A48 164 | P 3850 6000 165 | F 0 "#PWR04" H 3850 5850 50 0001 C CNN 166 | F 1 "VCC" H 3867 6173 50 0000 C CNN 167 | F 2 "" H 3850 6000 50 0001 C CNN 168 | F 3 "" H 3850 6000 50 0001 C CNN 169 | 1 3850 6000 170 | 1 0 0 -1 171 | $EndComp 172 | Wire Wire Line 173 | 3450 6100 3850 6100 174 | Wire Wire Line 175 | 3850 6100 3850 6000 176 | Wire Wire Line 177 | 2350 6100 1950 6100 178 | Wire Wire Line 179 | 1950 6100 1950 6200 180 | Wire Wire Line 181 | 3100 3200 6950 3200 182 | Wire Wire Line 183 | 6950 3200 6950 4400 184 | Wire Wire Line 185 | 6950 4400 8550 4400 186 | Wire Wire Line 187 | 3100 3300 6850 3300 188 | Wire Wire Line 189 | 6850 3300 6850 4500 190 | Wire Wire Line 191 | 6850 4500 8550 4500 192 | Wire Wire Line 193 | 3100 4000 4300 4000 194 | Wire Wire Line 195 | 4300 4000 4300 6500 196 | Wire Wire Line 197 | 4300 6500 3450 6500 198 | Wire Wire Line 199 | 3100 4100 3350 4100 200 | Wire Wire Line 201 | 3350 4100 3350 5500 202 | Wire Wire Line 203 | 3350 5500 1600 5500 204 | Wire Wire Line 205 | 1600 5500 1600 6500 206 | Wire Wire Line 207 | 1600 6500 2350 6500 208 | Wire Wire Line 209 | 3100 3500 6500 3500 210 | Wire Wire Line 211 | 6500 3500 6500 5350 212 | Wire Wire Line 213 | 6500 5350 8550 5350 214 | Wire Wire Line 215 | 3100 3600 6400 3600 216 | Wire Wire Line 217 | 6400 3600 6400 5450 218 | Wire Wire Line 219 | 6400 5450 8550 5450 220 | Wire Wire Line 221 | 3100 3700 6300 3700 222 | Wire Wire Line 223 | 6300 3700 6300 5550 224 | Wire Wire Line 225 | 6300 5550 8550 5550 226 | Wire Wire Line 227 | 3100 3800 6200 3800 228 | Wire Wire Line 229 | 6200 3800 6200 5650 230 | Wire Wire Line 231 | 6200 5650 8550 5650 232 | Text GLabel 3100 3100 2 50 Output ~ 0 233 | IS_SDB 234 | Text GLabel 3100 2900 2 50 Input ~ 0 235 | INTB_1 236 | Text GLabel 3100 3000 2 50 Input ~ 0 237 | INTB_2 238 | Text GLabel 8550 1900 0 50 Input ~ 0 239 | INTB_1 240 | Text GLabel 8550 3150 0 50 Input ~ 0 241 | INTB_2 242 | $EndSCHEMATC 243 | -------------------------------------------------------------------------------- /examples/buttons/code.py: -------------------------------------------------------------------------------- 1 | import board 2 | from digitalio import DigitalInOut, Pull 3 | 4 | # Digital inputs are input by default so there is no need to specify a direction 5 | # The button pins do need to be pulled up using the pull-up resistor built into the SAMD microcontroller 6 | 7 | btnA = DigitalInOut(board.BTNA) 8 | btnA.pull = Pull.UP 9 | btnB = DigitalInOut(board.BTNB) 10 | btnB.pull = Pull.UP 11 | btnX = DigitalInOut(board.BTNX) 12 | btnX.pull = Pull.UP 13 | btnY = DigitalInOut(board.BTNY) 14 | btnY.pull = Pull.UP 15 | 16 | # You can read the value by looking at the variable "btnA.value", this boolean will be False when the button is being pressed 17 | # and True when the button is not being pressed 18 | 19 | oldA = True 20 | oldB = True 21 | oldX = True 22 | oldY = True 23 | 24 | while True: 25 | newA = btnA.value 26 | newB = btnB.value 27 | newX = btnX.value 28 | newY = btnY.value 29 | 30 | if newA != oldA: 31 | oldA = newA 32 | if not newA: 33 | print("Button A pressed!") 34 | else: 35 | print("Button A released!") 36 | 37 | if newB != oldB: 38 | oldB = newB 39 | if not newB: 40 | print("Button B pressed!") 41 | else: 42 | print("Button B released!") 43 | 44 | if newX != oldX: 45 | oldX = newX 46 | if not newX: 47 | print("Button X pressed!") 48 | else: 49 | print("Button X released!") 50 | 51 | if newY != oldY: 52 | oldY = newY 53 | if not newY: 54 | print("Button Y pressed!") 55 | else: 56 | print("Button Y released!") 57 | -------------------------------------------------------------------------------- /examples/party/code.py: -------------------------------------------------------------------------------- 1 | import board, time, busio, adafruit_is31fl3731 2 | from digitalio import DigitalInOut, Direction, Pull 3 | import adafruit_framebuf 4 | 5 | brightness = 40 6 | 7 | i2c = busio.I2C(board.SCL, board.SDA) 8 | sdb = DigitalInOut(board.SDB) 9 | sdb.direction = Direction.OUTPUT 10 | sdb.value = True 11 | display1 = adafruit_is31fl3731.Matrix(i2c, address=0x74) 12 | display2 = adafruit_is31fl3731.Matrix(i2c, address=0x77) 13 | 14 | buf = bytearray(64) # 2 bytes tall x 32 wide = 64 bytes (9 bits is 2 bytes) 15 | fb = adafruit_framebuf.FrameBuffer( 16 | buf, display1.width*2, display1.height, adafruit_framebuf.MVLSB 17 | ) 18 | 19 | def blit(frame): 20 | display1.frame(frame, show=False) 21 | display2.frame(frame, show=False) 22 | for x in range(display1.width): 23 | bite = buf[x] 24 | for y in range(display1.height): 25 | bit = 1 << y & bite 26 | if bit: 27 | display1.pixel(x, y, brightness) 28 | bite = buf[x+16] 29 | for y in range(display2.height): 30 | bit = 1 << y & bite 31 | if bit: 32 | display2.pixel(x, y, brightness) 33 | 34 | def show(frame): 35 | display1.frame(frame, show=True) 36 | display2.frame(frame, show=True) 37 | 38 | def flash(a,b): 39 | show(0) 40 | display1.fill(brightness if a else 0) 41 | display2.fill(brightness if b else 0) 42 | 43 | display1.frame(0, show=False) 44 | display1.frame(0, show=False) 45 | display1.fill(0) 46 | display2.fill(0) 47 | 48 | fb.fill(0) 49 | fb.text("PARTY", 0, 1, color=1) 50 | blit(1) 51 | 52 | fb.fill(0) 53 | fb.text("HARD!", 0, 1, color=1) 54 | blit(2) 55 | 56 | fb.fill(0) 57 | fb.text("CYBER", 0, 1, color=1) 58 | blit(3) 59 | 60 | while True: 61 | for i in range(4): 62 | flash(True,False) 63 | time.sleep(0.4/(i+1)) 64 | flash(False,True) 65 | time.sleep(0.4/(i+1)) 66 | flash(False,False) 67 | time.sleep(0.4/(i+1)) 68 | flash(True,True) 69 | time.sleep(0.4/(i+1)) 70 | flash(False,False) 71 | time.sleep(0.4/(i+1)) 72 | flash(True,True) 73 | time.sleep(0.4/(i+1)) 74 | 75 | for i in range(4): 76 | show(1) 77 | time.sleep(0.1) 78 | flash(False,False) 79 | time.sleep(0.1) 80 | 81 | for i in range(4): 82 | show(2) 83 | time.sleep(0.1) 84 | flash(False,False) 85 | time.sleep(0.1) 86 | 87 | for i in range(4): 88 | flash(True,False) 89 | time.sleep(0.4/(i+1)) 90 | flash(False,True) 91 | time.sleep(0.4/(i+1)) 92 | flash(False,False) 93 | time.sleep(0.4/(i+1)) 94 | flash(True,True) 95 | time.sleep(0.4/(i+1)) 96 | flash(False,False) 97 | time.sleep(0.4/(i+1)) 98 | flash(True,True) 99 | time.sleep(0.4/(i+1)) 100 | 101 | for i in range(8): 102 | show(3) 103 | time.sleep(0.1) 104 | flash(False,False) 105 | time.sleep(0.1) 106 | -------------------------------------------------------------------------------- /examples/snake/code.py: -------------------------------------------------------------------------------- 1 | import board 2 | from digitalio import DigitalInOut, Pull 3 | from digitalio import DigitalInOut, Direction, Pull 4 | import time 5 | import busio 6 | import adafruit_framebuf 7 | import adafruit_is31fl3731 8 | from random import randint 9 | 10 | numbers = [ 11 | [0b0000, 0b0110, 0b1001, 0b1001, 0b1001, 0b1001, 0b1001, 0b0110, 0b0000,], 12 | [0b0000, 0b0010, 0b0110, 0b0010, 0b0010, 0b0010, 0b0010, 0b0111, 0b0000,], 13 | [0b0000, 0b0110, 0b1001, 0b1001, 0b0001, 0b0010, 0b0100, 0b1111, 0b0000,], 14 | [0b0000, 0b0110, 0b1001, 0b0001, 0b0011, 0b0001, 0b1001, 0b0110, 0b0000,], 15 | [0b0000, 0b0011, 0b0101, 0b1001, 0b1111, 0b0001, 0b0001, 0b0001, 0b0000,], 16 | [0b0000, 0b1111, 0b1000, 0b1000, 0b1110, 0b0001, 0b0001, 0b1110, 0b0000,], 17 | [0b0000, 0b0110, 0b1001, 0b1000, 0b0110, 0b1001, 0b1001, 0b0110, 0b0000,], 18 | [0b0000, 0b1111, 0b0001, 0b0001, 0b0010, 0b0100, 0b0100, 0b1000, 0b0000,], 19 | [0b0000, 0b0110, 0b1001, 0b1001, 0b0110, 0b1001, 0b1001, 0b0110, 0b0000,], 20 | [0b0000, 0b0110, 0b1001, 0b1001, 0b0110, 0b0001, 0b1001, 0b0110, 0b0000,], 21 | ] 22 | 23 | # configure I2C 24 | i2c = busio.I2C(board.SCL, board.SDA) 25 | 26 | # turn on LED drivers 27 | sdb = DigitalInOut(board.SDB) 28 | sdb.direction = Direction.OUTPUT 29 | sdb.value = True 30 | 31 | # set up the two LED drivers 32 | display = adafruit_is31fl3731.Matrix(i2c, address=0x74) 33 | display2 = adafruit_is31fl3731.Matrix(i2c, address=0x77) 34 | 35 | 36 | btnA = DigitalInOut(board.BTNA) 37 | btnA.pull = Pull.UP 38 | btnB = DigitalInOut(board.BTNB) 39 | btnB.pull = Pull.UP 40 | btnX = DigitalInOut(board.BTNX) 41 | btnX.pull = Pull.UP 42 | btnY = DigitalInOut(board.BTNY) 43 | btnY.pull = Pull.UP 44 | 45 | print(f"screen width: {display.width}") 46 | print(f"screen height: {display.height}") 47 | 48 | 49 | def spawn_food(): 50 | global food 51 | food = (randint(0, display.width * 2 - 1), randint(0, display.height - 1)) 52 | 53 | 54 | def set_pixel(pixel, brightness): 55 | if pixel[0] > display.width - 1: 56 | display2.pixel(pixel[0] - display.width, pixel[1], brightness) 57 | else: 58 | display.pixel(pixel[0], pixel[1], brightness) 59 | 60 | 61 | def clear(): 62 | display.fill(0) 63 | display2.fill(0) 64 | 65 | 66 | def draw_food(): 67 | set_pixel(food, 255) 68 | 69 | 70 | def move(): 71 | global score 72 | global last_move 73 | last_move = time.monotonic() 74 | prev_head = body[-1] 75 | if direction == 2: 76 | head = prev_head[0] % 32, (prev_head[1] - 1) % 9 77 | elif direction == -2: 78 | head = prev_head[0] % 32, (prev_head[1] + 1) % 9 79 | elif direction == 1: 80 | head = (prev_head[0] + 1) % 32, prev_head[1] % 9 81 | elif direction == -1: 82 | head = (prev_head[0] - 1) % 32, prev_head[1] % 9 83 | # delete tail 84 | if head == food: 85 | # food eaten! 86 | set_pixel(food, 0) 87 | score += 1 88 | draw_score() 89 | spawn_food() 90 | else: 91 | # delete tail 92 | set_pixel(body[0], 0) 93 | del body[0] 94 | # DEATH 95 | if head in body: 96 | clear() 97 | exit() 98 | 99 | set_pixel(head, 15) 100 | body.append(head) 101 | 102 | 103 | def handle_input(): 104 | global direction 105 | if not btnA.value: 106 | if (direction + 2) != 0: 107 | direction = 2 108 | elif not btnB.value: 109 | if (direction - 2) != 0: 110 | direction = -2 111 | elif not btnX.value: 112 | if (direction - 1) != 0: 113 | direction = -1 114 | elif not btnY.value: 115 | if (direction + 1) != 0: 116 | direction = 1 117 | 118 | 119 | def bits(n): 120 | for i in reversed(range(4)): 121 | yield (2 ** i & n) != 0 122 | 123 | 124 | def draw_score(): 125 | for offset, digit in enumerate(str(score)): 126 | number = numbers[int(digit)] 127 | for y, x_row in enumerate(number): 128 | for x, brightness in enumerate(bits(x_row)): 129 | set_pixel((1 + x + offset * 5, y), brightness) 130 | 131 | 132 | body = [(0, 0)] 133 | # 2 = up, -2 = down, -1 = left, 1 = right 134 | direction = 1 135 | score = 0 136 | frame = False 137 | last_move = time.monotonic() 138 | 139 | draw_score() 140 | spawn_food() 141 | 142 | while True: 143 | handle_input() 144 | time_since_last_move = time.monotonic() - last_move 145 | if time_since_last_move > 0.2: 146 | move() 147 | # draw food everytime 148 | draw_food() 149 | -------------------------------------------------------------------------------- /examples/startHere/code.py: -------------------------------------------------------------------------------- 1 | import board 2 | import time 3 | from digitalio import DigitalInOut, Direction, Pull 4 | import busio 5 | import adafruit_framebuf 6 | import adafruit_is31fl3731 7 | 8 | # configure I2C 9 | i2c = busio.I2C(board.SCL, board.SDA) 10 | 11 | # turn on LED drivers 12 | sdb = DigitalInOut(board.SDB) 13 | sdb.direction = Direction.OUTPUT 14 | sdb.value = True 15 | 16 | # set up the two LED drivers 17 | display = adafruit_is31fl3731.Matrix(i2c, address=0x74) 18 | display2 = adafruit_is31fl3731.Matrix(i2c, address=0x77) 19 | 20 | text_to_show = "BornHack 2020 - make clean" 21 | 22 | # Create a framebuffer for our display 23 | buf = bytearray(64) # 2 bytes tall x 32 wide = 64 bytes (9 bits is 2 bytes) 24 | fb = adafruit_framebuf.FrameBuffer( 25 | buf, display.width*2, display.height, adafruit_framebuf.MVLSB 26 | ) 27 | 28 | frame = 0 # start with frame 0 29 | while True: 30 | for i in range(len(text_to_show) * 9): 31 | fb.fill(0) 32 | fb.text(text_to_show, -i*2 + display.width*2, 1, color=1) 33 | 34 | # to improve the display flicker we can use two frame 35 | # fill the next frame with scrolling text, then 36 | # show it. 37 | display.frame(frame, show=False) 38 | display2.frame(frame, show=False) 39 | # turn all LEDs off 40 | display.fill(0) 41 | display2.fill(0) 42 | for x in range(display.width): 43 | # using the FrameBuffer text result 44 | bite = buf[x] 45 | for y in range(display.height): 46 | bit = 1 << y & bite 47 | # if bit > 0 then set the pixel brightness 48 | if bit: 49 | display.pixel(x, y, 30) 50 | 51 | for x in range(display2.width): 52 | # using the FrameBuffer text result 53 | bite = buf[x+16] 54 | for y in range(display2.height): 55 | bit = 1 << y & bite 56 | # if bit > 0 then set the pixel brightness 57 | if bit: 58 | display2.pixel(x, y, 30) 59 | 60 | # now that the frame is filled, show it. 61 | display.frame(frame, show=True) 62 | display2.frame(frame, show=True) 63 | frame = 0 if frame else 1 64 | -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name Power)(type KiCad)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Power.pretty)(options "")(descr "")) 3 | (lib (name Connectors)(type KiCad)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Connectors.pretty)(options "")(descr "")) 4 | (lib (name Buttons)(type KiCad)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Buttons.pretty)(options "")(descr "")) 5 | (lib (name badgelife_sao_v169bis)(type KiCad)(uri /Users/tf/Documents/Libraries/Badgelife_SAO_v169bis_20190321-0053/badgelife_sao_v169bis.pretty)(options "")(descr "")) 6 | (lib (name Opto)(type KiCad)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Opto.pretty)(options "")(descr "")) 7 | ) 8 | -------------------------------------------------------------------------------- /ir.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 6 7 7 | Title "Infrared transmit and receive" 8 | Date "" 9 | Rev "1.0" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L device:LED_ALT D290 18 | U 1 1 5EE5B70A 19 | P 2400 3000 20 | F 0 "D290" V 2439 2882 50 0000 R CNN 21 | F 1 "IR19-21C/TR8(AQL)" V 2348 2882 50 0000 R CNN 22 | F 2 "LEDs:LED_0603" H 2400 3000 50 0001 C CNN 23 | F 3 "~" H 2400 3000 50 0001 C CNN 24 | 1 2400 3000 25 | 0 -1 -1 0 26 | $EndComp 27 | $Comp 28 | L device:R R8 29 | U 1 1 5EE5F24C 30 | P 2400 2600 31 | F 0 "R8" H 2470 2646 50 0000 L CNN 32 | F 1 "100" H 2470 2555 50 0000 L CNN 33 | F 2 "Resistors_SMD:R_0603" V 2330 2600 50 0001 C CNN 34 | F 3 "~" H 2400 2600 50 0001 C CNN 35 | 1 2400 2600 36 | 1 0 0 -1 37 | $EndComp 38 | $Comp 39 | L power:GND #PWR050 40 | U 1 1 5EE5FD22 41 | P 2400 3750 42 | F 0 "#PWR050" H 2400 3500 50 0001 C CNN 43 | F 1 "GND" H 2405 3577 50 0000 C CNN 44 | F 2 "" H 2400 3750 50 0001 C CNN 45 | F 3 "" H 2400 3750 50 0001 C CNN 46 | 1 2400 3750 47 | 1 0 0 -1 48 | $EndComp 49 | $Comp 50 | L power:GND #PWR052 51 | U 1 1 5EE60FD0 52 | P 3900 3750 53 | F 0 "#PWR052" H 3900 3500 50 0001 C CNN 54 | F 1 "GND" H 3905 3577 50 0000 C CNN 55 | F 2 "" H 3900 3750 50 0001 C CNN 56 | F 3 "" H 3900 3750 50 0001 C CNN 57 | 1 3900 3750 58 | 1 0 0 -1 59 | $EndComp 60 | Text HLabel 1600 3450 0 50 Input ~ 0 61 | TX 62 | Text HLabel 4500 3200 2 50 Output ~ 0 63 | RX 64 | $Comp 65 | L Transistor_BJT:BC817 Q3 66 | U 1 1 5F038B96 67 | P 2300 3450 68 | F 0 "Q3" H 2491 3496 50 0000 L CNN 69 | F 1 "BC817" H 2491 3405 50 0000 L CNN 70 | F 2 "TO_SOT_Packages_SMD:SOT-23" H 2500 3375 50 0001 L CIN 71 | F 3 "http://www.fairchildsemi.com/ds/BC/BC817.pdf" H 2300 3450 50 0001 L CNN 72 | 1 2300 3450 73 | 1 0 0 -1 74 | $EndComp 75 | $Comp 76 | L power:VCC #PWR072 77 | U 1 1 5F03FA4A 78 | P 2400 2250 79 | F 0 "#PWR072" H 2400 2100 50 0001 C CNN 80 | F 1 "VCC" H 2417 2423 50 0000 C CNN 81 | F 2 "" H 2400 2250 50 0001 C CNN 82 | F 3 "" H 2400 2250 50 0001 C CNN 83 | 1 2400 2250 84 | 1 0 0 -1 85 | $EndComp 86 | Wire Wire Line 87 | 2400 2250 2400 2450 88 | Wire Wire Line 89 | 2400 2750 2400 2850 90 | Wire Wire Line 91 | 2400 3150 2400 3250 92 | Wire Wire Line 93 | 2400 3650 2400 3750 94 | $Comp 95 | L device:R R15 96 | U 1 1 5F0409F1 97 | P 1850 3450 98 | F 0 "R15" H 1920 3496 50 0000 L CNN 99 | F 1 "1k" H 1920 3405 50 0000 L CNN 100 | F 2 "Resistors_SMD:R_0603" V 1780 3450 50 0001 C CNN 101 | F 3 "~" H 1850 3450 50 0001 C CNN 102 | 1 1850 3450 103 | 0 1 1 0 104 | $EndComp 105 | Wire Wire Line 106 | 2000 3450 2100 3450 107 | Wire Wire Line 108 | 1600 3450 1700 3450 109 | $Comp 110 | L Opto:IRM-Hxx6T U6 111 | U 1 1 5F042EAF 112 | P 3900 3200 113 | F 0 "U6" H 3622 3246 50 0000 R CNN 114 | F 1 "IRM-H6xxT" H 3622 3155 50 0000 R CNN 115 | F 2 "Opto:IRM-H6xxT" H 3900 3200 50 0001 C CNN 116 | F 3 "" H 3900 3200 50 0001 C CNN 117 | 1 3900 3200 118 | 1 0 0 -1 119 | $EndComp 120 | Wire Wire Line 121 | 4000 3650 4000 3700 122 | Wire Wire Line 123 | 4000 3700 3900 3700 124 | Wire Wire Line 125 | 3800 3700 3800 3650 126 | Wire Wire Line 127 | 3900 3750 3900 3700 128 | Connection ~ 3900 3700 129 | Wire Wire Line 130 | 3900 3700 3800 3700 131 | Wire Wire Line 132 | 4250 3200 4500 3200 133 | $Comp 134 | L device:C C18 135 | U 1 1 5F0FDF0F 136 | P 4350 2600 137 | F 0 "C18" H 4465 2646 50 0000 L CNN 138 | F 1 "2.2uF" H 4465 2555 50 0000 L CNN 139 | F 2 "Capacitors_SMD:C_0603" H 4388 2450 50 0001 C CNN 140 | F 3 "~" H 4350 2600 50 0001 C CNN 141 | 1 4350 2600 142 | 1 0 0 -1 143 | $EndComp 144 | $Comp 145 | L power:VCC #PWR074 146 | U 1 1 5F0FF8F2 147 | P 5050 2250 148 | F 0 "#PWR074" H 5050 2100 50 0001 C CNN 149 | F 1 "VCC" H 5067 2423 50 0000 C CNN 150 | F 2 "" H 5050 2250 50 0001 C CNN 151 | F 3 "" H 5050 2250 50 0001 C CNN 152 | 1 5050 2250 153 | 1 0 0 -1 154 | $EndComp 155 | $Comp 156 | L power:GND #PWR073 157 | U 1 1 5F0FFC16 158 | P 4350 2900 159 | F 0 "#PWR073" H 4350 2650 50 0001 C CNN 160 | F 1 "GND" H 4355 2727 50 0000 C CNN 161 | F 2 "" H 4350 2900 50 0001 C CNN 162 | F 3 "" H 4350 2900 50 0001 C CNN 163 | 1 4350 2900 164 | 1 0 0 -1 165 | $EndComp 166 | Wire Wire Line 167 | 4350 2300 4350 2450 168 | Wire Wire Line 169 | 4350 2750 4350 2900 170 | $Comp 171 | L device:R R16 172 | U 1 1 5F1012CF 173 | P 4700 2300 174 | F 0 "R16" H 4770 2346 50 0000 L CNN 175 | F 1 "100" H 4770 2255 50 0000 L CNN 176 | F 2 "Resistors_SMD:R_0603" V 4630 2300 50 0001 C CNN 177 | F 3 "~" H 4700 2300 50 0001 C CNN 178 | 1 4700 2300 179 | 0 -1 -1 0 180 | $EndComp 181 | Wire Wire Line 182 | 5050 2250 5050 2300 183 | Wire Wire Line 184 | 5050 2300 4850 2300 185 | Wire Wire Line 186 | 3900 2300 3900 2750 187 | Connection ~ 4350 2300 188 | Wire Wire Line 189 | 4350 2300 3900 2300 190 | Wire Wire Line 191 | 4350 2300 4550 2300 192 | $EndSCHEMATC 193 | -------------------------------------------------------------------------------- /issi_charlie_9x16.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 2 7 7 | Title "IS31FL3731 Charlieplex 9x16 matrix" 8 | Date "" 9 | Rev "1.0" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L Driver_LED:IS31FL3731-QF U1 18 | U 1 1 5EC90B4E 19 | P 3250 2800 20 | AR Path="/5EC90811/5EC90B4E" Ref="U1" Part="1" 21 | AR Path="/5F64D6C7/5EC90B4E" Ref="U2" Part="1" 22 | F 0 "U1" H 3250 2800 50 0000 C CNN 23 | F 1 "IS31FL3731-QF" V 2950 2150 50 0000 C CNN 24 | F 2 "Housings_DFN_QFN:QFN-28-1EP_4x4mm_Pitch0.4mm" H 3250 2800 50 0001 C CNN 25 | F 3 "http://www.issi.com/WW/pdf/31FL3731.pdf" H 3250 2800 50 0001 C CNN 26 | 1 3250 2800 27 | 1 0 0 -1 28 | $EndComp 29 | Text HLabel 2750 1900 0 50 BiDi ~ 0 30 | SDA 31 | Text HLabel 2750 2000 0 50 BiDi ~ 0 32 | SCL 33 | Text HLabel 2750 2100 0 50 Input ~ 0 34 | ADDRESS 35 | $Comp 36 | L power:GND #PWR010 37 | U 1 1 5EC967D5 38 | P 3250 3900 39 | AR Path="/5EC90811/5EC967D5" Ref="#PWR010" Part="1" 40 | AR Path="/5F64D6C7/5EC967D5" Ref="#PWR018" Part="1" 41 | F 0 "#PWR010" H 3250 3650 50 0001 C CNN 42 | F 1 "GND" H 3255 3727 50 0000 C CNN 43 | F 2 "" H 3250 3900 50 0001 C CNN 44 | F 3 "" H 3250 3900 50 0001 C CNN 45 | 1 3250 3900 46 | 1 0 0 -1 47 | $EndComp 48 | Text HLabel 2750 2300 0 50 Input ~ 0 49 | ~SDB 50 | Text HLabel 2750 2400 0 50 Output ~ 0 51 | ~INTB 52 | $Comp 53 | L device:C C3 54 | U 1 1 5EC984F2 55 | P 2050 3200 56 | AR Path="/5EC90811/5EC984F2" Ref="C3" Part="1" 57 | AR Path="/5F64D6C7/5EC984F2" Ref="C6" Part="1" 58 | F 0 "C3" H 2165 3246 50 0000 L CNN 59 | F 1 "100nF" H 2165 3155 50 0000 L CNN 60 | F 2 "Capacitors_SMD:C_0603" H 2088 3050 50 0001 C CNN 61 | F 3 "~" H 2050 3200 50 0001 C CNN 62 | 1 2050 3200 63 | 1 0 0 -1 64 | $EndComp 65 | $Comp 66 | L device:R R1 67 | U 1 1 5EC99B87 68 | P 2500 3200 69 | AR Path="/5EC90811/5EC99B87" Ref="R1" Part="1" 70 | AR Path="/5F64D6C7/5EC99B87" Ref="R2" Part="1" 71 | F 0 "R1" H 2570 3246 50 0000 L CNN 72 | F 1 "20k" H 2570 3155 50 0000 L CNN 73 | F 2 "Resistors_SMD:R_0603" V 2430 3200 50 0001 C CNN 74 | F 3 "~" H 2500 3200 50 0001 C CNN 75 | 1 2500 3200 76 | 1 0 0 -1 77 | $EndComp 78 | $Comp 79 | L power:GND #PWR08 80 | U 1 1 5EC9ABDC 81 | P 2500 3500 82 | AR Path="/5EC90811/5EC9ABDC" Ref="#PWR08" Part="1" 83 | AR Path="/5F64D6C7/5EC9ABDC" Ref="#PWR016" Part="1" 84 | F 0 "#PWR08" H 2500 3250 50 0001 C CNN 85 | F 1 "GND" H 2505 3327 50 0000 C CNN 86 | F 2 "" H 2500 3500 50 0001 C CNN 87 | F 3 "" H 2500 3500 50 0001 C CNN 88 | 1 2500 3500 89 | 1 0 0 -1 90 | $EndComp 91 | $Comp 92 | L power:GND #PWR07 93 | U 1 1 5EC9B121 94 | P 2050 3500 95 | AR Path="/5EC90811/5EC9B121" Ref="#PWR07" Part="1" 96 | AR Path="/5F64D6C7/5EC9B121" Ref="#PWR015" Part="1" 97 | F 0 "#PWR07" H 2050 3250 50 0001 C CNN 98 | F 1 "GND" H 2055 3327 50 0000 C CNN 99 | F 2 "" H 2050 3500 50 0001 C CNN 100 | F 3 "" H 2050 3500 50 0001 C CNN 101 | 1 2050 3500 102 | 1 0 0 -1 103 | $EndComp 104 | Wire Wire Line 105 | 2750 2900 2500 2900 106 | Wire Wire Line 107 | 2500 2900 2500 3050 108 | Wire Wire Line 109 | 2500 3350 2500 3500 110 | Wire Wire Line 111 | 2050 3500 2050 3350 112 | Wire Wire Line 113 | 2050 3050 2050 2700 114 | Wire Wire Line 115 | 2050 2700 2750 2700 116 | $Comp 117 | L device:C C1 118 | U 1 1 5ECA0503 119 | P 1550 2000 120 | AR Path="/5EC90811/5ECA0503" Ref="C1" Part="1" 121 | AR Path="/5F64D6C7/5ECA0503" Ref="C4" Part="1" 122 | F 0 "C1" H 1665 2046 50 0000 L CNN 123 | F 1 "1uF" H 1665 1955 50 0000 L CNN 124 | F 2 "Capacitors_SMD:C_0603" H 1588 1850 50 0001 C CNN 125 | F 3 "~" H 1550 2000 50 0001 C CNN 126 | 1 1550 2000 127 | 1 0 0 -1 128 | $EndComp 129 | $Comp 130 | L device:C C2 131 | U 1 1 5ECA1718 132 | P 1950 2000 133 | AR Path="/5EC90811/5ECA1718" Ref="C2" Part="1" 134 | AR Path="/5F64D6C7/5ECA1718" Ref="C5" Part="1" 135 | F 0 "C2" H 2065 2046 50 0000 L CNN 136 | F 1 "100nF" H 2065 1955 50 0000 L CNN 137 | F 2 "Capacitors_SMD:C_0603" H 1988 1850 50 0001 C CNN 138 | F 3 "~" H 1950 2000 50 0001 C CNN 139 | 1 1950 2000 140 | 1 0 0 -1 141 | $EndComp 142 | $Comp 143 | L power:GND #PWR0101 144 | U 1 1 5ECA1D26 145 | P 1550 2300 146 | AR Path="/5EC90811/5ECA1D26" Ref="#PWR0101" Part="1" 147 | AR Path="/5F64D6C7/5ECA1D26" Ref="#PWR012" Part="1" 148 | F 0 "#PWR0101" H 1550 2050 50 0001 C CNN 149 | F 1 "GND" H 1555 2127 50 0000 C CNN 150 | F 2 "" H 1550 2300 50 0001 C CNN 151 | F 3 "" H 1550 2300 50 0001 C CNN 152 | 1 1550 2300 153 | 1 0 0 -1 154 | $EndComp 155 | $Comp 156 | L power:GND #PWR06 157 | U 1 1 5ECA219F 158 | P 1950 2300 159 | AR Path="/5EC90811/5ECA219F" Ref="#PWR06" Part="1" 160 | AR Path="/5F64D6C7/5ECA219F" Ref="#PWR014" Part="1" 161 | F 0 "#PWR06" H 1950 2050 50 0001 C CNN 162 | F 1 "GND" H 1955 2127 50 0000 C CNN 163 | F 2 "" H 1950 2300 50 0001 C CNN 164 | F 3 "" H 1950 2300 50 0001 C CNN 165 | 1 1950 2300 166 | 1 0 0 -1 167 | $EndComp 168 | Wire Wire Line 169 | 1950 1700 1950 1850 170 | Wire Wire Line 171 | 1950 2150 1950 2300 172 | Wire Wire Line 173 | 1550 2300 1550 2150 174 | Wire Wire Line 175 | 1550 1850 1550 1700 176 | $Comp 177 | L device:LED_Small_ALT D1 178 | U 1 1 5ECAB43A 179 | P 4950 1800 180 | AR Path="/5EC90811/5ECAB43A" Ref="D1" Part="1" 181 | AR Path="/5F64D6C7/5ECAB43A" Ref="D145" Part="1" 182 | F 0 "D1" H 4900 1700 50 0000 L CNN 183 | F 1 "LED_Small_ALT" V 4995 1898 50 0001 L CNN 184 | F 2 "LEDs:LED_0603" V 4950 1800 50 0001 C CNN 185 | F 3 "~" V 4950 1800 50 0001 C CNN 186 | 1 4950 1800 187 | 0 1 1 0 188 | $EndComp 189 | $Comp 190 | L device:LED_Small_ALT D2 191 | U 1 1 5ECADC4D 192 | P 4950 2050 193 | AR Path="/5EC90811/5ECADC4D" Ref="D2" Part="1" 194 | AR Path="/5F64D6C7/5ECADC4D" Ref="D146" Part="1" 195 | F 0 "D2" H 4900 1950 50 0000 L CNN 196 | F 1 "LED_Small_ALT" V 4995 2148 50 0001 L CNN 197 | F 2 "LEDs:LED_0603" V 4950 2050 50 0001 C CNN 198 | F 3 "~" V 4950 2050 50 0001 C CNN 199 | 1 4950 2050 200 | 0 1 1 0 201 | $EndComp 202 | $Comp 203 | L device:LED_Small_ALT D3 204 | U 1 1 5ECAEC69 205 | P 4950 2300 206 | AR Path="/5EC90811/5ECAEC69" Ref="D3" Part="1" 207 | AR Path="/5F64D6C7/5ECAEC69" Ref="D147" Part="1" 208 | F 0 "D3" H 4900 2200 50 0000 L CNN 209 | F 1 "LED_Small_ALT" V 4995 2398 50 0001 L CNN 210 | F 2 "LEDs:LED_0603" V 4950 2300 50 0001 C CNN 211 | F 3 "~" V 4950 2300 50 0001 C CNN 212 | 1 4950 2300 213 | 0 1 1 0 214 | $EndComp 215 | Wire Wire Line 216 | 4950 2150 4800 2150 217 | Wire Wire Line 218 | 4950 2400 4800 2400 219 | $Comp 220 | L device:LED_Small_ALT D4 221 | U 1 1 5ECB0FE9 222 | P 4950 2550 223 | AR Path="/5EC90811/5ECB0FE9" Ref="D4" Part="1" 224 | AR Path="/5F64D6C7/5ECB0FE9" Ref="D148" Part="1" 225 | F 0 "D4" H 4900 2450 50 0000 L CNN 226 | F 1 "LED_Small_ALT" V 4995 2648 50 0001 L CNN 227 | F 2 "LEDs:LED_0603" V 4950 2550 50 0001 C CNN 228 | F 3 "~" V 4950 2550 50 0001 C CNN 229 | 1 4950 2550 230 | 0 1 1 0 231 | $EndComp 232 | $Comp 233 | L device:LED_Small_ALT D5 234 | U 1 1 5ECB0FF3 235 | P 4950 2800 236 | AR Path="/5EC90811/5ECB0FF3" Ref="D5" Part="1" 237 | AR Path="/5F64D6C7/5ECB0FF3" Ref="D149" Part="1" 238 | F 0 "D5" H 4900 2700 50 0000 L CNN 239 | F 1 "LED_Small_ALT" V 4995 2898 50 0001 L CNN 240 | F 2 "LEDs:LED_0603" V 4950 2800 50 0001 C CNN 241 | F 3 "~" V 4950 2800 50 0001 C CNN 242 | 1 4950 2800 243 | 0 1 1 0 244 | $EndComp 245 | Wire Wire Line 246 | 4950 2650 4800 2650 247 | Wire Wire Line 248 | 4950 2900 4800 2900 249 | $Comp 250 | L device:LED_Small_ALT D6 251 | U 1 1 5ECB2EC1 252 | P 4950 3050 253 | AR Path="/5EC90811/5ECB2EC1" Ref="D6" Part="1" 254 | AR Path="/5F64D6C7/5ECB2EC1" Ref="D150" Part="1" 255 | F 0 "D6" H 4900 2950 50 0000 L CNN 256 | F 1 "LED_Small_ALT" V 4995 3148 50 0001 L CNN 257 | F 2 "LEDs:LED_0603" V 4950 3050 50 0001 C CNN 258 | F 3 "~" V 4950 3050 50 0001 C CNN 259 | 1 4950 3050 260 | 0 1 1 0 261 | $EndComp 262 | $Comp 263 | L device:LED_Small_ALT D7 264 | U 1 1 5ECB2ECB 265 | P 4950 3300 266 | AR Path="/5EC90811/5ECB2ECB" Ref="D7" Part="1" 267 | AR Path="/5F64D6C7/5ECB2ECB" Ref="D151" Part="1" 268 | F 0 "D7" H 4900 3200 50 0000 L CNN 269 | F 1 "LED_Small_ALT" V 4995 3398 50 0001 L CNN 270 | F 2 "LEDs:LED_0603" V 4950 3300 50 0001 C CNN 271 | F 3 "~" V 4950 3300 50 0001 C CNN 272 | 1 4950 3300 273 | 0 1 1 0 274 | $EndComp 275 | Wire Wire Line 276 | 4950 3150 4800 3150 277 | Wire Wire Line 278 | 4950 3400 4800 3400 279 | $Comp 280 | L device:LED_Small_ALT D8 281 | U 1 1 5ECB2EDD 282 | P 4950 3550 283 | AR Path="/5EC90811/5ECB2EDD" Ref="D8" Part="1" 284 | AR Path="/5F64D6C7/5ECB2EDD" Ref="D152" Part="1" 285 | F 0 "D8" H 4900 3450 50 0000 L CNN 286 | F 1 "LED_Small_ALT" V 4995 3648 50 0001 L CNN 287 | F 2 "LEDs:LED_0603" V 4950 3550 50 0001 C CNN 288 | F 3 "~" V 4950 3550 50 0001 C CNN 289 | 1 4950 3550 290 | 0 1 1 0 291 | $EndComp 292 | $Comp 293 | L device:LED_Small_ALT D9 294 | U 1 1 5ECB2EE7 295 | P 4950 3800 296 | AR Path="/5EC90811/5ECB2EE7" Ref="D9" Part="1" 297 | AR Path="/5F64D6C7/5ECB2EE7" Ref="D153" Part="1" 298 | F 0 "D9" H 4900 3700 50 0000 L CNN 299 | F 1 "LED_Small_ALT" V 4995 3898 50 0001 L CNN 300 | F 2 "LEDs:LED_0603" V 4950 3800 50 0001 C CNN 301 | F 3 "~" V 4950 3800 50 0001 C CNN 302 | 1 4950 3800 303 | 0 1 1 0 304 | $EndComp 305 | Wire Wire Line 306 | 4950 3650 4800 3650 307 | Wire Wire Line 308 | 4950 3900 4800 3900 309 | Wire Wire Line 310 | 4800 3900 4800 3650 311 | Wire Wire Line 312 | 4800 1700 4950 1700 313 | Connection ~ 4800 2150 314 | Wire Wire Line 315 | 4800 2150 4800 1700 316 | Connection ~ 4800 2400 317 | Wire Wire Line 318 | 4800 2400 4800 2150 319 | Connection ~ 4800 2650 320 | Wire Wire Line 321 | 4800 2650 4800 2400 322 | Connection ~ 4800 2900 323 | Wire Wire Line 324 | 4800 2900 4800 2650 325 | Connection ~ 4800 3150 326 | Wire Wire Line 327 | 4800 3150 4800 2900 328 | Connection ~ 4800 3400 329 | Wire Wire Line 330 | 4800 3400 4800 3150 331 | Connection ~ 4800 3650 332 | Wire Wire Line 333 | 4800 3650 4800 3400 334 | $Comp 335 | L device:LED_Small_ALT D10 336 | U 1 1 5ECE8721 337 | P 5250 1800 338 | AR Path="/5EC90811/5ECE8721" Ref="D10" Part="1" 339 | AR Path="/5F64D6C7/5ECE8721" Ref="D154" Part="1" 340 | F 0 "D10" H 5200 1700 50 0000 L CNN 341 | F 1 "LED_Small_ALT" V 5295 1898 50 0001 L CNN 342 | F 2 "LEDs:LED_0603" V 5250 1800 50 0001 C CNN 343 | F 3 "~" V 5250 1800 50 0001 C CNN 344 | 1 5250 1800 345 | 0 1 1 0 346 | $EndComp 347 | $Comp 348 | L device:LED_Small_ALT D11 349 | U 1 1 5ECE872B 350 | P 5250 2050 351 | AR Path="/5EC90811/5ECE872B" Ref="D11" Part="1" 352 | AR Path="/5F64D6C7/5ECE872B" Ref="D155" Part="1" 353 | F 0 "D11" H 5200 1950 50 0000 L CNN 354 | F 1 "LED_Small_ALT" V 5295 2148 50 0001 L CNN 355 | F 2 "LEDs:LED_0603" V 5250 2050 50 0001 C CNN 356 | F 3 "~" V 5250 2050 50 0001 C CNN 357 | 1 5250 2050 358 | 0 1 1 0 359 | $EndComp 360 | $Comp 361 | L device:LED_Small_ALT D12 362 | U 1 1 5ECE8735 363 | P 5250 2300 364 | AR Path="/5EC90811/5ECE8735" Ref="D12" Part="1" 365 | AR Path="/5F64D6C7/5ECE8735" Ref="D156" Part="1" 366 | F 0 "D12" H 5200 2200 50 0000 L CNN 367 | F 1 "LED_Small_ALT" V 5295 2398 50 0001 L CNN 368 | F 2 "LEDs:LED_0603" V 5250 2300 50 0001 C CNN 369 | F 3 "~" V 5250 2300 50 0001 C CNN 370 | 1 5250 2300 371 | 0 1 1 0 372 | $EndComp 373 | Wire Wire Line 374 | 5250 2400 5100 2400 375 | $Comp 376 | L device:LED_Small_ALT D13 377 | U 1 1 5ECE8741 378 | P 5250 2550 379 | AR Path="/5EC90811/5ECE8741" Ref="D13" Part="1" 380 | AR Path="/5F64D6C7/5ECE8741" Ref="D157" Part="1" 381 | F 0 "D13" H 5200 2450 50 0000 L CNN 382 | F 1 "LED_Small_ALT" V 5295 2648 50 0001 L CNN 383 | F 2 "LEDs:LED_0603" V 5250 2550 50 0001 C CNN 384 | F 3 "~" V 5250 2550 50 0001 C CNN 385 | 1 5250 2550 386 | 0 1 1 0 387 | $EndComp 388 | $Comp 389 | L device:LED_Small_ALT D14 390 | U 1 1 5ECE874B 391 | P 5250 2800 392 | AR Path="/5EC90811/5ECE874B" Ref="D14" Part="1" 393 | AR Path="/5F64D6C7/5ECE874B" Ref="D158" Part="1" 394 | F 0 "D14" H 5200 2700 50 0000 L CNN 395 | F 1 "LED_Small_ALT" V 5295 2898 50 0001 L CNN 396 | F 2 "LEDs:LED_0603" V 5250 2800 50 0001 C CNN 397 | F 3 "~" V 5250 2800 50 0001 C CNN 398 | 1 5250 2800 399 | 0 1 1 0 400 | $EndComp 401 | Wire Wire Line 402 | 5250 2650 5100 2650 403 | Wire Wire Line 404 | 5250 2900 5100 2900 405 | $Comp 406 | L device:LED_Small_ALT D15 407 | U 1 1 5ECE8757 408 | P 5250 3050 409 | AR Path="/5EC90811/5ECE8757" Ref="D15" Part="1" 410 | AR Path="/5F64D6C7/5ECE8757" Ref="D159" Part="1" 411 | F 0 "D15" H 5200 2950 50 0000 L CNN 412 | F 1 "LED_Small_ALT" V 5295 3148 50 0001 L CNN 413 | F 2 "LEDs:LED_0603" V 5250 3050 50 0001 C CNN 414 | F 3 "~" V 5250 3050 50 0001 C CNN 415 | 1 5250 3050 416 | 0 1 1 0 417 | $EndComp 418 | $Comp 419 | L device:LED_Small_ALT D16 420 | U 1 1 5ECE8761 421 | P 5250 3300 422 | AR Path="/5EC90811/5ECE8761" Ref="D16" Part="1" 423 | AR Path="/5F64D6C7/5ECE8761" Ref="D160" Part="1" 424 | F 0 "D16" H 5200 3200 50 0000 L CNN 425 | F 1 "LED_Small_ALT" V 5295 3398 50 0001 L CNN 426 | F 2 "LEDs:LED_0603" V 5250 3300 50 0001 C CNN 427 | F 3 "~" V 5250 3300 50 0001 C CNN 428 | 1 5250 3300 429 | 0 1 1 0 430 | $EndComp 431 | Wire Wire Line 432 | 5250 3150 5100 3150 433 | Wire Wire Line 434 | 5250 3400 5100 3400 435 | $Comp 436 | L device:LED_Small_ALT D17 437 | U 1 1 5ECE876D 438 | P 5250 3550 439 | AR Path="/5EC90811/5ECE876D" Ref="D17" Part="1" 440 | AR Path="/5F64D6C7/5ECE876D" Ref="D161" Part="1" 441 | F 0 "D17" H 5200 3450 50 0000 L CNN 442 | F 1 "LED_Small_ALT" V 5295 3648 50 0001 L CNN 443 | F 2 "LEDs:LED_0603" V 5250 3550 50 0001 C CNN 444 | F 3 "~" V 5250 3550 50 0001 C CNN 445 | 1 5250 3550 446 | 0 1 1 0 447 | $EndComp 448 | $Comp 449 | L device:LED_Small_ALT D18 450 | U 1 1 5ECE8777 451 | P 5250 3800 452 | AR Path="/5EC90811/5ECE8777" Ref="D18" Part="1" 453 | AR Path="/5F64D6C7/5ECE8777" Ref="D162" Part="1" 454 | F 0 "D18" H 5200 3700 50 0000 L CNN 455 | F 1 "LED_Small_ALT" V 5295 3898 50 0001 L CNN 456 | F 2 "LEDs:LED_0603" V 5250 3800 50 0001 C CNN 457 | F 3 "~" V 5250 3800 50 0001 C CNN 458 | 1 5250 3800 459 | 0 1 1 0 460 | $EndComp 461 | Wire Wire Line 462 | 5250 3650 5100 3650 463 | Wire Wire Line 464 | 5250 3900 5100 3900 465 | Wire Wire Line 466 | 5100 3900 5100 3650 467 | Connection ~ 5100 2400 468 | Connection ~ 5100 2650 469 | Wire Wire Line 470 | 5100 2650 5100 2400 471 | Connection ~ 5100 2900 472 | Wire Wire Line 473 | 5100 2900 5100 2650 474 | Connection ~ 5100 3150 475 | Wire Wire Line 476 | 5100 3150 5100 2900 477 | Connection ~ 5100 3400 478 | Wire Wire Line 479 | 5100 3400 5100 3150 480 | Connection ~ 5100 3650 481 | Wire Wire Line 482 | 5100 3650 5100 3400 483 | Wire Wire Line 484 | 4800 1700 4650 1700 485 | Connection ~ 4800 1700 486 | Wire Wire Line 487 | 5100 1900 4950 1900 488 | $Comp 489 | L device:LED_Small_ALT D19 490 | U 1 1 5ECF28F4 491 | P 5550 1800 492 | AR Path="/5EC90811/5ECF28F4" Ref="D19" Part="1" 493 | AR Path="/5F64D6C7/5ECF28F4" Ref="D163" Part="1" 494 | F 0 "D19" H 5500 1700 50 0000 L CNN 495 | F 1 "LED_Small_ALT" V 5595 1898 50 0001 L CNN 496 | F 2 "LEDs:LED_0603" V 5550 1800 50 0001 C CNN 497 | F 3 "~" V 5550 1800 50 0001 C CNN 498 | 1 5550 1800 499 | 0 1 1 0 500 | $EndComp 501 | $Comp 502 | L device:LED_Small_ALT D20 503 | U 1 1 5ECF28FE 504 | P 5550 2050 505 | AR Path="/5EC90811/5ECF28FE" Ref="D20" Part="1" 506 | AR Path="/5F64D6C7/5ECF28FE" Ref="D164" Part="1" 507 | F 0 "D20" H 5500 1950 50 0000 L CNN 508 | F 1 "LED_Small_ALT" V 5595 2148 50 0001 L CNN 509 | F 2 "LEDs:LED_0603" V 5550 2050 50 0001 C CNN 510 | F 3 "~" V 5550 2050 50 0001 C CNN 511 | 1 5550 2050 512 | 0 1 1 0 513 | $EndComp 514 | $Comp 515 | L device:LED_Small_ALT D21 516 | U 1 1 5ECF2908 517 | P 5550 2300 518 | AR Path="/5EC90811/5ECF2908" Ref="D21" Part="1" 519 | AR Path="/5F64D6C7/5ECF2908" Ref="D165" Part="1" 520 | F 0 "D21" H 5500 2200 50 0000 L CNN 521 | F 1 "LED_Small_ALT" V 5595 2398 50 0001 L CNN 522 | F 2 "LEDs:LED_0603" V 5550 2300 50 0001 C CNN 523 | F 3 "~" V 5550 2300 50 0001 C CNN 524 | 1 5550 2300 525 | 0 1 1 0 526 | $EndComp 527 | $Comp 528 | L device:LED_Small_ALT D22 529 | U 1 1 5ECF2914 530 | P 5550 2550 531 | AR Path="/5EC90811/5ECF2914" Ref="D22" Part="1" 532 | AR Path="/5F64D6C7/5ECF2914" Ref="D166" Part="1" 533 | F 0 "D22" H 5500 2450 50 0000 L CNN 534 | F 1 "LED_Small_ALT" V 5595 2648 50 0001 L CNN 535 | F 2 "LEDs:LED_0603" V 5550 2550 50 0001 C CNN 536 | F 3 "~" V 5550 2550 50 0001 C CNN 537 | 1 5550 2550 538 | 0 1 1 0 539 | $EndComp 540 | $Comp 541 | L device:LED_Small_ALT D23 542 | U 1 1 5ECF291E 543 | P 5550 2800 544 | AR Path="/5EC90811/5ECF291E" Ref="D23" Part="1" 545 | AR Path="/5F64D6C7/5ECF291E" Ref="D167" Part="1" 546 | F 0 "D23" H 5500 2700 50 0000 L CNN 547 | F 1 "LED_Small_ALT" V 5595 2898 50 0001 L CNN 548 | F 2 "LEDs:LED_0603" V 5550 2800 50 0001 C CNN 549 | F 3 "~" V 5550 2800 50 0001 C CNN 550 | 1 5550 2800 551 | 0 1 1 0 552 | $EndComp 553 | Wire Wire Line 554 | 5550 2650 5400 2650 555 | Wire Wire Line 556 | 5550 2900 5400 2900 557 | $Comp 558 | L device:LED_Small_ALT D24 559 | U 1 1 5ECF292A 560 | P 5550 3050 561 | AR Path="/5EC90811/5ECF292A" Ref="D24" Part="1" 562 | AR Path="/5F64D6C7/5ECF292A" Ref="D168" Part="1" 563 | F 0 "D24" H 5500 2950 50 0000 L CNN 564 | F 1 "LED_Small_ALT" V 5595 3148 50 0001 L CNN 565 | F 2 "LEDs:LED_0603" V 5550 3050 50 0001 C CNN 566 | F 3 "~" V 5550 3050 50 0001 C CNN 567 | 1 5550 3050 568 | 0 1 1 0 569 | $EndComp 570 | $Comp 571 | L device:LED_Small_ALT D25 572 | U 1 1 5ECF2934 573 | P 5550 3300 574 | AR Path="/5EC90811/5ECF2934" Ref="D25" Part="1" 575 | AR Path="/5F64D6C7/5ECF2934" Ref="D169" Part="1" 576 | F 0 "D25" H 5500 3200 50 0000 L CNN 577 | F 1 "LED_Small_ALT" V 5595 3398 50 0001 L CNN 578 | F 2 "LEDs:LED_0603" V 5550 3300 50 0001 C CNN 579 | F 3 "~" V 5550 3300 50 0001 C CNN 580 | 1 5550 3300 581 | 0 1 1 0 582 | $EndComp 583 | Wire Wire Line 584 | 5550 3150 5400 3150 585 | Wire Wire Line 586 | 5550 3400 5400 3400 587 | $Comp 588 | L device:LED_Small_ALT D26 589 | U 1 1 5ECF2940 590 | P 5550 3550 591 | AR Path="/5EC90811/5ECF2940" Ref="D26" Part="1" 592 | AR Path="/5F64D6C7/5ECF2940" Ref="D170" Part="1" 593 | F 0 "D26" H 5500 3450 50 0000 L CNN 594 | F 1 "LED_Small_ALT" V 5595 3648 50 0001 L CNN 595 | F 2 "LEDs:LED_0603" V 5550 3550 50 0001 C CNN 596 | F 3 "~" V 5550 3550 50 0001 C CNN 597 | 1 5550 3550 598 | 0 1 1 0 599 | $EndComp 600 | $Comp 601 | L device:LED_Small_ALT D27 602 | U 1 1 5ECF294A 603 | P 5550 3800 604 | AR Path="/5EC90811/5ECF294A" Ref="D27" Part="1" 605 | AR Path="/5F64D6C7/5ECF294A" Ref="D171" Part="1" 606 | F 0 "D27" H 5500 3700 50 0000 L CNN 607 | F 1 "LED_Small_ALT" V 5595 3898 50 0001 L CNN 608 | F 2 "LEDs:LED_0603" V 5550 3800 50 0001 C CNN 609 | F 3 "~" V 5550 3800 50 0001 C CNN 610 | 1 5550 3800 611 | 0 1 1 0 612 | $EndComp 613 | Wire Wire Line 614 | 5550 3650 5400 3650 615 | Wire Wire Line 616 | 5550 3900 5400 3900 617 | Wire Wire Line 618 | 5400 3900 5400 3650 619 | Connection ~ 5400 2650 620 | Connection ~ 5400 2900 621 | Wire Wire Line 622 | 5400 2900 5400 2650 623 | Connection ~ 5400 3150 624 | Wire Wire Line 625 | 5400 3150 5400 2900 626 | Connection ~ 5400 3400 627 | Wire Wire Line 628 | 5400 3400 5400 3150 629 | Connection ~ 5400 3650 630 | Wire Wire Line 631 | 5400 3650 5400 3400 632 | Wire Wire Line 633 | 5400 1900 5250 1900 634 | $Comp 635 | L device:LED_Small_ALT D28 636 | U 1 1 5ECFC687 637 | P 5850 1800 638 | AR Path="/5EC90811/5ECFC687" Ref="D28" Part="1" 639 | AR Path="/5F64D6C7/5ECFC687" Ref="D172" Part="1" 640 | F 0 "D28" H 5800 1700 50 0000 L CNN 641 | F 1 "LED_Small_ALT" V 5895 1898 50 0001 L CNN 642 | F 2 "LEDs:LED_0603" V 5850 1800 50 0001 C CNN 643 | F 3 "~" V 5850 1800 50 0001 C CNN 644 | 1 5850 1800 645 | 0 1 1 0 646 | $EndComp 647 | $Comp 648 | L device:LED_Small_ALT D29 649 | U 1 1 5ECFC691 650 | P 5850 2050 651 | AR Path="/5EC90811/5ECFC691" Ref="D29" Part="1" 652 | AR Path="/5F64D6C7/5ECFC691" Ref="D173" Part="1" 653 | F 0 "D29" H 5800 1950 50 0000 L CNN 654 | F 1 "LED_Small_ALT" V 5895 2148 50 0001 L CNN 655 | F 2 "LEDs:LED_0603" V 5850 2050 50 0001 C CNN 656 | F 3 "~" V 5850 2050 50 0001 C CNN 657 | 1 5850 2050 658 | 0 1 1 0 659 | $EndComp 660 | $Comp 661 | L device:LED_Small_ALT D30 662 | U 1 1 5ECFC69B 663 | P 5850 2300 664 | AR Path="/5EC90811/5ECFC69B" Ref="D30" Part="1" 665 | AR Path="/5F64D6C7/5ECFC69B" Ref="D174" Part="1" 666 | F 0 "D30" H 5800 2200 50 0000 L CNN 667 | F 1 "LED_Small_ALT" V 5895 2398 50 0001 L CNN 668 | F 2 "LEDs:LED_0603" V 5850 2300 50 0001 C CNN 669 | F 3 "~" V 5850 2300 50 0001 C CNN 670 | 1 5850 2300 671 | 0 1 1 0 672 | $EndComp 673 | $Comp 674 | L device:LED_Small_ALT D31 675 | U 1 1 5ECFC6A7 676 | P 5850 2550 677 | AR Path="/5EC90811/5ECFC6A7" Ref="D31" Part="1" 678 | AR Path="/5F64D6C7/5ECFC6A7" Ref="D175" Part="1" 679 | F 0 "D31" H 5800 2450 50 0000 L CNN 680 | F 1 "LED_Small_ALT" V 5895 2648 50 0001 L CNN 681 | F 2 "LEDs:LED_0603" V 5850 2550 50 0001 C CNN 682 | F 3 "~" V 5850 2550 50 0001 C CNN 683 | 1 5850 2550 684 | 0 1 1 0 685 | $EndComp 686 | $Comp 687 | L device:LED_Small_ALT D32 688 | U 1 1 5ECFC6B1 689 | P 5850 2800 690 | AR Path="/5EC90811/5ECFC6B1" Ref="D32" Part="1" 691 | AR Path="/5F64D6C7/5ECFC6B1" Ref="D176" Part="1" 692 | F 0 "D32" H 5800 2700 50 0000 L CNN 693 | F 1 "LED_Small_ALT" V 5895 2898 50 0001 L CNN 694 | F 2 "LEDs:LED_0603" V 5850 2800 50 0001 C CNN 695 | F 3 "~" V 5850 2800 50 0001 C CNN 696 | 1 5850 2800 697 | 0 1 1 0 698 | $EndComp 699 | Wire Wire Line 700 | 5850 2900 5700 2900 701 | $Comp 702 | L device:LED_Small_ALT D33 703 | U 1 1 5ECFC6BD 704 | P 5850 3050 705 | AR Path="/5EC90811/5ECFC6BD" Ref="D33" Part="1" 706 | AR Path="/5F64D6C7/5ECFC6BD" Ref="D177" Part="1" 707 | F 0 "D33" H 5800 2950 50 0000 L CNN 708 | F 1 "LED_Small_ALT" V 5895 3148 50 0001 L CNN 709 | F 2 "LEDs:LED_0603" V 5850 3050 50 0001 C CNN 710 | F 3 "~" V 5850 3050 50 0001 C CNN 711 | 1 5850 3050 712 | 0 1 1 0 713 | $EndComp 714 | $Comp 715 | L device:LED_Small_ALT D34 716 | U 1 1 5ECFC6C7 717 | P 5850 3300 718 | AR Path="/5EC90811/5ECFC6C7" Ref="D34" Part="1" 719 | AR Path="/5F64D6C7/5ECFC6C7" Ref="D178" Part="1" 720 | F 0 "D34" H 5800 3200 50 0000 L CNN 721 | F 1 "LED_Small_ALT" V 5895 3398 50 0001 L CNN 722 | F 2 "LEDs:LED_0603" V 5850 3300 50 0001 C CNN 723 | F 3 "~" V 5850 3300 50 0001 C CNN 724 | 1 5850 3300 725 | 0 1 1 0 726 | $EndComp 727 | Wire Wire Line 728 | 5850 3150 5700 3150 729 | Wire Wire Line 730 | 5850 3400 5700 3400 731 | $Comp 732 | L device:LED_Small_ALT D35 733 | U 1 1 5ECFC6D3 734 | P 5850 3550 735 | AR Path="/5EC90811/5ECFC6D3" Ref="D35" Part="1" 736 | AR Path="/5F64D6C7/5ECFC6D3" Ref="D179" Part="1" 737 | F 0 "D35" H 5800 3450 50 0000 L CNN 738 | F 1 "LED_Small_ALT" V 5895 3648 50 0001 L CNN 739 | F 2 "LEDs:LED_0603" V 5850 3550 50 0001 C CNN 740 | F 3 "~" V 5850 3550 50 0001 C CNN 741 | 1 5850 3550 742 | 0 1 1 0 743 | $EndComp 744 | $Comp 745 | L device:LED_Small_ALT D36 746 | U 1 1 5ECFC6DD 747 | P 5850 3800 748 | AR Path="/5EC90811/5ECFC6DD" Ref="D36" Part="1" 749 | AR Path="/5F64D6C7/5ECFC6DD" Ref="D180" Part="1" 750 | F 0 "D36" H 5800 3700 50 0000 L CNN 751 | F 1 "LED_Small_ALT" V 5895 3898 50 0001 L CNN 752 | F 2 "LEDs:LED_0603" V 5850 3800 50 0001 C CNN 753 | F 3 "~" V 5850 3800 50 0001 C CNN 754 | 1 5850 3800 755 | 0 1 1 0 756 | $EndComp 757 | Wire Wire Line 758 | 5850 3650 5700 3650 759 | Wire Wire Line 760 | 5850 3900 5700 3900 761 | Wire Wire Line 762 | 5700 3900 5700 3650 763 | Connection ~ 5700 2900 764 | Connection ~ 5700 3150 765 | Wire Wire Line 766 | 5700 3150 5700 2900 767 | Connection ~ 5700 3400 768 | Wire Wire Line 769 | 5700 3400 5700 3150 770 | Connection ~ 5700 3650 771 | Wire Wire Line 772 | 5700 3650 5700 3400 773 | Wire Wire Line 774 | 5700 1900 5550 1900 775 | $Comp 776 | L device:LED_Small_ALT D37 777 | U 1 1 5ED021E0 778 | P 6150 1800 779 | AR Path="/5EC90811/5ED021E0" Ref="D37" Part="1" 780 | AR Path="/5F64D6C7/5ED021E0" Ref="D181" Part="1" 781 | F 0 "D37" H 6100 1700 50 0000 L CNN 782 | F 1 "LED_Small_ALT" V 6195 1898 50 0001 L CNN 783 | F 2 "LEDs:LED_0603" V 6150 1800 50 0001 C CNN 784 | F 3 "~" V 6150 1800 50 0001 C CNN 785 | 1 6150 1800 786 | 0 1 1 0 787 | $EndComp 788 | $Comp 789 | L device:LED_Small_ALT D38 790 | U 1 1 5ED021EA 791 | P 6150 2050 792 | AR Path="/5EC90811/5ED021EA" Ref="D38" Part="1" 793 | AR Path="/5F64D6C7/5ED021EA" Ref="D182" Part="1" 794 | F 0 "D38" H 6100 1950 50 0000 L CNN 795 | F 1 "LED_Small_ALT" V 6195 2148 50 0001 L CNN 796 | F 2 "LEDs:LED_0603" V 6150 2050 50 0001 C CNN 797 | F 3 "~" V 6150 2050 50 0001 C CNN 798 | 1 6150 2050 799 | 0 1 1 0 800 | $EndComp 801 | $Comp 802 | L device:LED_Small_ALT D39 803 | U 1 1 5ED021F4 804 | P 6150 2300 805 | AR Path="/5EC90811/5ED021F4" Ref="D39" Part="1" 806 | AR Path="/5F64D6C7/5ED021F4" Ref="D183" Part="1" 807 | F 0 "D39" H 6100 2200 50 0000 L CNN 808 | F 1 "LED_Small_ALT" V 6195 2398 50 0001 L CNN 809 | F 2 "LEDs:LED_0603" V 6150 2300 50 0001 C CNN 810 | F 3 "~" V 6150 2300 50 0001 C CNN 811 | 1 6150 2300 812 | 0 1 1 0 813 | $EndComp 814 | $Comp 815 | L device:LED_Small_ALT D40 816 | U 1 1 5ED02200 817 | P 6150 2550 818 | AR Path="/5EC90811/5ED02200" Ref="D40" Part="1" 819 | AR Path="/5F64D6C7/5ED02200" Ref="D184" Part="1" 820 | F 0 "D40" H 6100 2450 50 0000 L CNN 821 | F 1 "LED_Small_ALT" V 6195 2648 50 0001 L CNN 822 | F 2 "LEDs:LED_0603" V 6150 2550 50 0001 C CNN 823 | F 3 "~" V 6150 2550 50 0001 C CNN 824 | 1 6150 2550 825 | 0 1 1 0 826 | $EndComp 827 | $Comp 828 | L device:LED_Small_ALT D41 829 | U 1 1 5ED0220A 830 | P 6150 2800 831 | AR Path="/5EC90811/5ED0220A" Ref="D41" Part="1" 832 | AR Path="/5F64D6C7/5ED0220A" Ref="D185" Part="1" 833 | F 0 "D41" H 6100 2700 50 0000 L CNN 834 | F 1 "LED_Small_ALT" V 6195 2898 50 0001 L CNN 835 | F 2 "LEDs:LED_0603" V 6150 2800 50 0001 C CNN 836 | F 3 "~" V 6150 2800 50 0001 C CNN 837 | 1 6150 2800 838 | 0 1 1 0 839 | $EndComp 840 | $Comp 841 | L device:LED_Small_ALT D42 842 | U 1 1 5ED02216 843 | P 6150 3050 844 | AR Path="/5EC90811/5ED02216" Ref="D42" Part="1" 845 | AR Path="/5F64D6C7/5ED02216" Ref="D186" Part="1" 846 | F 0 "D42" H 6100 2950 50 0000 L CNN 847 | F 1 "LED_Small_ALT" V 6195 3148 50 0001 L CNN 848 | F 2 "LEDs:LED_0603" V 6150 3050 50 0001 C CNN 849 | F 3 "~" V 6150 3050 50 0001 C CNN 850 | 1 6150 3050 851 | 0 1 1 0 852 | $EndComp 853 | $Comp 854 | L device:LED_Small_ALT D43 855 | U 1 1 5ED02220 856 | P 6150 3300 857 | AR Path="/5EC90811/5ED02220" Ref="D43" Part="1" 858 | AR Path="/5F64D6C7/5ED02220" Ref="D187" Part="1" 859 | F 0 "D43" H 6100 3200 50 0000 L CNN 860 | F 1 "LED_Small_ALT" V 6195 3398 50 0001 L CNN 861 | F 2 "LEDs:LED_0603" V 6150 3300 50 0001 C CNN 862 | F 3 "~" V 6150 3300 50 0001 C CNN 863 | 1 6150 3300 864 | 0 1 1 0 865 | $EndComp 866 | Wire Wire Line 867 | 6150 3150 6000 3150 868 | Wire Wire Line 869 | 6150 3400 6000 3400 870 | $Comp 871 | L device:LED_Small_ALT D44 872 | U 1 1 5ED0222C 873 | P 6150 3550 874 | AR Path="/5EC90811/5ED0222C" Ref="D44" Part="1" 875 | AR Path="/5F64D6C7/5ED0222C" Ref="D188" Part="1" 876 | F 0 "D44" H 6100 3450 50 0000 L CNN 877 | F 1 "LED_Small_ALT" V 6195 3648 50 0001 L CNN 878 | F 2 "LEDs:LED_0603" V 6150 3550 50 0001 C CNN 879 | F 3 "~" V 6150 3550 50 0001 C CNN 880 | 1 6150 3550 881 | 0 1 1 0 882 | $EndComp 883 | $Comp 884 | L device:LED_Small_ALT D45 885 | U 1 1 5ED02236 886 | P 6150 3800 887 | AR Path="/5EC90811/5ED02236" Ref="D45" Part="1" 888 | AR Path="/5F64D6C7/5ED02236" Ref="D189" Part="1" 889 | F 0 "D45" H 6100 3700 50 0000 L CNN 890 | F 1 "LED_Small_ALT" V 6195 3898 50 0001 L CNN 891 | F 2 "LEDs:LED_0603" V 6150 3800 50 0001 C CNN 892 | F 3 "~" V 6150 3800 50 0001 C CNN 893 | 1 6150 3800 894 | 0 1 1 0 895 | $EndComp 896 | Wire Wire Line 897 | 6150 3650 6000 3650 898 | Wire Wire Line 899 | 6150 3900 6000 3900 900 | Wire Wire Line 901 | 6000 3900 6000 3650 902 | Connection ~ 6000 3150 903 | Connection ~ 6000 3400 904 | Wire Wire Line 905 | 6000 3400 6000 3150 906 | Connection ~ 6000 3650 907 | Wire Wire Line 908 | 6000 3650 6000 3400 909 | $Comp 910 | L device:LED_Small_ALT D46 911 | U 1 1 5ED02252 912 | P 6450 1800 913 | AR Path="/5EC90811/5ED02252" Ref="D46" Part="1" 914 | AR Path="/5F64D6C7/5ED02252" Ref="D190" Part="1" 915 | F 0 "D46" H 6400 1700 50 0000 L CNN 916 | F 1 "LED_Small_ALT" V 6495 1898 50 0001 L CNN 917 | F 2 "LEDs:LED_0603" V 6450 1800 50 0001 C CNN 918 | F 3 "~" V 6450 1800 50 0001 C CNN 919 | 1 6450 1800 920 | 0 1 1 0 921 | $EndComp 922 | $Comp 923 | L device:LED_Small_ALT D47 924 | U 1 1 5ED0225C 925 | P 6450 2050 926 | AR Path="/5EC90811/5ED0225C" Ref="D47" Part="1" 927 | AR Path="/5F64D6C7/5ED0225C" Ref="D191" Part="1" 928 | F 0 "D47" H 6400 1950 50 0000 L CNN 929 | F 1 "LED_Small_ALT" V 6495 2148 50 0001 L CNN 930 | F 2 "LEDs:LED_0603" V 6450 2050 50 0001 C CNN 931 | F 3 "~" V 6450 2050 50 0001 C CNN 932 | 1 6450 2050 933 | 0 1 1 0 934 | $EndComp 935 | $Comp 936 | L device:LED_Small_ALT D48 937 | U 1 1 5ED02266 938 | P 6450 2300 939 | AR Path="/5EC90811/5ED02266" Ref="D48" Part="1" 940 | AR Path="/5F64D6C7/5ED02266" Ref="D192" Part="1" 941 | F 0 "D48" H 6400 2200 50 0000 L CNN 942 | F 1 "LED_Small_ALT" V 6495 2398 50 0001 L CNN 943 | F 2 "LEDs:LED_0603" V 6450 2300 50 0001 C CNN 944 | F 3 "~" V 6450 2300 50 0001 C CNN 945 | 1 6450 2300 946 | 0 1 1 0 947 | $EndComp 948 | $Comp 949 | L device:LED_Small_ALT D49 950 | U 1 1 5ED02272 951 | P 6450 2550 952 | AR Path="/5EC90811/5ED02272" Ref="D49" Part="1" 953 | AR Path="/5F64D6C7/5ED02272" Ref="D193" Part="1" 954 | F 0 "D49" H 6400 2450 50 0000 L CNN 955 | F 1 "LED_Small_ALT" V 6495 2648 50 0001 L CNN 956 | F 2 "LEDs:LED_0603" V 6450 2550 50 0001 C CNN 957 | F 3 "~" V 6450 2550 50 0001 C CNN 958 | 1 6450 2550 959 | 0 1 1 0 960 | $EndComp 961 | $Comp 962 | L device:LED_Small_ALT D50 963 | U 1 1 5ED0227C 964 | P 6450 2800 965 | AR Path="/5EC90811/5ED0227C" Ref="D50" Part="1" 966 | AR Path="/5F64D6C7/5ED0227C" Ref="D194" Part="1" 967 | F 0 "D50" H 6400 2700 50 0000 L CNN 968 | F 1 "LED_Small_ALT" V 6495 2898 50 0001 L CNN 969 | F 2 "LEDs:LED_0603" V 6450 2800 50 0001 C CNN 970 | F 3 "~" V 6450 2800 50 0001 C CNN 971 | 1 6450 2800 972 | 0 1 1 0 973 | $EndComp 974 | $Comp 975 | L device:LED_Small_ALT D51 976 | U 1 1 5ED02288 977 | P 6450 3050 978 | AR Path="/5EC90811/5ED02288" Ref="D51" Part="1" 979 | AR Path="/5F64D6C7/5ED02288" Ref="D195" Part="1" 980 | F 0 "D51" H 6400 2950 50 0000 L CNN 981 | F 1 "LED_Small_ALT" V 6495 3148 50 0001 L CNN 982 | F 2 "LEDs:LED_0603" V 6450 3050 50 0001 C CNN 983 | F 3 "~" V 6450 3050 50 0001 C CNN 984 | 1 6450 3050 985 | 0 1 1 0 986 | $EndComp 987 | $Comp 988 | L device:LED_Small_ALT D52 989 | U 1 1 5ED02292 990 | P 6450 3300 991 | AR Path="/5EC90811/5ED02292" Ref="D52" Part="1" 992 | AR Path="/5F64D6C7/5ED02292" Ref="D196" Part="1" 993 | F 0 "D52" H 6400 3200 50 0000 L CNN 994 | F 1 "LED_Small_ALT" V 6495 3398 50 0001 L CNN 995 | F 2 "LEDs:LED_0603" V 6450 3300 50 0001 C CNN 996 | F 3 "~" V 6450 3300 50 0001 C CNN 997 | 1 6450 3300 998 | 0 1 1 0 999 | $EndComp 1000 | Wire Wire Line 1001 | 6450 3400 6300 3400 1002 | $Comp 1003 | L device:LED_Small_ALT D53 1004 | U 1 1 5ED0229E 1005 | P 6450 3550 1006 | AR Path="/5EC90811/5ED0229E" Ref="D53" Part="1" 1007 | AR Path="/5F64D6C7/5ED0229E" Ref="D197" Part="1" 1008 | F 0 "D53" H 6400 3450 50 0000 L CNN 1009 | F 1 "LED_Small_ALT" V 6495 3648 50 0001 L CNN 1010 | F 2 "LEDs:LED_0603" V 6450 3550 50 0001 C CNN 1011 | F 3 "~" V 6450 3550 50 0001 C CNN 1012 | 1 6450 3550 1013 | 0 1 1 0 1014 | $EndComp 1015 | $Comp 1016 | L device:LED_Small_ALT D54 1017 | U 1 1 5ED022A8 1018 | P 6450 3800 1019 | AR Path="/5EC90811/5ED022A8" Ref="D54" Part="1" 1020 | AR Path="/5F64D6C7/5ED022A8" Ref="D198" Part="1" 1021 | F 0 "D54" H 6400 3700 50 0000 L CNN 1022 | F 1 "LED_Small_ALT" V 6495 3898 50 0001 L CNN 1023 | F 2 "LEDs:LED_0603" V 6450 3800 50 0001 C CNN 1024 | F 3 "~" V 6450 3800 50 0001 C CNN 1025 | 1 6450 3800 1026 | 0 1 1 0 1027 | $EndComp 1028 | Wire Wire Line 1029 | 6450 3650 6300 3650 1030 | Wire Wire Line 1031 | 6450 3900 6300 3900 1032 | Wire Wire Line 1033 | 6300 3900 6300 3650 1034 | Connection ~ 6300 3400 1035 | Connection ~ 6300 3650 1036 | Wire Wire Line 1037 | 6300 3650 6300 3400 1038 | Wire Wire Line 1039 | 6300 1900 6150 1900 1040 | $Comp 1041 | L device:LED_Small_ALT D55 1042 | U 1 1 5ED022C7 1043 | P 6750 1800 1044 | AR Path="/5EC90811/5ED022C7" Ref="D55" Part="1" 1045 | AR Path="/5F64D6C7/5ED022C7" Ref="D199" Part="1" 1046 | F 0 "D55" H 6700 1700 50 0000 L CNN 1047 | F 1 "LED_Small_ALT" V 6795 1898 50 0001 L CNN 1048 | F 2 "LEDs:LED_0603" V 6750 1800 50 0001 C CNN 1049 | F 3 "~" V 6750 1800 50 0001 C CNN 1050 | 1 6750 1800 1051 | 0 1 1 0 1052 | $EndComp 1053 | $Comp 1054 | L device:LED_Small_ALT D56 1055 | U 1 1 5ED022D1 1056 | P 6750 2050 1057 | AR Path="/5EC90811/5ED022D1" Ref="D56" Part="1" 1058 | AR Path="/5F64D6C7/5ED022D1" Ref="D200" Part="1" 1059 | F 0 "D56" H 6700 1950 50 0000 L CNN 1060 | F 1 "LED_Small_ALT" V 6795 2148 50 0001 L CNN 1061 | F 2 "LEDs:LED_0603" V 6750 2050 50 0001 C CNN 1062 | F 3 "~" V 6750 2050 50 0001 C CNN 1063 | 1 6750 2050 1064 | 0 1 1 0 1065 | $EndComp 1066 | $Comp 1067 | L device:LED_Small_ALT D57 1068 | U 1 1 5ED022DB 1069 | P 6750 2300 1070 | AR Path="/5EC90811/5ED022DB" Ref="D57" Part="1" 1071 | AR Path="/5F64D6C7/5ED022DB" Ref="D201" Part="1" 1072 | F 0 "D57" H 6700 2200 50 0000 L CNN 1073 | F 1 "LED_Small_ALT" V 6795 2398 50 0001 L CNN 1074 | F 2 "LEDs:LED_0603" V 6750 2300 50 0001 C CNN 1075 | F 3 "~" V 6750 2300 50 0001 C CNN 1076 | 1 6750 2300 1077 | 0 1 1 0 1078 | $EndComp 1079 | $Comp 1080 | L device:LED_Small_ALT D58 1081 | U 1 1 5ED022E7 1082 | P 6750 2550 1083 | AR Path="/5EC90811/5ED022E7" Ref="D58" Part="1" 1084 | AR Path="/5F64D6C7/5ED022E7" Ref="D202" Part="1" 1085 | F 0 "D58" H 6700 2450 50 0000 L CNN 1086 | F 1 "LED_Small_ALT" V 6795 2648 50 0001 L CNN 1087 | F 2 "LEDs:LED_0603" V 6750 2550 50 0001 C CNN 1088 | F 3 "~" V 6750 2550 50 0001 C CNN 1089 | 1 6750 2550 1090 | 0 1 1 0 1091 | $EndComp 1092 | $Comp 1093 | L device:LED_Small_ALT D59 1094 | U 1 1 5ED022F1 1095 | P 6750 2800 1096 | AR Path="/5EC90811/5ED022F1" Ref="D59" Part="1" 1097 | AR Path="/5F64D6C7/5ED022F1" Ref="D203" Part="1" 1098 | F 0 "D59" H 6700 2700 50 0000 L CNN 1099 | F 1 "LED_Small_ALT" V 6795 2898 50 0001 L CNN 1100 | F 2 "LEDs:LED_0603" V 6750 2800 50 0001 C CNN 1101 | F 3 "~" V 6750 2800 50 0001 C CNN 1102 | 1 6750 2800 1103 | 0 1 1 0 1104 | $EndComp 1105 | $Comp 1106 | L device:LED_Small_ALT D60 1107 | U 1 1 5ED022FD 1108 | P 6750 3050 1109 | AR Path="/5EC90811/5ED022FD" Ref="D60" Part="1" 1110 | AR Path="/5F64D6C7/5ED022FD" Ref="D204" Part="1" 1111 | F 0 "D60" H 6700 2950 50 0000 L CNN 1112 | F 1 "LED_Small_ALT" V 6795 3148 50 0001 L CNN 1113 | F 2 "LEDs:LED_0603" V 6750 3050 50 0001 C CNN 1114 | F 3 "~" V 6750 3050 50 0001 C CNN 1115 | 1 6750 3050 1116 | 0 1 1 0 1117 | $EndComp 1118 | $Comp 1119 | L device:LED_Small_ALT D61 1120 | U 1 1 5ED02307 1121 | P 6750 3300 1122 | AR Path="/5EC90811/5ED02307" Ref="D61" Part="1" 1123 | AR Path="/5F64D6C7/5ED02307" Ref="D205" Part="1" 1124 | F 0 "D61" H 6700 3200 50 0000 L CNN 1125 | F 1 "LED_Small_ALT" V 6795 3398 50 0001 L CNN 1126 | F 2 "LEDs:LED_0603" V 6750 3300 50 0001 C CNN 1127 | F 3 "~" V 6750 3300 50 0001 C CNN 1128 | 1 6750 3300 1129 | 0 1 1 0 1130 | $EndComp 1131 | $Comp 1132 | L device:LED_Small_ALT D62 1133 | U 1 1 5ED02313 1134 | P 6750 3550 1135 | AR Path="/5EC90811/5ED02313" Ref="D62" Part="1" 1136 | AR Path="/5F64D6C7/5ED02313" Ref="D206" Part="1" 1137 | F 0 "D62" H 6700 3450 50 0000 L CNN 1138 | F 1 "LED_Small_ALT" V 6795 3648 50 0001 L CNN 1139 | F 2 "LEDs:LED_0603" V 6750 3550 50 0001 C CNN 1140 | F 3 "~" V 6750 3550 50 0001 C CNN 1141 | 1 6750 3550 1142 | 0 1 1 0 1143 | $EndComp 1144 | $Comp 1145 | L device:LED_Small_ALT D63 1146 | U 1 1 5ED0231D 1147 | P 6750 3800 1148 | AR Path="/5EC90811/5ED0231D" Ref="D63" Part="1" 1149 | AR Path="/5F64D6C7/5ED0231D" Ref="D207" Part="1" 1150 | F 0 "D63" H 6700 3700 50 0000 L CNN 1151 | F 1 "LED_Small_ALT" V 6795 3898 50 0001 L CNN 1152 | F 2 "LEDs:LED_0603" V 6750 3800 50 0001 C CNN 1153 | F 3 "~" V 6750 3800 50 0001 C CNN 1154 | 1 6750 3800 1155 | 0 1 1 0 1156 | $EndComp 1157 | Wire Wire Line 1158 | 6750 3650 6600 3650 1159 | Wire Wire Line 1160 | 6750 3900 6600 3900 1161 | Wire Wire Line 1162 | 6600 3900 6600 3650 1163 | Connection ~ 6600 3650 1164 | Wire Wire Line 1165 | 6600 1900 6450 1900 1166 | $Comp 1167 | L device:LED_Small_ALT D64 1168 | U 1 1 5ED0233A 1169 | P 7050 1800 1170 | AR Path="/5EC90811/5ED0233A" Ref="D64" Part="1" 1171 | AR Path="/5F64D6C7/5ED0233A" Ref="D208" Part="1" 1172 | F 0 "D64" H 7000 1700 50 0000 L CNN 1173 | F 1 "LED_Small_ALT" V 7095 1898 50 0001 L CNN 1174 | F 2 "LEDs:LED_0603" V 7050 1800 50 0001 C CNN 1175 | F 3 "~" V 7050 1800 50 0001 C CNN 1176 | 1 7050 1800 1177 | 0 1 1 0 1178 | $EndComp 1179 | $Comp 1180 | L device:LED_Small_ALT D65 1181 | U 1 1 5ED02344 1182 | P 7050 2050 1183 | AR Path="/5EC90811/5ED02344" Ref="D65" Part="1" 1184 | AR Path="/5F64D6C7/5ED02344" Ref="D209" Part="1" 1185 | F 0 "D65" H 7000 1950 50 0000 L CNN 1186 | F 1 "LED_Small_ALT" V 7095 2148 50 0001 L CNN 1187 | F 2 "LEDs:LED_0603" V 7050 2050 50 0001 C CNN 1188 | F 3 "~" V 7050 2050 50 0001 C CNN 1189 | 1 7050 2050 1190 | 0 1 1 0 1191 | $EndComp 1192 | $Comp 1193 | L device:LED_Small_ALT D66 1194 | U 1 1 5ED0234E 1195 | P 7050 2300 1196 | AR Path="/5EC90811/5ED0234E" Ref="D66" Part="1" 1197 | AR Path="/5F64D6C7/5ED0234E" Ref="D210" Part="1" 1198 | F 0 "D66" H 7000 2200 50 0000 L CNN 1199 | F 1 "LED_Small_ALT" V 7095 2398 50 0001 L CNN 1200 | F 2 "LEDs:LED_0603" V 7050 2300 50 0001 C CNN 1201 | F 3 "~" V 7050 2300 50 0001 C CNN 1202 | 1 7050 2300 1203 | 0 1 1 0 1204 | $EndComp 1205 | $Comp 1206 | L device:LED_Small_ALT D67 1207 | U 1 1 5ED0235A 1208 | P 7050 2550 1209 | AR Path="/5EC90811/5ED0235A" Ref="D67" Part="1" 1210 | AR Path="/5F64D6C7/5ED0235A" Ref="D211" Part="1" 1211 | F 0 "D67" H 7000 2450 50 0000 L CNN 1212 | F 1 "LED_Small_ALT" V 7095 2648 50 0001 L CNN 1213 | F 2 "LEDs:LED_0603" V 7050 2550 50 0001 C CNN 1214 | F 3 "~" V 7050 2550 50 0001 C CNN 1215 | 1 7050 2550 1216 | 0 1 1 0 1217 | $EndComp 1218 | $Comp 1219 | L device:LED_Small_ALT D68 1220 | U 1 1 5ED02364 1221 | P 7050 2800 1222 | AR Path="/5EC90811/5ED02364" Ref="D68" Part="1" 1223 | AR Path="/5F64D6C7/5ED02364" Ref="D212" Part="1" 1224 | F 0 "D68" H 7000 2700 50 0000 L CNN 1225 | F 1 "LED_Small_ALT" V 7095 2898 50 0001 L CNN 1226 | F 2 "LEDs:LED_0603" V 7050 2800 50 0001 C CNN 1227 | F 3 "~" V 7050 2800 50 0001 C CNN 1228 | 1 7050 2800 1229 | 0 1 1 0 1230 | $EndComp 1231 | $Comp 1232 | L device:LED_Small_ALT D69 1233 | U 1 1 5ED02370 1234 | P 7050 3050 1235 | AR Path="/5EC90811/5ED02370" Ref="D69" Part="1" 1236 | AR Path="/5F64D6C7/5ED02370" Ref="D213" Part="1" 1237 | F 0 "D69" H 7000 2950 50 0000 L CNN 1238 | F 1 "LED_Small_ALT" V 7095 3148 50 0001 L CNN 1239 | F 2 "LEDs:LED_0603" V 7050 3050 50 0001 C CNN 1240 | F 3 "~" V 7050 3050 50 0001 C CNN 1241 | 1 7050 3050 1242 | 0 1 1 0 1243 | $EndComp 1244 | $Comp 1245 | L device:LED_Small_ALT D70 1246 | U 1 1 5ED0237A 1247 | P 7050 3300 1248 | AR Path="/5EC90811/5ED0237A" Ref="D70" Part="1" 1249 | AR Path="/5F64D6C7/5ED0237A" Ref="D214" Part="1" 1250 | F 0 "D70" H 7000 3200 50 0000 L CNN 1251 | F 1 "LED_Small_ALT" V 7095 3398 50 0001 L CNN 1252 | F 2 "LEDs:LED_0603" V 7050 3300 50 0001 C CNN 1253 | F 3 "~" V 7050 3300 50 0001 C CNN 1254 | 1 7050 3300 1255 | 0 1 1 0 1256 | $EndComp 1257 | $Comp 1258 | L device:LED_Small_ALT D71 1259 | U 1 1 5ED02386 1260 | P 7050 3550 1261 | AR Path="/5EC90811/5ED02386" Ref="D71" Part="1" 1262 | AR Path="/5F64D6C7/5ED02386" Ref="D215" Part="1" 1263 | F 0 "D71" H 7000 3450 50 0000 L CNN 1264 | F 1 "LED_Small_ALT" V 7095 3648 50 0001 L CNN 1265 | F 2 "LEDs:LED_0603" V 7050 3550 50 0001 C CNN 1266 | F 3 "~" V 7050 3550 50 0001 C CNN 1267 | 1 7050 3550 1268 | 0 1 1 0 1269 | $EndComp 1270 | $Comp 1271 | L device:LED_Small_ALT D72 1272 | U 1 1 5ED02390 1273 | P 7050 3800 1274 | AR Path="/5EC90811/5ED02390" Ref="D72" Part="1" 1275 | AR Path="/5F64D6C7/5ED02390" Ref="D216" Part="1" 1276 | F 0 "D72" H 7000 3700 50 0000 L CNN 1277 | F 1 "LED_Small_ALT" V 7095 3898 50 0001 L CNN 1278 | F 2 "LEDs:LED_0603" V 7050 3800 50 0001 C CNN 1279 | F 3 "~" V 7050 3800 50 0001 C CNN 1280 | 1 7050 3800 1281 | 0 1 1 0 1282 | $EndComp 1283 | Wire Wire Line 1284 | 7050 3900 6900 3900 1285 | Wire Wire Line 1286 | 6900 1900 6750 1900 1287 | Connection ~ 5850 1700 1288 | Wire Wire Line 1289 | 4650 1950 4950 1950 1290 | Connection ~ 4950 1950 1291 | Wire Wire Line 1292 | 4950 1950 5100 1950 1293 | Connection ~ 5250 1950 1294 | Wire Wire Line 1295 | 5250 1950 5550 1950 1296 | Connection ~ 5550 1950 1297 | Wire Wire Line 1298 | 5550 1950 5850 1950 1299 | Connection ~ 5850 1950 1300 | Wire Wire Line 1301 | 5850 1950 6150 1950 1302 | Connection ~ 6150 1950 1303 | Wire Wire Line 1304 | 6150 1950 6450 1950 1305 | Connection ~ 6450 1950 1306 | Wire Wire Line 1307 | 6450 1950 6750 1950 1308 | Connection ~ 6750 1950 1309 | Wire Wire Line 1310 | 6750 1950 7050 1950 1311 | Wire Wire Line 1312 | 4650 2200 4950 2200 1313 | Connection ~ 4950 2200 1314 | Wire Wire Line 1315 | 4950 2200 5250 2200 1316 | Connection ~ 5250 2200 1317 | Wire Wire Line 1318 | 5250 2200 5400 2200 1319 | Connection ~ 5550 2200 1320 | Wire Wire Line 1321 | 5550 2200 5850 2200 1322 | Connection ~ 5850 2200 1323 | Wire Wire Line 1324 | 5850 2200 6150 2200 1325 | Connection ~ 6150 2200 1326 | Wire Wire Line 1327 | 6150 2200 6450 2200 1328 | Connection ~ 6450 2200 1329 | Wire Wire Line 1330 | 6450 2200 6750 2200 1331 | Connection ~ 6750 2200 1332 | Wire Wire Line 1333 | 6750 2200 7050 2200 1334 | Wire Wire Line 1335 | 4650 2450 4950 2450 1336 | Connection ~ 4950 2450 1337 | Wire Wire Line 1338 | 4950 2450 5250 2450 1339 | Connection ~ 5250 2450 1340 | Wire Wire Line 1341 | 5250 2450 5550 2450 1342 | Connection ~ 5550 2450 1343 | Wire Wire Line 1344 | 5550 2450 5700 2450 1345 | Connection ~ 5850 2450 1346 | Wire Wire Line 1347 | 5850 2450 6150 2450 1348 | Connection ~ 6150 2450 1349 | Wire Wire Line 1350 | 6150 2450 6450 2450 1351 | Connection ~ 6450 2450 1352 | Wire Wire Line 1353 | 6450 2450 6750 2450 1354 | Connection ~ 6750 2450 1355 | Wire Wire Line 1356 | 6750 2450 7050 2450 1357 | Wire Wire Line 1358 | 4650 2700 4950 2700 1359 | Connection ~ 4950 2700 1360 | Wire Wire Line 1361 | 4950 2700 5250 2700 1362 | Connection ~ 5250 2700 1363 | Wire Wire Line 1364 | 5250 2700 5550 2700 1365 | Connection ~ 5550 2700 1366 | Wire Wire Line 1367 | 5550 2700 5850 2700 1368 | Connection ~ 5850 2700 1369 | Wire Wire Line 1370 | 5850 2700 6000 2700 1371 | Connection ~ 6150 2700 1372 | Wire Wire Line 1373 | 6150 2700 6450 2700 1374 | Connection ~ 6450 2700 1375 | Wire Wire Line 1376 | 6450 2700 6750 2700 1377 | Connection ~ 6750 2700 1378 | Wire Wire Line 1379 | 6750 2700 7050 2700 1380 | Wire Wire Line 1381 | 4650 2950 4950 2950 1382 | Connection ~ 4950 2950 1383 | Wire Wire Line 1384 | 4950 2950 5250 2950 1385 | Connection ~ 5250 2950 1386 | Wire Wire Line 1387 | 5250 2950 5550 2950 1388 | Connection ~ 5550 2950 1389 | Wire Wire Line 1390 | 5550 2950 5850 2950 1391 | Connection ~ 5850 2950 1392 | Wire Wire Line 1393 | 5850 2950 6150 2950 1394 | Connection ~ 6150 2950 1395 | Wire Wire Line 1396 | 6150 2950 6300 2950 1397 | Connection ~ 6450 2950 1398 | Wire Wire Line 1399 | 6450 2950 6750 2950 1400 | Connection ~ 6750 2950 1401 | Wire Wire Line 1402 | 6750 2950 7050 2950 1403 | Wire Wire Line 1404 | 4650 3200 4950 3200 1405 | Connection ~ 4950 3200 1406 | Wire Wire Line 1407 | 4950 3200 5250 3200 1408 | Connection ~ 5250 3200 1409 | Wire Wire Line 1410 | 5250 3200 5550 3200 1411 | Connection ~ 5550 3200 1412 | Wire Wire Line 1413 | 5550 3200 5850 3200 1414 | Connection ~ 5850 3200 1415 | Wire Wire Line 1416 | 5850 3200 6150 3200 1417 | Connection ~ 6150 3200 1418 | Wire Wire Line 1419 | 6150 3200 6450 3200 1420 | Connection ~ 6450 3200 1421 | Wire Wire Line 1422 | 6450 3200 6600 3200 1423 | Connection ~ 6750 3200 1424 | Wire Wire Line 1425 | 6750 3200 7050 3200 1426 | Wire Wire Line 1427 | 4650 3450 4950 3450 1428 | Connection ~ 4950 3450 1429 | Wire Wire Line 1430 | 4950 3450 5250 3450 1431 | Connection ~ 5250 3450 1432 | Wire Wire Line 1433 | 5250 3450 5550 3450 1434 | Connection ~ 5550 3450 1435 | Wire Wire Line 1436 | 5550 3450 5850 3450 1437 | Connection ~ 5850 3450 1438 | Wire Wire Line 1439 | 5850 3450 6150 3450 1440 | Connection ~ 6150 3450 1441 | Wire Wire Line 1442 | 6150 3450 6450 3450 1443 | Connection ~ 6450 3450 1444 | Wire Wire Line 1445 | 6450 3450 6750 3450 1446 | Connection ~ 6750 3450 1447 | Wire Wire Line 1448 | 6750 3450 6900 3450 1449 | Wire Wire Line 1450 | 4650 3700 4950 3700 1451 | Connection ~ 4950 3700 1452 | Wire Wire Line 1453 | 4950 3700 5250 3700 1454 | Connection ~ 5250 3700 1455 | Wire Wire Line 1456 | 5250 3700 5550 3700 1457 | Connection ~ 5550 3700 1458 | Wire Wire Line 1459 | 5550 3700 5850 3700 1460 | Connection ~ 5850 3700 1461 | Wire Wire Line 1462 | 5850 3700 6150 3700 1463 | Connection ~ 6150 3700 1464 | Wire Wire Line 1465 | 6150 3700 6450 3700 1466 | Connection ~ 6450 3700 1467 | Wire Wire Line 1468 | 6450 3700 6750 3700 1469 | Connection ~ 6750 3700 1470 | Wire Wire Line 1471 | 6750 3700 7050 3700 1472 | Wire Wire Line 1473 | 4950 1700 5250 1700 1474 | Connection ~ 4950 1700 1475 | Wire Wire Line 1476 | 5250 1700 5550 1700 1477 | Connection ~ 5250 1700 1478 | Wire Wire Line 1479 | 5550 1700 5850 1700 1480 | Connection ~ 5550 1700 1481 | Wire Wire Line 1482 | 5850 1700 6150 1700 1483 | Wire Wire Line 1484 | 6150 1700 6450 1700 1485 | Connection ~ 6150 1700 1486 | Wire Wire Line 1487 | 6450 1700 6750 1700 1488 | Connection ~ 6450 1700 1489 | Wire Wire Line 1490 | 6750 1700 7050 1700 1491 | Connection ~ 6750 1700 1492 | Wire Wire Line 1493 | 6000 1900 5850 1900 1494 | Wire Wire Line 1495 | 7050 1900 7200 1900 1496 | Wire Wire Line 1497 | 7200 1900 7200 2150 1498 | Wire Wire Line 1499 | 7200 3700 7050 3700 1500 | Connection ~ 7050 3700 1501 | Wire Wire Line 1502 | 7050 3650 7200 3650 1503 | Connection ~ 7200 3650 1504 | Wire Wire Line 1505 | 7200 3650 7200 3700 1506 | Wire Wire Line 1507 | 6900 1900 6900 2150 1508 | Wire Wire Line 1509 | 7050 2150 7200 2150 1510 | Connection ~ 7200 2150 1511 | Wire Wire Line 1512 | 7200 2150 7200 2400 1513 | Wire Wire Line 1514 | 7050 2400 7200 2400 1515 | Connection ~ 7200 2400 1516 | Wire Wire Line 1517 | 7200 2400 7200 2650 1518 | Wire Wire Line 1519 | 7050 2650 7200 2650 1520 | Connection ~ 7200 2650 1521 | Wire Wire Line 1522 | 7200 2650 7200 2900 1523 | Wire Wire Line 1524 | 7050 2900 7200 2900 1525 | Connection ~ 7200 2900 1526 | Wire Wire Line 1527 | 7200 2900 7200 3150 1528 | Wire Wire Line 1529 | 7050 3150 7200 3150 1530 | Connection ~ 7200 3150 1531 | Wire Wire Line 1532 | 7200 3150 7200 3400 1533 | Wire Wire Line 1534 | 7050 3400 7200 3400 1535 | Connection ~ 7200 3400 1536 | Wire Wire Line 1537 | 7200 3400 7200 3650 1538 | Wire Wire Line 1539 | 5100 1900 5100 1950 1540 | Wire Wire Line 1541 | 5400 1900 5400 2150 1542 | Wire Wire Line 1543 | 5700 1900 5700 2150 1544 | Wire Wire Line 1545 | 6000 1900 6000 2150 1546 | Wire Wire Line 1547 | 6300 1900 6300 2150 1548 | Wire Wire Line 1549 | 6600 1900 6600 2150 1550 | Wire Wire Line 1551 | 6750 3400 6900 3400 1552 | Connection ~ 6900 3400 1553 | Wire Wire Line 1554 | 6900 3400 6900 3450 1555 | Wire Wire Line 1556 | 6450 3150 6600 3150 1557 | Connection ~ 6600 3150 1558 | Wire Wire Line 1559 | 6600 3150 6600 3200 1560 | Wire Wire Line 1561 | 6150 2900 6300 2900 1562 | Connection ~ 6300 2900 1563 | Wire Wire Line 1564 | 6300 2900 6300 2950 1565 | Wire Wire Line 1566 | 5850 2650 6000 2650 1567 | Connection ~ 6000 2650 1568 | Wire Wire Line 1569 | 6000 2650 6000 2700 1570 | Wire Wire Line 1571 | 5550 2400 5700 2400 1572 | Connection ~ 5700 2400 1573 | Wire Wire Line 1574 | 5700 2400 5700 2450 1575 | Wire Wire Line 1576 | 5250 2150 5400 2150 1577 | Connection ~ 5400 2150 1578 | Wire Wire Line 1579 | 5400 2150 5400 2200 1580 | Wire Wire Line 1581 | 5550 2150 5700 2150 1582 | Connection ~ 5700 2150 1583 | Wire Wire Line 1584 | 5700 2150 5700 2400 1585 | Wire Wire Line 1586 | 5850 2150 6000 2150 1587 | Connection ~ 6000 2150 1588 | Wire Wire Line 1589 | 6000 2150 6000 2400 1590 | Wire Wire Line 1591 | 6150 2150 6300 2150 1592 | Connection ~ 6300 2150 1593 | Wire Wire Line 1594 | 6300 2150 6300 2400 1595 | Wire Wire Line 1596 | 6450 2150 6600 2150 1597 | Connection ~ 6600 2150 1598 | Wire Wire Line 1599 | 6600 2150 6600 2400 1600 | Wire Wire Line 1601 | 6750 2150 6900 2150 1602 | Connection ~ 6900 2150 1603 | Wire Wire Line 1604 | 6900 2150 6900 2400 1605 | Wire Wire Line 1606 | 5850 2400 6000 2400 1607 | Connection ~ 6000 2400 1608 | Wire Wire Line 1609 | 6000 2400 6000 2650 1610 | Wire Wire Line 1611 | 6150 2400 6300 2400 1612 | Connection ~ 6300 2400 1613 | Wire Wire Line 1614 | 6300 2400 6300 2650 1615 | Wire Wire Line 1616 | 6450 2400 6600 2400 1617 | Connection ~ 6600 2400 1618 | Wire Wire Line 1619 | 6600 2400 6600 2650 1620 | Wire Wire Line 1621 | 6750 2400 6900 2400 1622 | Connection ~ 6900 2400 1623 | Wire Wire Line 1624 | 6900 2400 6900 2650 1625 | Wire Wire Line 1626 | 6150 2650 6300 2650 1627 | Connection ~ 6300 2650 1628 | Wire Wire Line 1629 | 6300 2650 6300 2900 1630 | Wire Wire Line 1631 | 6450 2650 6600 2650 1632 | Connection ~ 6600 2650 1633 | Wire Wire Line 1634 | 6600 2650 6600 2900 1635 | Wire Wire Line 1636 | 6750 2650 6900 2650 1637 | Connection ~ 6900 2650 1638 | Wire Wire Line 1639 | 6900 2650 6900 2900 1640 | Wire Wire Line 1641 | 6450 2900 6600 2900 1642 | Connection ~ 6600 2900 1643 | Wire Wire Line 1644 | 6600 2900 6600 3150 1645 | Wire Wire Line 1646 | 6750 2900 6900 2900 1647 | Connection ~ 6900 2900 1648 | Wire Wire Line 1649 | 6900 2900 6900 3150 1650 | Wire Wire Line 1651 | 6750 3150 6900 3150 1652 | Connection ~ 6900 3150 1653 | Wire Wire Line 1654 | 6900 3150 6900 3400 1655 | Connection ~ 5100 1950 1656 | Wire Wire Line 1657 | 5100 1950 5250 1950 1658 | Wire Wire Line 1659 | 5100 1950 5100 2400 1660 | Connection ~ 5400 2200 1661 | Wire Wire Line 1662 | 5400 2200 5550 2200 1663 | Wire Wire Line 1664 | 5400 2200 5400 2650 1665 | Connection ~ 5700 2450 1666 | Wire Wire Line 1667 | 5700 2450 5850 2450 1668 | Wire Wire Line 1669 | 5700 2450 5700 2900 1670 | Connection ~ 6000 2700 1671 | Wire Wire Line 1672 | 6000 2700 6150 2700 1673 | Wire Wire Line 1674 | 6000 2700 6000 3150 1675 | Connection ~ 6300 2950 1676 | Wire Wire Line 1677 | 6300 2950 6450 2950 1678 | Wire Wire Line 1679 | 6300 2950 6300 3400 1680 | Connection ~ 6600 3200 1681 | Wire Wire Line 1682 | 6600 3200 6750 3200 1683 | Wire Wire Line 1684 | 6600 3200 6600 3650 1685 | Connection ~ 6900 3450 1686 | Wire Wire Line 1687 | 6900 3450 7050 3450 1688 | Wire Wire Line 1689 | 6900 3450 6900 3900 1690 | $Comp 1691 | L device:LED_Small_ALT D73 1692 | U 1 1 5EF18622 1693 | P 7800 1800 1694 | AR Path="/5EC90811/5EF18622" Ref="D73" Part="1" 1695 | AR Path="/5F64D6C7/5EF18622" Ref="D217" Part="1" 1696 | F 0 "D73" H 7750 1700 50 0000 L CNN 1697 | F 1 "LED_Small_ALT" V 7845 1898 50 0001 L CNN 1698 | F 2 "LEDs:LED_0603" V 7800 1800 50 0001 C CNN 1699 | F 3 "~" V 7800 1800 50 0001 C CNN 1700 | 1 7800 1800 1701 | 0 1 1 0 1702 | $EndComp 1703 | $Comp 1704 | L device:LED_Small_ALT D74 1705 | U 1 1 5EF1862C 1706 | P 7800 2050 1707 | AR Path="/5EC90811/5EF1862C" Ref="D74" Part="1" 1708 | AR Path="/5F64D6C7/5EF1862C" Ref="D218" Part="1" 1709 | F 0 "D74" H 7750 1950 50 0000 L CNN 1710 | F 1 "LED_Small_ALT" V 7845 2148 50 0001 L CNN 1711 | F 2 "LEDs:LED_0603" V 7800 2050 50 0001 C CNN 1712 | F 3 "~" V 7800 2050 50 0001 C CNN 1713 | 1 7800 2050 1714 | 0 1 1 0 1715 | $EndComp 1716 | $Comp 1717 | L device:LED_Small_ALT D75 1718 | U 1 1 5EF18636 1719 | P 7800 2300 1720 | AR Path="/5EC90811/5EF18636" Ref="D75" Part="1" 1721 | AR Path="/5F64D6C7/5EF18636" Ref="D219" Part="1" 1722 | F 0 "D75" H 7750 2200 50 0000 L CNN 1723 | F 1 "LED_Small_ALT" V 7845 2398 50 0001 L CNN 1724 | F 2 "LEDs:LED_0603" V 7800 2300 50 0001 C CNN 1725 | F 3 "~" V 7800 2300 50 0001 C CNN 1726 | 1 7800 2300 1727 | 0 1 1 0 1728 | $EndComp 1729 | Wire Wire Line 1730 | 7800 2150 7650 2150 1731 | Wire Wire Line 1732 | 7800 2400 7650 2400 1733 | $Comp 1734 | L device:LED_Small_ALT D76 1735 | U 1 1 5EF18642 1736 | P 7800 2550 1737 | AR Path="/5EC90811/5EF18642" Ref="D76" Part="1" 1738 | AR Path="/5F64D6C7/5EF18642" Ref="D220" Part="1" 1739 | F 0 "D76" H 7750 2450 50 0000 L CNN 1740 | F 1 "LED_Small_ALT" V 7845 2648 50 0001 L CNN 1741 | F 2 "LEDs:LED_0603" V 7800 2550 50 0001 C CNN 1742 | F 3 "~" V 7800 2550 50 0001 C CNN 1743 | 1 7800 2550 1744 | 0 1 1 0 1745 | $EndComp 1746 | $Comp 1747 | L device:LED_Small_ALT D77 1748 | U 1 1 5EF1864C 1749 | P 7800 2800 1750 | AR Path="/5EC90811/5EF1864C" Ref="D77" Part="1" 1751 | AR Path="/5F64D6C7/5EF1864C" Ref="D221" Part="1" 1752 | F 0 "D77" H 7750 2700 50 0000 L CNN 1753 | F 1 "LED_Small_ALT" V 7845 2898 50 0001 L CNN 1754 | F 2 "LEDs:LED_0603" V 7800 2800 50 0001 C CNN 1755 | F 3 "~" V 7800 2800 50 0001 C CNN 1756 | 1 7800 2800 1757 | 0 1 1 0 1758 | $EndComp 1759 | Wire Wire Line 1760 | 7800 2650 7650 2650 1761 | Wire Wire Line 1762 | 7800 2900 7650 2900 1763 | $Comp 1764 | L device:LED_Small_ALT D78 1765 | U 1 1 5EF18658 1766 | P 7800 3050 1767 | AR Path="/5EC90811/5EF18658" Ref="D78" Part="1" 1768 | AR Path="/5F64D6C7/5EF18658" Ref="D222" Part="1" 1769 | F 0 "D78" H 7750 2950 50 0000 L CNN 1770 | F 1 "LED_Small_ALT" V 7845 3148 50 0001 L CNN 1771 | F 2 "LEDs:LED_0603" V 7800 3050 50 0001 C CNN 1772 | F 3 "~" V 7800 3050 50 0001 C CNN 1773 | 1 7800 3050 1774 | 0 1 1 0 1775 | $EndComp 1776 | $Comp 1777 | L device:LED_Small_ALT D79 1778 | U 1 1 5EF18662 1779 | P 7800 3300 1780 | AR Path="/5EC90811/5EF18662" Ref="D79" Part="1" 1781 | AR Path="/5F64D6C7/5EF18662" Ref="D223" Part="1" 1782 | F 0 "D79" H 7750 3200 50 0000 L CNN 1783 | F 1 "LED_Small_ALT" V 7845 3398 50 0001 L CNN 1784 | F 2 "LEDs:LED_0603" V 7800 3300 50 0001 C CNN 1785 | F 3 "~" V 7800 3300 50 0001 C CNN 1786 | 1 7800 3300 1787 | 0 1 1 0 1788 | $EndComp 1789 | Wire Wire Line 1790 | 7800 3150 7650 3150 1791 | Wire Wire Line 1792 | 7800 3400 7650 3400 1793 | $Comp 1794 | L device:LED_Small_ALT D80 1795 | U 1 1 5EF1866E 1796 | P 7800 3550 1797 | AR Path="/5EC90811/5EF1866E" Ref="D80" Part="1" 1798 | AR Path="/5F64D6C7/5EF1866E" Ref="D224" Part="1" 1799 | F 0 "D80" H 7750 3450 50 0000 L CNN 1800 | F 1 "LED_Small_ALT" V 7845 3648 50 0001 L CNN 1801 | F 2 "LEDs:LED_0603" V 7800 3550 50 0001 C CNN 1802 | F 3 "~" V 7800 3550 50 0001 C CNN 1803 | 1 7800 3550 1804 | 0 1 1 0 1805 | $EndComp 1806 | $Comp 1807 | L device:LED_Small_ALT D81 1808 | U 1 1 5EF18678 1809 | P 7800 3800 1810 | AR Path="/5EC90811/5EF18678" Ref="D81" Part="1" 1811 | AR Path="/5F64D6C7/5EF18678" Ref="D225" Part="1" 1812 | F 0 "D81" H 7750 3700 50 0000 L CNN 1813 | F 1 "LED_Small_ALT" V 7845 3898 50 0001 L CNN 1814 | F 2 "LEDs:LED_0603" V 7800 3800 50 0001 C CNN 1815 | F 3 "~" V 7800 3800 50 0001 C CNN 1816 | 1 7800 3800 1817 | 0 1 1 0 1818 | $EndComp 1819 | Wire Wire Line 1820 | 7800 3650 7650 3650 1821 | Wire Wire Line 1822 | 7800 3900 7650 3900 1823 | Wire Wire Line 1824 | 7650 3900 7650 3650 1825 | Wire Wire Line 1826 | 7650 1700 7800 1700 1827 | Connection ~ 7650 2150 1828 | Wire Wire Line 1829 | 7650 2150 7650 1700 1830 | Connection ~ 7650 2400 1831 | Wire Wire Line 1832 | 7650 2400 7650 2150 1833 | Connection ~ 7650 2650 1834 | Wire Wire Line 1835 | 7650 2650 7650 2400 1836 | Connection ~ 7650 2900 1837 | Wire Wire Line 1838 | 7650 2900 7650 2650 1839 | Connection ~ 7650 3150 1840 | Wire Wire Line 1841 | 7650 3150 7650 2900 1842 | Connection ~ 7650 3400 1843 | Wire Wire Line 1844 | 7650 3400 7650 3150 1845 | Connection ~ 7650 3650 1846 | Wire Wire Line 1847 | 7650 3650 7650 3400 1848 | $Comp 1849 | L device:LED_Small_ALT D82 1850 | U 1 1 5EF18694 1851 | P 8100 1800 1852 | AR Path="/5EC90811/5EF18694" Ref="D82" Part="1" 1853 | AR Path="/5F64D6C7/5EF18694" Ref="D226" Part="1" 1854 | F 0 "D82" H 8050 1700 50 0000 L CNN 1855 | F 1 "LED_Small_ALT" V 8145 1898 50 0001 L CNN 1856 | F 2 "LEDs:LED_0603" V 8100 1800 50 0001 C CNN 1857 | F 3 "~" V 8100 1800 50 0001 C CNN 1858 | 1 8100 1800 1859 | 0 1 1 0 1860 | $EndComp 1861 | $Comp 1862 | L device:LED_Small_ALT D83 1863 | U 1 1 5EF1869E 1864 | P 8100 2050 1865 | AR Path="/5EC90811/5EF1869E" Ref="D83" Part="1" 1866 | AR Path="/5F64D6C7/5EF1869E" Ref="D227" Part="1" 1867 | F 0 "D83" H 8050 1950 50 0000 L CNN 1868 | F 1 "LED_Small_ALT" V 8145 2148 50 0001 L CNN 1869 | F 2 "LEDs:LED_0603" V 8100 2050 50 0001 C CNN 1870 | F 3 "~" V 8100 2050 50 0001 C CNN 1871 | 1 8100 2050 1872 | 0 1 1 0 1873 | $EndComp 1874 | $Comp 1875 | L device:LED_Small_ALT D84 1876 | U 1 1 5EF186A8 1877 | P 8100 2300 1878 | AR Path="/5EC90811/5EF186A8" Ref="D84" Part="1" 1879 | AR Path="/5F64D6C7/5EF186A8" Ref="D228" Part="1" 1880 | F 0 "D84" H 8050 2200 50 0000 L CNN 1881 | F 1 "LED_Small_ALT" V 8145 2398 50 0001 L CNN 1882 | F 2 "LEDs:LED_0603" V 8100 2300 50 0001 C CNN 1883 | F 3 "~" V 8100 2300 50 0001 C CNN 1884 | 1 8100 2300 1885 | 0 1 1 0 1886 | $EndComp 1887 | Wire Wire Line 1888 | 8100 2400 7950 2400 1889 | $Comp 1890 | L device:LED_Small_ALT D85 1891 | U 1 1 5EF186B3 1892 | P 8100 2550 1893 | AR Path="/5EC90811/5EF186B3" Ref="D85" Part="1" 1894 | AR Path="/5F64D6C7/5EF186B3" Ref="D229" Part="1" 1895 | F 0 "D85" H 8050 2450 50 0000 L CNN 1896 | F 1 "LED_Small_ALT" V 8145 2648 50 0001 L CNN 1897 | F 2 "LEDs:LED_0603" V 8100 2550 50 0001 C CNN 1898 | F 3 "~" V 8100 2550 50 0001 C CNN 1899 | 1 8100 2550 1900 | 0 1 1 0 1901 | $EndComp 1902 | $Comp 1903 | L device:LED_Small_ALT D86 1904 | U 1 1 5EF186BD 1905 | P 8100 2800 1906 | AR Path="/5EC90811/5EF186BD" Ref="D86" Part="1" 1907 | AR Path="/5F64D6C7/5EF186BD" Ref="D230" Part="1" 1908 | F 0 "D86" H 8050 2700 50 0000 L CNN 1909 | F 1 "LED_Small_ALT" V 8145 2898 50 0001 L CNN 1910 | F 2 "LEDs:LED_0603" V 8100 2800 50 0001 C CNN 1911 | F 3 "~" V 8100 2800 50 0001 C CNN 1912 | 1 8100 2800 1913 | 0 1 1 0 1914 | $EndComp 1915 | Wire Wire Line 1916 | 8100 2650 7950 2650 1917 | Wire Wire Line 1918 | 8100 2900 7950 2900 1919 | $Comp 1920 | L device:LED_Small_ALT D87 1921 | U 1 1 5EF186C9 1922 | P 8100 3050 1923 | AR Path="/5EC90811/5EF186C9" Ref="D87" Part="1" 1924 | AR Path="/5F64D6C7/5EF186C9" Ref="D231" Part="1" 1925 | F 0 "D87" H 8050 2950 50 0000 L CNN 1926 | F 1 "LED_Small_ALT" V 8145 3148 50 0001 L CNN 1927 | F 2 "LEDs:LED_0603" V 8100 3050 50 0001 C CNN 1928 | F 3 "~" V 8100 3050 50 0001 C CNN 1929 | 1 8100 3050 1930 | 0 1 1 0 1931 | $EndComp 1932 | $Comp 1933 | L device:LED_Small_ALT D88 1934 | U 1 1 5EF186D3 1935 | P 8100 3300 1936 | AR Path="/5EC90811/5EF186D3" Ref="D88" Part="1" 1937 | AR Path="/5F64D6C7/5EF186D3" Ref="D232" Part="1" 1938 | F 0 "D88" H 8050 3200 50 0000 L CNN 1939 | F 1 "LED_Small_ALT" V 8145 3398 50 0001 L CNN 1940 | F 2 "LEDs:LED_0603" V 8100 3300 50 0001 C CNN 1941 | F 3 "~" V 8100 3300 50 0001 C CNN 1942 | 1 8100 3300 1943 | 0 1 1 0 1944 | $EndComp 1945 | Wire Wire Line 1946 | 8100 3150 7950 3150 1947 | Wire Wire Line 1948 | 8100 3400 7950 3400 1949 | $Comp 1950 | L device:LED_Small_ALT D89 1951 | U 1 1 5EF186DF 1952 | P 8100 3550 1953 | AR Path="/5EC90811/5EF186DF" Ref="D89" Part="1" 1954 | AR Path="/5F64D6C7/5EF186DF" Ref="D233" Part="1" 1955 | F 0 "D89" H 8050 3450 50 0000 L CNN 1956 | F 1 "LED_Small_ALT" V 8145 3648 50 0001 L CNN 1957 | F 2 "LEDs:LED_0603" V 8100 3550 50 0001 C CNN 1958 | F 3 "~" V 8100 3550 50 0001 C CNN 1959 | 1 8100 3550 1960 | 0 1 1 0 1961 | $EndComp 1962 | $Comp 1963 | L device:LED_Small_ALT D90 1964 | U 1 1 5EF186E9 1965 | P 8100 3800 1966 | AR Path="/5EC90811/5EF186E9" Ref="D90" Part="1" 1967 | AR Path="/5F64D6C7/5EF186E9" Ref="D234" Part="1" 1968 | F 0 "D90" H 8050 3700 50 0000 L CNN 1969 | F 1 "LED_Small_ALT" V 8145 3898 50 0001 L CNN 1970 | F 2 "LEDs:LED_0603" V 8100 3800 50 0001 C CNN 1971 | F 3 "~" V 8100 3800 50 0001 C CNN 1972 | 1 8100 3800 1973 | 0 1 1 0 1974 | $EndComp 1975 | Wire Wire Line 1976 | 8100 3650 7950 3650 1977 | Wire Wire Line 1978 | 8100 3900 7950 3900 1979 | Wire Wire Line 1980 | 7950 3900 7950 3650 1981 | Connection ~ 7950 2400 1982 | Connection ~ 7950 2650 1983 | Wire Wire Line 1984 | 7950 2650 7950 2400 1985 | Connection ~ 7950 2900 1986 | Wire Wire Line 1987 | 7950 2900 7950 2650 1988 | Connection ~ 7950 3150 1989 | Wire Wire Line 1990 | 7950 3150 7950 2900 1991 | Connection ~ 7950 3400 1992 | Wire Wire Line 1993 | 7950 3400 7950 3150 1994 | Connection ~ 7950 3650 1995 | Wire Wire Line 1996 | 7950 3650 7950 3400 1997 | Wire Wire Line 1998 | 7650 1700 7500 1700 1999 | Connection ~ 7650 1700 2000 | Wire Wire Line 2001 | 7950 1900 7800 1900 2002 | $Comp 2003 | L device:LED_Small_ALT D91 2004 | U 1 1 5EF18704 2005 | P 8400 1800 2006 | AR Path="/5EC90811/5EF18704" Ref="D91" Part="1" 2007 | AR Path="/5F64D6C7/5EF18704" Ref="D235" Part="1" 2008 | F 0 "D91" H 8350 1700 50 0000 L CNN 2009 | F 1 "LED_Small_ALT" V 8445 1898 50 0001 L CNN 2010 | F 2 "LEDs:LED_0603" V 8400 1800 50 0001 C CNN 2011 | F 3 "~" V 8400 1800 50 0001 C CNN 2012 | 1 8400 1800 2013 | 0 1 1 0 2014 | $EndComp 2015 | $Comp 2016 | L device:LED_Small_ALT D92 2017 | U 1 1 5EF1870E 2018 | P 8400 2050 2019 | AR Path="/5EC90811/5EF1870E" Ref="D92" Part="1" 2020 | AR Path="/5F64D6C7/5EF1870E" Ref="D236" Part="1" 2021 | F 0 "D92" H 8350 1950 50 0000 L CNN 2022 | F 1 "LED_Small_ALT" V 8445 2148 50 0001 L CNN 2023 | F 2 "LEDs:LED_0603" V 8400 2050 50 0001 C CNN 2024 | F 3 "~" V 8400 2050 50 0001 C CNN 2025 | 1 8400 2050 2026 | 0 1 1 0 2027 | $EndComp 2028 | $Comp 2029 | L device:LED_Small_ALT D93 2030 | U 1 1 5EF18718 2031 | P 8400 2300 2032 | AR Path="/5EC90811/5EF18718" Ref="D93" Part="1" 2033 | AR Path="/5F64D6C7/5EF18718" Ref="D237" Part="1" 2034 | F 0 "D93" H 8350 2200 50 0000 L CNN 2035 | F 1 "LED_Small_ALT" V 8445 2398 50 0001 L CNN 2036 | F 2 "LEDs:LED_0603" V 8400 2300 50 0001 C CNN 2037 | F 3 "~" V 8400 2300 50 0001 C CNN 2038 | 1 8400 2300 2039 | 0 1 1 0 2040 | $EndComp 2041 | $Comp 2042 | L device:LED_Small_ALT D94 2043 | U 1 1 5EF18722 2044 | P 8400 2550 2045 | AR Path="/5EC90811/5EF18722" Ref="D94" Part="1" 2046 | AR Path="/5F64D6C7/5EF18722" Ref="D238" Part="1" 2047 | F 0 "D94" H 8350 2450 50 0000 L CNN 2048 | F 1 "LED_Small_ALT" V 8445 2648 50 0001 L CNN 2049 | F 2 "LEDs:LED_0603" V 8400 2550 50 0001 C CNN 2050 | F 3 "~" V 8400 2550 50 0001 C CNN 2051 | 1 8400 2550 2052 | 0 1 1 0 2053 | $EndComp 2054 | $Comp 2055 | L device:LED_Small_ALT D95 2056 | U 1 1 5EF1872C 2057 | P 8400 2800 2058 | AR Path="/5EC90811/5EF1872C" Ref="D95" Part="1" 2059 | AR Path="/5F64D6C7/5EF1872C" Ref="D239" Part="1" 2060 | F 0 "D95" H 8350 2700 50 0000 L CNN 2061 | F 1 "LED_Small_ALT" V 8445 2898 50 0001 L CNN 2062 | F 2 "LEDs:LED_0603" V 8400 2800 50 0001 C CNN 2063 | F 3 "~" V 8400 2800 50 0001 C CNN 2064 | 1 8400 2800 2065 | 0 1 1 0 2066 | $EndComp 2067 | Wire Wire Line 2068 | 8400 2650 8250 2650 2069 | Wire Wire Line 2070 | 8400 2900 8250 2900 2071 | $Comp 2072 | L device:LED_Small_ALT D96 2073 | U 1 1 5EF18738 2074 | P 8400 3050 2075 | AR Path="/5EC90811/5EF18738" Ref="D96" Part="1" 2076 | AR Path="/5F64D6C7/5EF18738" Ref="D240" Part="1" 2077 | F 0 "D96" H 8350 2950 50 0000 L CNN 2078 | F 1 "LED_Small_ALT" V 8445 3148 50 0001 L CNN 2079 | F 2 "LEDs:LED_0603" V 8400 3050 50 0001 C CNN 2080 | F 3 "~" V 8400 3050 50 0001 C CNN 2081 | 1 8400 3050 2082 | 0 1 1 0 2083 | $EndComp 2084 | $Comp 2085 | L device:LED_Small_ALT D97 2086 | U 1 1 5EF18742 2087 | P 8400 3300 2088 | AR Path="/5EC90811/5EF18742" Ref="D97" Part="1" 2089 | AR Path="/5F64D6C7/5EF18742" Ref="D241" Part="1" 2090 | F 0 "D97" H 8350 3200 50 0000 L CNN 2091 | F 1 "LED_Small_ALT" V 8445 3398 50 0001 L CNN 2092 | F 2 "LEDs:LED_0603" V 8400 3300 50 0001 C CNN 2093 | F 3 "~" V 8400 3300 50 0001 C CNN 2094 | 1 8400 3300 2095 | 0 1 1 0 2096 | $EndComp 2097 | Wire Wire Line 2098 | 8400 3150 8250 3150 2099 | Wire Wire Line 2100 | 8400 3400 8250 3400 2101 | $Comp 2102 | L device:LED_Small_ALT D98 2103 | U 1 1 5EF1874E 2104 | P 8400 3550 2105 | AR Path="/5EC90811/5EF1874E" Ref="D98" Part="1" 2106 | AR Path="/5F64D6C7/5EF1874E" Ref="D242" Part="1" 2107 | F 0 "D98" H 8350 3450 50 0000 L CNN 2108 | F 1 "LED_Small_ALT" V 8445 3648 50 0001 L CNN 2109 | F 2 "LEDs:LED_0603" V 8400 3550 50 0001 C CNN 2110 | F 3 "~" V 8400 3550 50 0001 C CNN 2111 | 1 8400 3550 2112 | 0 1 1 0 2113 | $EndComp 2114 | $Comp 2115 | L device:LED_Small_ALT D99 2116 | U 1 1 5EF18758 2117 | P 8400 3800 2118 | AR Path="/5EC90811/5EF18758" Ref="D99" Part="1" 2119 | AR Path="/5F64D6C7/5EF18758" Ref="D243" Part="1" 2120 | F 0 "D99" H 8350 3700 50 0000 L CNN 2121 | F 1 "LED_Small_ALT" V 8445 3898 50 0001 L CNN 2122 | F 2 "LEDs:LED_0603" V 8400 3800 50 0001 C CNN 2123 | F 3 "~" V 8400 3800 50 0001 C CNN 2124 | 1 8400 3800 2125 | 0 1 1 0 2126 | $EndComp 2127 | Wire Wire Line 2128 | 8400 3650 8250 3650 2129 | Wire Wire Line 2130 | 8400 3900 8250 3900 2131 | Wire Wire Line 2132 | 8250 3900 8250 3650 2133 | Connection ~ 8250 2650 2134 | Connection ~ 8250 2900 2135 | Wire Wire Line 2136 | 8250 2900 8250 2650 2137 | Connection ~ 8250 3150 2138 | Wire Wire Line 2139 | 8250 3150 8250 2900 2140 | Connection ~ 8250 3400 2141 | Wire Wire Line 2142 | 8250 3400 8250 3150 2143 | Connection ~ 8250 3650 2144 | Wire Wire Line 2145 | 8250 3650 8250 3400 2146 | Wire Wire Line 2147 | 8250 1900 8100 1900 2148 | $Comp 2149 | L device:LED_Small_ALT D100 2150 | U 1 1 5EF1876F 2151 | P 8700 1800 2152 | AR Path="/5EC90811/5EF1876F" Ref="D100" Part="1" 2153 | AR Path="/5F64D6C7/5EF1876F" Ref="D244" Part="1" 2154 | F 0 "D100" H 8650 1700 50 0000 L CNN 2155 | F 1 "LED_Small_ALT" V 8745 1898 50 0001 L CNN 2156 | F 2 "LEDs:LED_0603" V 8700 1800 50 0001 C CNN 2157 | F 3 "~" V 8700 1800 50 0001 C CNN 2158 | 1 8700 1800 2159 | 0 1 1 0 2160 | $EndComp 2161 | $Comp 2162 | L device:LED_Small_ALT D101 2163 | U 1 1 5EF18779 2164 | P 8700 2050 2165 | AR Path="/5EC90811/5EF18779" Ref="D101" Part="1" 2166 | AR Path="/5F64D6C7/5EF18779" Ref="D245" Part="1" 2167 | F 0 "D101" H 8650 1950 50 0000 L CNN 2168 | F 1 "LED_Small_ALT" V 8745 2148 50 0001 L CNN 2169 | F 2 "LEDs:LED_0603" V 8700 2050 50 0001 C CNN 2170 | F 3 "~" V 8700 2050 50 0001 C CNN 2171 | 1 8700 2050 2172 | 0 1 1 0 2173 | $EndComp 2174 | $Comp 2175 | L device:LED_Small_ALT D102 2176 | U 1 1 5EF18783 2177 | P 8700 2300 2178 | AR Path="/5EC90811/5EF18783" Ref="D102" Part="1" 2179 | AR Path="/5F64D6C7/5EF18783" Ref="D246" Part="1" 2180 | F 0 "D102" H 8650 2200 50 0000 L CNN 2181 | F 1 "LED_Small_ALT" V 8745 2398 50 0001 L CNN 2182 | F 2 "LEDs:LED_0603" V 8700 2300 50 0001 C CNN 2183 | F 3 "~" V 8700 2300 50 0001 C CNN 2184 | 1 8700 2300 2185 | 0 1 1 0 2186 | $EndComp 2187 | $Comp 2188 | L device:LED_Small_ALT D103 2189 | U 1 1 5EF1878D 2190 | P 8700 2550 2191 | AR Path="/5EC90811/5EF1878D" Ref="D103" Part="1" 2192 | AR Path="/5F64D6C7/5EF1878D" Ref="D247" Part="1" 2193 | F 0 "D103" H 8650 2450 50 0000 L CNN 2194 | F 1 "LED_Small_ALT" V 8745 2648 50 0001 L CNN 2195 | F 2 "LEDs:LED_0603" V 8700 2550 50 0001 C CNN 2196 | F 3 "~" V 8700 2550 50 0001 C CNN 2197 | 1 8700 2550 2198 | 0 1 1 0 2199 | $EndComp 2200 | $Comp 2201 | L device:LED_Small_ALT D104 2202 | U 1 1 5EF18797 2203 | P 8700 2800 2204 | AR Path="/5EC90811/5EF18797" Ref="D104" Part="1" 2205 | AR Path="/5F64D6C7/5EF18797" Ref="D248" Part="1" 2206 | F 0 "D104" H 8650 2700 50 0000 L CNN 2207 | F 1 "LED_Small_ALT" V 8745 2898 50 0001 L CNN 2208 | F 2 "LEDs:LED_0603" V 8700 2800 50 0001 C CNN 2209 | F 3 "~" V 8700 2800 50 0001 C CNN 2210 | 1 8700 2800 2211 | 0 1 1 0 2212 | $EndComp 2213 | Wire Wire Line 2214 | 8700 2900 8550 2900 2215 | $Comp 2216 | L device:LED_Small_ALT D105 2217 | U 1 1 5EF187A2 2218 | P 8700 3050 2219 | AR Path="/5EC90811/5EF187A2" Ref="D105" Part="1" 2220 | AR Path="/5F64D6C7/5EF187A2" Ref="D249" Part="1" 2221 | F 0 "D105" H 8650 2950 50 0000 L CNN 2222 | F 1 "LED_Small_ALT" V 8745 3148 50 0001 L CNN 2223 | F 2 "LEDs:LED_0603" V 8700 3050 50 0001 C CNN 2224 | F 3 "~" V 8700 3050 50 0001 C CNN 2225 | 1 8700 3050 2226 | 0 1 1 0 2227 | $EndComp 2228 | $Comp 2229 | L device:LED_Small_ALT D106 2230 | U 1 1 5EF187AC 2231 | P 8700 3300 2232 | AR Path="/5EC90811/5EF187AC" Ref="D106" Part="1" 2233 | AR Path="/5F64D6C7/5EF187AC" Ref="D250" Part="1" 2234 | F 0 "D106" H 8650 3200 50 0000 L CNN 2235 | F 1 "LED_Small_ALT" V 8745 3398 50 0001 L CNN 2236 | F 2 "LEDs:LED_0603" V 8700 3300 50 0001 C CNN 2237 | F 3 "~" V 8700 3300 50 0001 C CNN 2238 | 1 8700 3300 2239 | 0 1 1 0 2240 | $EndComp 2241 | Wire Wire Line 2242 | 8700 3150 8550 3150 2243 | Wire Wire Line 2244 | 8700 3400 8550 3400 2245 | $Comp 2246 | L device:LED_Small_ALT D107 2247 | U 1 1 5EF187B8 2248 | P 8700 3550 2249 | AR Path="/5EC90811/5EF187B8" Ref="D107" Part="1" 2250 | AR Path="/5F64D6C7/5EF187B8" Ref="D251" Part="1" 2251 | F 0 "D107" H 8650 3450 50 0000 L CNN 2252 | F 1 "LED_Small_ALT" V 8745 3648 50 0001 L CNN 2253 | F 2 "LEDs:LED_0603" V 8700 3550 50 0001 C CNN 2254 | F 3 "~" V 8700 3550 50 0001 C CNN 2255 | 1 8700 3550 2256 | 0 1 1 0 2257 | $EndComp 2258 | $Comp 2259 | L device:LED_Small_ALT D108 2260 | U 1 1 5EF187C2 2261 | P 8700 3800 2262 | AR Path="/5EC90811/5EF187C2" Ref="D108" Part="1" 2263 | AR Path="/5F64D6C7/5EF187C2" Ref="D252" Part="1" 2264 | F 0 "D108" H 8650 3700 50 0000 L CNN 2265 | F 1 "LED_Small_ALT" V 8745 3898 50 0001 L CNN 2266 | F 2 "LEDs:LED_0603" V 8700 3800 50 0001 C CNN 2267 | F 3 "~" V 8700 3800 50 0001 C CNN 2268 | 1 8700 3800 2269 | 0 1 1 0 2270 | $EndComp 2271 | Wire Wire Line 2272 | 8700 3650 8550 3650 2273 | Wire Wire Line 2274 | 8700 3900 8550 3900 2275 | Wire Wire Line 2276 | 8550 3900 8550 3650 2277 | Connection ~ 8550 2900 2278 | Connection ~ 8550 3150 2279 | Wire Wire Line 2280 | 8550 3150 8550 2900 2281 | Connection ~ 8550 3400 2282 | Wire Wire Line 2283 | 8550 3400 8550 3150 2284 | Connection ~ 8550 3650 2285 | Wire Wire Line 2286 | 8550 3650 8550 3400 2287 | Wire Wire Line 2288 | 8550 1900 8400 1900 2289 | $Comp 2290 | L device:LED_Small_ALT D109 2291 | U 1 1 5EF187D7 2292 | P 9000 1800 2293 | AR Path="/5EC90811/5EF187D7" Ref="D109" Part="1" 2294 | AR Path="/5F64D6C7/5EF187D7" Ref="D253" Part="1" 2295 | F 0 "D109" H 8950 1700 50 0000 L CNN 2296 | F 1 "LED_Small_ALT" V 9045 1898 50 0001 L CNN 2297 | F 2 "LEDs:LED_0603" V 9000 1800 50 0001 C CNN 2298 | F 3 "~" V 9000 1800 50 0001 C CNN 2299 | 1 9000 1800 2300 | 0 1 1 0 2301 | $EndComp 2302 | $Comp 2303 | L device:LED_Small_ALT D110 2304 | U 1 1 5EF187E1 2305 | P 9000 2050 2306 | AR Path="/5EC90811/5EF187E1" Ref="D110" Part="1" 2307 | AR Path="/5F64D6C7/5EF187E1" Ref="D254" Part="1" 2308 | F 0 "D110" H 8950 1950 50 0000 L CNN 2309 | F 1 "LED_Small_ALT" V 9045 2148 50 0001 L CNN 2310 | F 2 "LEDs:LED_0603" V 9000 2050 50 0001 C CNN 2311 | F 3 "~" V 9000 2050 50 0001 C CNN 2312 | 1 9000 2050 2313 | 0 1 1 0 2314 | $EndComp 2315 | $Comp 2316 | L device:LED_Small_ALT D111 2317 | U 1 1 5EF187EB 2318 | P 9000 2300 2319 | AR Path="/5EC90811/5EF187EB" Ref="D111" Part="1" 2320 | AR Path="/5F64D6C7/5EF187EB" Ref="D255" Part="1" 2321 | F 0 "D111" H 8950 2200 50 0000 L CNN 2322 | F 1 "LED_Small_ALT" V 9045 2398 50 0001 L CNN 2323 | F 2 "LEDs:LED_0603" V 9000 2300 50 0001 C CNN 2324 | F 3 "~" V 9000 2300 50 0001 C CNN 2325 | 1 9000 2300 2326 | 0 1 1 0 2327 | $EndComp 2328 | $Comp 2329 | L device:LED_Small_ALT D112 2330 | U 1 1 5EF187F5 2331 | P 9000 2550 2332 | AR Path="/5EC90811/5EF187F5" Ref="D112" Part="1" 2333 | AR Path="/5F64D6C7/5EF187F5" Ref="D256" Part="1" 2334 | F 0 "D112" H 8950 2450 50 0000 L CNN 2335 | F 1 "LED_Small_ALT" V 9045 2648 50 0001 L CNN 2336 | F 2 "LEDs:LED_0603" V 9000 2550 50 0001 C CNN 2337 | F 3 "~" V 9000 2550 50 0001 C CNN 2338 | 1 9000 2550 2339 | 0 1 1 0 2340 | $EndComp 2341 | $Comp 2342 | L device:LED_Small_ALT D113 2343 | U 1 1 5EF187FF 2344 | P 9000 2800 2345 | AR Path="/5EC90811/5EF187FF" Ref="D113" Part="1" 2346 | AR Path="/5F64D6C7/5EF187FF" Ref="D257" Part="1" 2347 | F 0 "D113" H 8950 2700 50 0000 L CNN 2348 | F 1 "LED_Small_ALT" V 9045 2898 50 0001 L CNN 2349 | F 2 "LEDs:LED_0603" V 9000 2800 50 0001 C CNN 2350 | F 3 "~" V 9000 2800 50 0001 C CNN 2351 | 1 9000 2800 2352 | 0 1 1 0 2353 | $EndComp 2354 | $Comp 2355 | L device:LED_Small_ALT D114 2356 | U 1 1 5EF18809 2357 | P 9000 3050 2358 | AR Path="/5EC90811/5EF18809" Ref="D114" Part="1" 2359 | AR Path="/5F64D6C7/5EF18809" Ref="D258" Part="1" 2360 | F 0 "D114" H 8950 2950 50 0000 L CNN 2361 | F 1 "LED_Small_ALT" V 9045 3148 50 0001 L CNN 2362 | F 2 "LEDs:LED_0603" V 9000 3050 50 0001 C CNN 2363 | F 3 "~" V 9000 3050 50 0001 C CNN 2364 | 1 9000 3050 2365 | 0 1 1 0 2366 | $EndComp 2367 | $Comp 2368 | L device:LED_Small_ALT D115 2369 | U 1 1 5EF18813 2370 | P 9000 3300 2371 | AR Path="/5EC90811/5EF18813" Ref="D115" Part="1" 2372 | AR Path="/5F64D6C7/5EF18813" Ref="D259" Part="1" 2373 | F 0 "D115" H 8950 3200 50 0000 L CNN 2374 | F 1 "LED_Small_ALT" V 9045 3398 50 0001 L CNN 2375 | F 2 "LEDs:LED_0603" V 9000 3300 50 0001 C CNN 2376 | F 3 "~" V 9000 3300 50 0001 C CNN 2377 | 1 9000 3300 2378 | 0 1 1 0 2379 | $EndComp 2380 | Wire Wire Line 2381 | 9000 3150 8850 3150 2382 | Wire Wire Line 2383 | 9000 3400 8850 3400 2384 | $Comp 2385 | L device:LED_Small_ALT D116 2386 | U 1 1 5EF1881F 2387 | P 9000 3550 2388 | AR Path="/5EC90811/5EF1881F" Ref="D116" Part="1" 2389 | AR Path="/5F64D6C7/5EF1881F" Ref="D260" Part="1" 2390 | F 0 "D116" H 8950 3450 50 0000 L CNN 2391 | F 1 "LED_Small_ALT" V 9045 3648 50 0001 L CNN 2392 | F 2 "LEDs:LED_0603" V 9000 3550 50 0001 C CNN 2393 | F 3 "~" V 9000 3550 50 0001 C CNN 2394 | 1 9000 3550 2395 | 0 1 1 0 2396 | $EndComp 2397 | $Comp 2398 | L device:LED_Small_ALT D117 2399 | U 1 1 5EF18829 2400 | P 9000 3800 2401 | AR Path="/5EC90811/5EF18829" Ref="D117" Part="1" 2402 | AR Path="/5F64D6C7/5EF18829" Ref="D261" Part="1" 2403 | F 0 "D117" H 8950 3700 50 0000 L CNN 2404 | F 1 "LED_Small_ALT" V 9045 3898 50 0001 L CNN 2405 | F 2 "LEDs:LED_0603" V 9000 3800 50 0001 C CNN 2406 | F 3 "~" V 9000 3800 50 0001 C CNN 2407 | 1 9000 3800 2408 | 0 1 1 0 2409 | $EndComp 2410 | Wire Wire Line 2411 | 9000 3650 8850 3650 2412 | Wire Wire Line 2413 | 9000 3900 8850 3900 2414 | Wire Wire Line 2415 | 8850 3900 8850 3650 2416 | Connection ~ 8850 3150 2417 | Connection ~ 8850 3400 2418 | Wire Wire Line 2419 | 8850 3400 8850 3150 2420 | Connection ~ 8850 3650 2421 | Wire Wire Line 2422 | 8850 3650 8850 3400 2423 | $Comp 2424 | L device:LED_Small_ALT D118 2425 | U 1 1 5EF1883B 2426 | P 9300 1800 2427 | AR Path="/5EC90811/5EF1883B" Ref="D118" Part="1" 2428 | AR Path="/5F64D6C7/5EF1883B" Ref="D262" Part="1" 2429 | F 0 "D118" H 9250 1700 50 0000 L CNN 2430 | F 1 "LED_Small_ALT" V 9345 1898 50 0001 L CNN 2431 | F 2 "LEDs:LED_0603" V 9300 1800 50 0001 C CNN 2432 | F 3 "~" V 9300 1800 50 0001 C CNN 2433 | 1 9300 1800 2434 | 0 1 1 0 2435 | $EndComp 2436 | $Comp 2437 | L device:LED_Small_ALT D119 2438 | U 1 1 5EF18845 2439 | P 9300 2050 2440 | AR Path="/5EC90811/5EF18845" Ref="D119" Part="1" 2441 | AR Path="/5F64D6C7/5EF18845" Ref="D263" Part="1" 2442 | F 0 "D119" H 9250 1950 50 0000 L CNN 2443 | F 1 "LED_Small_ALT" V 9345 2148 50 0001 L CNN 2444 | F 2 "LEDs:LED_0603" V 9300 2050 50 0001 C CNN 2445 | F 3 "~" V 9300 2050 50 0001 C CNN 2446 | 1 9300 2050 2447 | 0 1 1 0 2448 | $EndComp 2449 | $Comp 2450 | L device:LED_Small_ALT D120 2451 | U 1 1 5EF1884F 2452 | P 9300 2300 2453 | AR Path="/5EC90811/5EF1884F" Ref="D120" Part="1" 2454 | AR Path="/5F64D6C7/5EF1884F" Ref="D264" Part="1" 2455 | F 0 "D120" H 9250 2200 50 0000 L CNN 2456 | F 1 "LED_Small_ALT" V 9345 2398 50 0001 L CNN 2457 | F 2 "LEDs:LED_0603" V 9300 2300 50 0001 C CNN 2458 | F 3 "~" V 9300 2300 50 0001 C CNN 2459 | 1 9300 2300 2460 | 0 1 1 0 2461 | $EndComp 2462 | $Comp 2463 | L device:LED_Small_ALT D121 2464 | U 1 1 5EF18859 2465 | P 9300 2550 2466 | AR Path="/5EC90811/5EF18859" Ref="D121" Part="1" 2467 | AR Path="/5F64D6C7/5EF18859" Ref="D265" Part="1" 2468 | F 0 "D121" H 9250 2450 50 0000 L CNN 2469 | F 1 "LED_Small_ALT" V 9345 2648 50 0001 L CNN 2470 | F 2 "LEDs:LED_0603" V 9300 2550 50 0001 C CNN 2471 | F 3 "~" V 9300 2550 50 0001 C CNN 2472 | 1 9300 2550 2473 | 0 1 1 0 2474 | $EndComp 2475 | $Comp 2476 | L device:LED_Small_ALT D122 2477 | U 1 1 5EF18863 2478 | P 9300 2800 2479 | AR Path="/5EC90811/5EF18863" Ref="D122" Part="1" 2480 | AR Path="/5F64D6C7/5EF18863" Ref="D266" Part="1" 2481 | F 0 "D122" H 9250 2700 50 0000 L CNN 2482 | F 1 "LED_Small_ALT" V 9345 2898 50 0001 L CNN 2483 | F 2 "LEDs:LED_0603" V 9300 2800 50 0001 C CNN 2484 | F 3 "~" V 9300 2800 50 0001 C CNN 2485 | 1 9300 2800 2486 | 0 1 1 0 2487 | $EndComp 2488 | $Comp 2489 | L device:LED_Small_ALT D123 2490 | U 1 1 5EF1886D 2491 | P 9300 3050 2492 | AR Path="/5EC90811/5EF1886D" Ref="D123" Part="1" 2493 | AR Path="/5F64D6C7/5EF1886D" Ref="D267" Part="1" 2494 | F 0 "D123" H 9250 2950 50 0000 L CNN 2495 | F 1 "LED_Small_ALT" V 9345 3148 50 0001 L CNN 2496 | F 2 "LEDs:LED_0603" V 9300 3050 50 0001 C CNN 2497 | F 3 "~" V 9300 3050 50 0001 C CNN 2498 | 1 9300 3050 2499 | 0 1 1 0 2500 | $EndComp 2501 | $Comp 2502 | L device:LED_Small_ALT D124 2503 | U 1 1 5EF18877 2504 | P 9300 3300 2505 | AR Path="/5EC90811/5EF18877" Ref="D124" Part="1" 2506 | AR Path="/5F64D6C7/5EF18877" Ref="D268" Part="1" 2507 | F 0 "D124" H 9250 3200 50 0000 L CNN 2508 | F 1 "LED_Small_ALT" V 9345 3398 50 0001 L CNN 2509 | F 2 "LEDs:LED_0603" V 9300 3300 50 0001 C CNN 2510 | F 3 "~" V 9300 3300 50 0001 C CNN 2511 | 1 9300 3300 2512 | 0 1 1 0 2513 | $EndComp 2514 | Wire Wire Line 2515 | 9300 3400 9150 3400 2516 | $Comp 2517 | L device:LED_Small_ALT D125 2518 | U 1 1 5EF18882 2519 | P 9300 3550 2520 | AR Path="/5EC90811/5EF18882" Ref="D125" Part="1" 2521 | AR Path="/5F64D6C7/5EF18882" Ref="D269" Part="1" 2522 | F 0 "D125" H 9250 3450 50 0000 L CNN 2523 | F 1 "LED_Small_ALT" V 9345 3648 50 0001 L CNN 2524 | F 2 "LEDs:LED_0603" V 9300 3550 50 0001 C CNN 2525 | F 3 "~" V 9300 3550 50 0001 C CNN 2526 | 1 9300 3550 2527 | 0 1 1 0 2528 | $EndComp 2529 | $Comp 2530 | L device:LED_Small_ALT D126 2531 | U 1 1 5EF1888C 2532 | P 9300 3800 2533 | AR Path="/5EC90811/5EF1888C" Ref="D126" Part="1" 2534 | AR Path="/5F64D6C7/5EF1888C" Ref="D270" Part="1" 2535 | F 0 "D126" H 9250 3700 50 0000 L CNN 2536 | F 1 "LED_Small_ALT" V 9345 3898 50 0001 L CNN 2537 | F 2 "LEDs:LED_0603" V 9300 3800 50 0001 C CNN 2538 | F 3 "~" V 9300 3800 50 0001 C CNN 2539 | 1 9300 3800 2540 | 0 1 1 0 2541 | $EndComp 2542 | Wire Wire Line 2543 | 9300 3650 9150 3650 2544 | Wire Wire Line 2545 | 9300 3900 9150 3900 2546 | Wire Wire Line 2547 | 9150 3900 9150 3650 2548 | Connection ~ 9150 3400 2549 | Connection ~ 9150 3650 2550 | Wire Wire Line 2551 | 9150 3650 9150 3400 2552 | Wire Wire Line 2553 | 9150 1900 9000 1900 2554 | $Comp 2555 | L device:LED_Small_ALT D127 2556 | U 1 1 5EF1889D 2557 | P 9600 1800 2558 | AR Path="/5EC90811/5EF1889D" Ref="D127" Part="1" 2559 | AR Path="/5F64D6C7/5EF1889D" Ref="D271" Part="1" 2560 | F 0 "D127" H 9550 1700 50 0000 L CNN 2561 | F 1 "LED_Small_ALT" V 9645 1898 50 0001 L CNN 2562 | F 2 "LEDs:LED_0603" V 9600 1800 50 0001 C CNN 2563 | F 3 "~" V 9600 1800 50 0001 C CNN 2564 | 1 9600 1800 2565 | 0 1 1 0 2566 | $EndComp 2567 | $Comp 2568 | L device:LED_Small_ALT D128 2569 | U 1 1 5EF188A7 2570 | P 9600 2050 2571 | AR Path="/5EC90811/5EF188A7" Ref="D128" Part="1" 2572 | AR Path="/5F64D6C7/5EF188A7" Ref="D272" Part="1" 2573 | F 0 "D128" H 9550 1950 50 0000 L CNN 2574 | F 1 "LED_Small_ALT" V 9645 2148 50 0001 L CNN 2575 | F 2 "LEDs:LED_0603" V 9600 2050 50 0001 C CNN 2576 | F 3 "~" V 9600 2050 50 0001 C CNN 2577 | 1 9600 2050 2578 | 0 1 1 0 2579 | $EndComp 2580 | $Comp 2581 | L device:LED_Small_ALT D129 2582 | U 1 1 5EF188B1 2583 | P 9600 2300 2584 | AR Path="/5EC90811/5EF188B1" Ref="D129" Part="1" 2585 | AR Path="/5F64D6C7/5EF188B1" Ref="D273" Part="1" 2586 | F 0 "D129" H 9550 2200 50 0000 L CNN 2587 | F 1 "LED_Small_ALT" V 9645 2398 50 0001 L CNN 2588 | F 2 "LEDs:LED_0603" V 9600 2300 50 0001 C CNN 2589 | F 3 "~" V 9600 2300 50 0001 C CNN 2590 | 1 9600 2300 2591 | 0 1 1 0 2592 | $EndComp 2593 | $Comp 2594 | L device:LED_Small_ALT D130 2595 | U 1 1 5EF188BB 2596 | P 9600 2550 2597 | AR Path="/5EC90811/5EF188BB" Ref="D130" Part="1" 2598 | AR Path="/5F64D6C7/5EF188BB" Ref="D274" Part="1" 2599 | F 0 "D130" H 9550 2450 50 0000 L CNN 2600 | F 1 "LED_Small_ALT" V 9645 2648 50 0001 L CNN 2601 | F 2 "LEDs:LED_0603" V 9600 2550 50 0001 C CNN 2602 | F 3 "~" V 9600 2550 50 0001 C CNN 2603 | 1 9600 2550 2604 | 0 1 1 0 2605 | $EndComp 2606 | $Comp 2607 | L device:LED_Small_ALT D131 2608 | U 1 1 5EF188C5 2609 | P 9600 2800 2610 | AR Path="/5EC90811/5EF188C5" Ref="D131" Part="1" 2611 | AR Path="/5F64D6C7/5EF188C5" Ref="D275" Part="1" 2612 | F 0 "D131" H 9550 2700 50 0000 L CNN 2613 | F 1 "LED_Small_ALT" V 9645 2898 50 0001 L CNN 2614 | F 2 "LEDs:LED_0603" V 9600 2800 50 0001 C CNN 2615 | F 3 "~" V 9600 2800 50 0001 C CNN 2616 | 1 9600 2800 2617 | 0 1 1 0 2618 | $EndComp 2619 | $Comp 2620 | L device:LED_Small_ALT D132 2621 | U 1 1 5EF188CF 2622 | P 9600 3050 2623 | AR Path="/5EC90811/5EF188CF" Ref="D132" Part="1" 2624 | AR Path="/5F64D6C7/5EF188CF" Ref="D276" Part="1" 2625 | F 0 "D132" H 9550 2950 50 0000 L CNN 2626 | F 1 "LED_Small_ALT" V 9645 3148 50 0001 L CNN 2627 | F 2 "LEDs:LED_0603" V 9600 3050 50 0001 C CNN 2628 | F 3 "~" V 9600 3050 50 0001 C CNN 2629 | 1 9600 3050 2630 | 0 1 1 0 2631 | $EndComp 2632 | $Comp 2633 | L device:LED_Small_ALT D133 2634 | U 1 1 5EF188D9 2635 | P 9600 3300 2636 | AR Path="/5EC90811/5EF188D9" Ref="D133" Part="1" 2637 | AR Path="/5F64D6C7/5EF188D9" Ref="D277" Part="1" 2638 | F 0 "D133" H 9550 3200 50 0000 L CNN 2639 | F 1 "LED_Small_ALT" V 9645 3398 50 0001 L CNN 2640 | F 2 "LEDs:LED_0603" V 9600 3300 50 0001 C CNN 2641 | F 3 "~" V 9600 3300 50 0001 C CNN 2642 | 1 9600 3300 2643 | 0 1 1 0 2644 | $EndComp 2645 | $Comp 2646 | L device:LED_Small_ALT D134 2647 | U 1 1 5EF188E3 2648 | P 9600 3550 2649 | AR Path="/5EC90811/5EF188E3" Ref="D134" Part="1" 2650 | AR Path="/5F64D6C7/5EF188E3" Ref="D278" Part="1" 2651 | F 0 "D134" H 9550 3450 50 0000 L CNN 2652 | F 1 "LED_Small_ALT" V 9645 3648 50 0001 L CNN 2653 | F 2 "LEDs:LED_0603" V 9600 3550 50 0001 C CNN 2654 | F 3 "~" V 9600 3550 50 0001 C CNN 2655 | 1 9600 3550 2656 | 0 1 1 0 2657 | $EndComp 2658 | $Comp 2659 | L device:LED_Small_ALT D135 2660 | U 1 1 5EF188ED 2661 | P 9600 3800 2662 | AR Path="/5EC90811/5EF188ED" Ref="D135" Part="1" 2663 | AR Path="/5F64D6C7/5EF188ED" Ref="D279" Part="1" 2664 | F 0 "D135" H 9550 3700 50 0000 L CNN 2665 | F 1 "LED_Small_ALT" V 9645 3898 50 0001 L CNN 2666 | F 2 "LEDs:LED_0603" V 9600 3800 50 0001 C CNN 2667 | F 3 "~" V 9600 3800 50 0001 C CNN 2668 | 1 9600 3800 2669 | 0 1 1 0 2670 | $EndComp 2671 | Wire Wire Line 2672 | 9600 3650 9450 3650 2673 | Wire Wire Line 2674 | 9600 3900 9450 3900 2675 | Wire Wire Line 2676 | 9450 3900 9450 3650 2677 | Connection ~ 9450 3650 2678 | Wire Wire Line 2679 | 9450 1900 9300 1900 2680 | $Comp 2681 | L device:LED_Small_ALT D136 2682 | U 1 1 5EF188FC 2683 | P 9900 1800 2684 | AR Path="/5EC90811/5EF188FC" Ref="D136" Part="1" 2685 | AR Path="/5F64D6C7/5EF188FC" Ref="D280" Part="1" 2686 | F 0 "D136" H 9850 1700 50 0000 L CNN 2687 | F 1 "LED_Small_ALT" V 9945 1898 50 0001 L CNN 2688 | F 2 "LEDs:LED_0603" V 9900 1800 50 0001 C CNN 2689 | F 3 "~" V 9900 1800 50 0001 C CNN 2690 | 1 9900 1800 2691 | 0 1 1 0 2692 | $EndComp 2693 | $Comp 2694 | L device:LED_Small_ALT D137 2695 | U 1 1 5EF18906 2696 | P 9900 2050 2697 | AR Path="/5EC90811/5EF18906" Ref="D137" Part="1" 2698 | AR Path="/5F64D6C7/5EF18906" Ref="D281" Part="1" 2699 | F 0 "D137" H 9850 1950 50 0000 L CNN 2700 | F 1 "LED_Small_ALT" V 9945 2148 50 0001 L CNN 2701 | F 2 "LEDs:LED_0603" V 9900 2050 50 0001 C CNN 2702 | F 3 "~" V 9900 2050 50 0001 C CNN 2703 | 1 9900 2050 2704 | 0 1 1 0 2705 | $EndComp 2706 | $Comp 2707 | L device:LED_Small_ALT D138 2708 | U 1 1 5EF18910 2709 | P 9900 2300 2710 | AR Path="/5EC90811/5EF18910" Ref="D138" Part="1" 2711 | AR Path="/5F64D6C7/5EF18910" Ref="D282" Part="1" 2712 | F 0 "D138" H 9850 2200 50 0000 L CNN 2713 | F 1 "LED_Small_ALT" V 9945 2398 50 0001 L CNN 2714 | F 2 "LEDs:LED_0603" V 9900 2300 50 0001 C CNN 2715 | F 3 "~" V 9900 2300 50 0001 C CNN 2716 | 1 9900 2300 2717 | 0 1 1 0 2718 | $EndComp 2719 | $Comp 2720 | L device:LED_Small_ALT D139 2721 | U 1 1 5EF1891A 2722 | P 9900 2550 2723 | AR Path="/5EC90811/5EF1891A" Ref="D139" Part="1" 2724 | AR Path="/5F64D6C7/5EF1891A" Ref="D283" Part="1" 2725 | F 0 "D139" H 9850 2450 50 0000 L CNN 2726 | F 1 "LED_Small_ALT" V 9945 2648 50 0001 L CNN 2727 | F 2 "LEDs:LED_0603" V 9900 2550 50 0001 C CNN 2728 | F 3 "~" V 9900 2550 50 0001 C CNN 2729 | 1 9900 2550 2730 | 0 1 1 0 2731 | $EndComp 2732 | $Comp 2733 | L device:LED_Small_ALT D140 2734 | U 1 1 5EF18924 2735 | P 9900 2800 2736 | AR Path="/5EC90811/5EF18924" Ref="D140" Part="1" 2737 | AR Path="/5F64D6C7/5EF18924" Ref="D284" Part="1" 2738 | F 0 "D140" H 9850 2700 50 0000 L CNN 2739 | F 1 "LED_Small_ALT" V 9945 2898 50 0001 L CNN 2740 | F 2 "LEDs:LED_0603" V 9900 2800 50 0001 C CNN 2741 | F 3 "~" V 9900 2800 50 0001 C CNN 2742 | 1 9900 2800 2743 | 0 1 1 0 2744 | $EndComp 2745 | $Comp 2746 | L device:LED_Small_ALT D141 2747 | U 1 1 5EF1892E 2748 | P 9900 3050 2749 | AR Path="/5EC90811/5EF1892E" Ref="D141" Part="1" 2750 | AR Path="/5F64D6C7/5EF1892E" Ref="D285" Part="1" 2751 | F 0 "D141" H 9850 2950 50 0000 L CNN 2752 | F 1 "LED_Small_ALT" V 9945 3148 50 0001 L CNN 2753 | F 2 "LEDs:LED_0603" V 9900 3050 50 0001 C CNN 2754 | F 3 "~" V 9900 3050 50 0001 C CNN 2755 | 1 9900 3050 2756 | 0 1 1 0 2757 | $EndComp 2758 | $Comp 2759 | L device:LED_Small_ALT D142 2760 | U 1 1 5EF18938 2761 | P 9900 3300 2762 | AR Path="/5EC90811/5EF18938" Ref="D142" Part="1" 2763 | AR Path="/5F64D6C7/5EF18938" Ref="D286" Part="1" 2764 | F 0 "D142" H 9850 3200 50 0000 L CNN 2765 | F 1 "LED_Small_ALT" V 9945 3398 50 0001 L CNN 2766 | F 2 "LEDs:LED_0603" V 9900 3300 50 0001 C CNN 2767 | F 3 "~" V 9900 3300 50 0001 C CNN 2768 | 1 9900 3300 2769 | 0 1 1 0 2770 | $EndComp 2771 | $Comp 2772 | L device:LED_Small_ALT D143 2773 | U 1 1 5EF18942 2774 | P 9900 3550 2775 | AR Path="/5EC90811/5EF18942" Ref="D143" Part="1" 2776 | AR Path="/5F64D6C7/5EF18942" Ref="D287" Part="1" 2777 | F 0 "D143" H 9850 3450 50 0000 L CNN 2778 | F 1 "LED_Small_ALT" V 9945 3648 50 0001 L CNN 2779 | F 2 "LEDs:LED_0603" V 9900 3550 50 0001 C CNN 2780 | F 3 "~" V 9900 3550 50 0001 C CNN 2781 | 1 9900 3550 2782 | 0 1 1 0 2783 | $EndComp 2784 | $Comp 2785 | L device:LED_Small_ALT D144 2786 | U 1 1 5EF1894C 2787 | P 9900 3800 2788 | AR Path="/5EC90811/5EF1894C" Ref="D144" Part="1" 2789 | AR Path="/5F64D6C7/5EF1894C" Ref="D288" Part="1" 2790 | F 0 "D144" H 9850 3700 50 0000 L CNN 2791 | F 1 "LED_Small_ALT" V 9945 3898 50 0001 L CNN 2792 | F 2 "LEDs:LED_0603" V 9900 3800 50 0001 C CNN 2793 | F 3 "~" V 9900 3800 50 0001 C CNN 2794 | 1 9900 3800 2795 | 0 1 1 0 2796 | $EndComp 2797 | Wire Wire Line 2798 | 9900 3900 9750 3900 2799 | Wire Wire Line 2800 | 9750 1900 9600 1900 2801 | Connection ~ 8700 1700 2802 | Wire Wire Line 2803 | 7500 1950 7800 1950 2804 | Connection ~ 7800 1950 2805 | Wire Wire Line 2806 | 7800 1950 7950 1950 2807 | Connection ~ 8100 1950 2808 | Wire Wire Line 2809 | 8100 1950 8400 1950 2810 | Connection ~ 8400 1950 2811 | Wire Wire Line 2812 | 8400 1950 8700 1950 2813 | Connection ~ 8700 1950 2814 | Wire Wire Line 2815 | 8700 1950 9000 1950 2816 | Connection ~ 9000 1950 2817 | Wire Wire Line 2818 | 9000 1950 9300 1950 2819 | Connection ~ 9300 1950 2820 | Wire Wire Line 2821 | 9300 1950 9600 1950 2822 | Connection ~ 9600 1950 2823 | Wire Wire Line 2824 | 9600 1950 9900 1950 2825 | Wire Wire Line 2826 | 7500 2200 7800 2200 2827 | Connection ~ 7800 2200 2828 | Wire Wire Line 2829 | 7800 2200 8100 2200 2830 | Connection ~ 8100 2200 2831 | Wire Wire Line 2832 | 8100 2200 8250 2200 2833 | Connection ~ 8400 2200 2834 | Wire Wire Line 2835 | 8400 2200 8700 2200 2836 | Connection ~ 8700 2200 2837 | Wire Wire Line 2838 | 8700 2200 9000 2200 2839 | Connection ~ 9000 2200 2840 | Wire Wire Line 2841 | 9000 2200 9300 2200 2842 | Connection ~ 9300 2200 2843 | Wire Wire Line 2844 | 9300 2200 9600 2200 2845 | Connection ~ 9600 2200 2846 | Wire Wire Line 2847 | 9600 2200 9900 2200 2848 | Wire Wire Line 2849 | 7500 2450 7800 2450 2850 | Connection ~ 7800 2450 2851 | Wire Wire Line 2852 | 7800 2450 8100 2450 2853 | Connection ~ 8100 2450 2854 | Wire Wire Line 2855 | 8100 2450 8400 2450 2856 | Connection ~ 8400 2450 2857 | Wire Wire Line 2858 | 8400 2450 8550 2450 2859 | Connection ~ 8700 2450 2860 | Wire Wire Line 2861 | 8700 2450 9000 2450 2862 | Connection ~ 9000 2450 2863 | Wire Wire Line 2864 | 9000 2450 9300 2450 2865 | Connection ~ 9300 2450 2866 | Wire Wire Line 2867 | 9300 2450 9600 2450 2868 | Connection ~ 9600 2450 2869 | Wire Wire Line 2870 | 9600 2450 9900 2450 2871 | Wire Wire Line 2872 | 7500 2700 7800 2700 2873 | Connection ~ 7800 2700 2874 | Wire Wire Line 2875 | 7800 2700 8100 2700 2876 | Connection ~ 8100 2700 2877 | Wire Wire Line 2878 | 8100 2700 8400 2700 2879 | Connection ~ 8400 2700 2880 | Wire Wire Line 2881 | 8400 2700 8700 2700 2882 | Connection ~ 8700 2700 2883 | Wire Wire Line 2884 | 8700 2700 8850 2700 2885 | Connection ~ 9000 2700 2886 | Wire Wire Line 2887 | 9000 2700 9300 2700 2888 | Connection ~ 9300 2700 2889 | Wire Wire Line 2890 | 9300 2700 9600 2700 2891 | Connection ~ 9600 2700 2892 | Wire Wire Line 2893 | 9600 2700 9900 2700 2894 | Wire Wire Line 2895 | 7500 2950 7800 2950 2896 | Connection ~ 7800 2950 2897 | Wire Wire Line 2898 | 7800 2950 8100 2950 2899 | Connection ~ 8100 2950 2900 | Wire Wire Line 2901 | 8100 2950 8400 2950 2902 | Connection ~ 8400 2950 2903 | Wire Wire Line 2904 | 8400 2950 8700 2950 2905 | Connection ~ 8700 2950 2906 | Wire Wire Line 2907 | 8700 2950 9000 2950 2908 | Connection ~ 9000 2950 2909 | Wire Wire Line 2910 | 9000 2950 9150 2950 2911 | Connection ~ 9300 2950 2912 | Wire Wire Line 2913 | 9300 2950 9600 2950 2914 | Connection ~ 9600 2950 2915 | Wire Wire Line 2916 | 9600 2950 9900 2950 2917 | Wire Wire Line 2918 | 7500 3200 7800 3200 2919 | Connection ~ 7800 3200 2920 | Wire Wire Line 2921 | 7800 3200 8100 3200 2922 | Connection ~ 8100 3200 2923 | Wire Wire Line 2924 | 8100 3200 8400 3200 2925 | Connection ~ 8400 3200 2926 | Wire Wire Line 2927 | 8400 3200 8700 3200 2928 | Connection ~ 8700 3200 2929 | Wire Wire Line 2930 | 8700 3200 9000 3200 2931 | Connection ~ 9000 3200 2932 | Wire Wire Line 2933 | 9000 3200 9300 3200 2934 | Connection ~ 9300 3200 2935 | Wire Wire Line 2936 | 9300 3200 9450 3200 2937 | Connection ~ 9600 3200 2938 | Wire Wire Line 2939 | 9600 3200 9900 3200 2940 | Wire Wire Line 2941 | 7500 3450 7800 3450 2942 | Connection ~ 7800 3450 2943 | Wire Wire Line 2944 | 7800 3450 8100 3450 2945 | Connection ~ 8100 3450 2946 | Wire Wire Line 2947 | 8100 3450 8400 3450 2948 | Connection ~ 8400 3450 2949 | Wire Wire Line 2950 | 8400 3450 8700 3450 2951 | Connection ~ 8700 3450 2952 | Wire Wire Line 2953 | 8700 3450 9000 3450 2954 | Connection ~ 9000 3450 2955 | Wire Wire Line 2956 | 9000 3450 9300 3450 2957 | Connection ~ 9300 3450 2958 | Wire Wire Line 2959 | 9300 3450 9600 3450 2960 | Connection ~ 9600 3450 2961 | Wire Wire Line 2962 | 9600 3450 9750 3450 2963 | Wire Wire Line 2964 | 7500 3700 7800 3700 2965 | Connection ~ 7800 3700 2966 | Wire Wire Line 2967 | 7800 3700 8100 3700 2968 | Connection ~ 8100 3700 2969 | Wire Wire Line 2970 | 8100 3700 8400 3700 2971 | Connection ~ 8400 3700 2972 | Wire Wire Line 2973 | 8400 3700 8700 3700 2974 | Connection ~ 8700 3700 2975 | Wire Wire Line 2976 | 8700 3700 9000 3700 2977 | Connection ~ 9000 3700 2978 | Wire Wire Line 2979 | 9000 3700 9300 3700 2980 | Connection ~ 9300 3700 2981 | Wire Wire Line 2982 | 9300 3700 9600 3700 2983 | Connection ~ 9600 3700 2984 | Wire Wire Line 2985 | 9600 3700 9900 3700 2986 | Wire Wire Line 2987 | 7800 1700 8100 1700 2988 | Connection ~ 7800 1700 2989 | Wire Wire Line 2990 | 8100 1700 8400 1700 2991 | Connection ~ 8100 1700 2992 | Wire Wire Line 2993 | 8400 1700 8700 1700 2994 | Connection ~ 8400 1700 2995 | Wire Wire Line 2996 | 8700 1700 9000 1700 2997 | Wire Wire Line 2998 | 9000 1700 9300 1700 2999 | Connection ~ 9000 1700 3000 | Wire Wire Line 3001 | 9300 1700 9600 1700 3002 | Connection ~ 9300 1700 3003 | Wire Wire Line 3004 | 9600 1700 9900 1700 3005 | Connection ~ 9600 1700 3006 | Wire Wire Line 3007 | 8850 1900 8700 1900 3008 | Wire Wire Line 3009 | 9900 1900 10050 1900 3010 | Wire Wire Line 3011 | 10050 1900 10050 2150 3012 | Wire Wire Line 3013 | 10050 3700 9900 3700 3014 | Connection ~ 9900 3700 3015 | Wire Wire Line 3016 | 9900 3650 10050 3650 3017 | Connection ~ 10050 3650 3018 | Wire Wire Line 3019 | 10050 3650 10050 3700 3020 | Wire Wire Line 3021 | 9750 1900 9750 2150 3022 | Wire Wire Line 3023 | 9900 2150 10050 2150 3024 | Connection ~ 10050 2150 3025 | Wire Wire Line 3026 | 10050 2150 10050 2400 3027 | Wire Wire Line 3028 | 9900 2400 10050 2400 3029 | Connection ~ 10050 2400 3030 | Wire Wire Line 3031 | 10050 2400 10050 2650 3032 | Wire Wire Line 3033 | 9900 2650 10050 2650 3034 | Connection ~ 10050 2650 3035 | Wire Wire Line 3036 | 10050 2650 10050 2900 3037 | Wire Wire Line 3038 | 9900 2900 10050 2900 3039 | Connection ~ 10050 2900 3040 | Wire Wire Line 3041 | 10050 2900 10050 3150 3042 | Wire Wire Line 3043 | 9900 3150 10050 3150 3044 | Connection ~ 10050 3150 3045 | Wire Wire Line 3046 | 10050 3150 10050 3400 3047 | Wire Wire Line 3048 | 9900 3400 10050 3400 3049 | Connection ~ 10050 3400 3050 | Wire Wire Line 3051 | 10050 3400 10050 3650 3052 | Wire Wire Line 3053 | 7950 1900 7950 1950 3054 | Wire Wire Line 3055 | 8250 1900 8250 2150 3056 | Wire Wire Line 3057 | 8550 1900 8550 2150 3058 | Wire Wire Line 3059 | 8850 1900 8850 2150 3060 | Wire Wire Line 3061 | 9150 1900 9150 2150 3062 | Wire Wire Line 3063 | 9450 1900 9450 2150 3064 | Wire Wire Line 3065 | 9600 3400 9750 3400 3066 | Connection ~ 9750 3400 3067 | Wire Wire Line 3068 | 9750 3400 9750 3450 3069 | Wire Wire Line 3070 | 9300 3150 9450 3150 3071 | Connection ~ 9450 3150 3072 | Wire Wire Line 3073 | 9450 3150 9450 3200 3074 | Wire Wire Line 3075 | 9000 2900 9150 2900 3076 | Connection ~ 9150 2900 3077 | Wire Wire Line 3078 | 9150 2900 9150 2950 3079 | Wire Wire Line 3080 | 8700 2650 8850 2650 3081 | Connection ~ 8850 2650 3082 | Wire Wire Line 3083 | 8850 2650 8850 2700 3084 | Wire Wire Line 3085 | 8400 2400 8550 2400 3086 | Connection ~ 8550 2400 3087 | Wire Wire Line 3088 | 8550 2400 8550 2450 3089 | Wire Wire Line 3090 | 8100 2150 8250 2150 3091 | Connection ~ 8250 2150 3092 | Wire Wire Line 3093 | 8250 2150 8250 2200 3094 | Wire Wire Line 3095 | 8400 2150 8550 2150 3096 | Connection ~ 8550 2150 3097 | Wire Wire Line 3098 | 8550 2150 8550 2400 3099 | Wire Wire Line 3100 | 8700 2150 8850 2150 3101 | Connection ~ 8850 2150 3102 | Wire Wire Line 3103 | 8850 2150 8850 2400 3104 | Wire Wire Line 3105 | 9000 2150 9150 2150 3106 | Connection ~ 9150 2150 3107 | Wire Wire Line 3108 | 9150 2150 9150 2400 3109 | Wire Wire Line 3110 | 9300 2150 9450 2150 3111 | Connection ~ 9450 2150 3112 | Wire Wire Line 3113 | 9450 2150 9450 2400 3114 | Wire Wire Line 3115 | 9600 2150 9750 2150 3116 | Connection ~ 9750 2150 3117 | Wire Wire Line 3118 | 9750 2150 9750 2400 3119 | Wire Wire Line 3120 | 8700 2400 8850 2400 3121 | Connection ~ 8850 2400 3122 | Wire Wire Line 3123 | 8850 2400 8850 2650 3124 | Wire Wire Line 3125 | 9000 2400 9150 2400 3126 | Connection ~ 9150 2400 3127 | Wire Wire Line 3128 | 9150 2400 9150 2650 3129 | Wire Wire Line 3130 | 9300 2400 9450 2400 3131 | Connection ~ 9450 2400 3132 | Wire Wire Line 3133 | 9450 2400 9450 2650 3134 | Wire Wire Line 3135 | 9600 2400 9750 2400 3136 | Connection ~ 9750 2400 3137 | Wire Wire Line 3138 | 9750 2400 9750 2650 3139 | Wire Wire Line 3140 | 9000 2650 9150 2650 3141 | Connection ~ 9150 2650 3142 | Wire Wire Line 3143 | 9150 2650 9150 2900 3144 | Wire Wire Line 3145 | 9300 2650 9450 2650 3146 | Connection ~ 9450 2650 3147 | Wire Wire Line 3148 | 9450 2650 9450 2900 3149 | Wire Wire Line 3150 | 9600 2650 9750 2650 3151 | Connection ~ 9750 2650 3152 | Wire Wire Line 3153 | 9750 2650 9750 2900 3154 | Wire Wire Line 3155 | 9300 2900 9450 2900 3156 | Connection ~ 9450 2900 3157 | Wire Wire Line 3158 | 9450 2900 9450 3150 3159 | Wire Wire Line 3160 | 9600 2900 9750 2900 3161 | Connection ~ 9750 2900 3162 | Wire Wire Line 3163 | 9750 2900 9750 3150 3164 | Wire Wire Line 3165 | 9600 3150 9750 3150 3166 | Connection ~ 9750 3150 3167 | Wire Wire Line 3168 | 9750 3150 9750 3400 3169 | Connection ~ 7950 1950 3170 | Wire Wire Line 3171 | 7950 1950 8100 1950 3172 | Wire Wire Line 3173 | 7950 1950 7950 2400 3174 | Connection ~ 8250 2200 3175 | Wire Wire Line 3176 | 8250 2200 8400 2200 3177 | Wire Wire Line 3178 | 8250 2200 8250 2650 3179 | Connection ~ 8550 2450 3180 | Wire Wire Line 3181 | 8550 2450 8700 2450 3182 | Wire Wire Line 3183 | 8550 2450 8550 2900 3184 | Connection ~ 8850 2700 3185 | Wire Wire Line 3186 | 8850 2700 9000 2700 3187 | Wire Wire Line 3188 | 8850 2700 8850 3150 3189 | Connection ~ 9150 2950 3190 | Wire Wire Line 3191 | 9150 2950 9300 2950 3192 | Wire Wire Line 3193 | 9150 2950 9150 3400 3194 | Connection ~ 9450 3200 3195 | Wire Wire Line 3196 | 9450 3200 9600 3200 3197 | Wire Wire Line 3198 | 9450 3200 9450 3650 3199 | Connection ~ 9750 3450 3200 | Wire Wire Line 3201 | 9750 3450 9900 3450 3202 | Wire Wire Line 3203 | 9750 3450 9750 3900 3204 | Wire Wire Line 3205 | 3750 1900 3900 1900 3206 | Wire Wire Line 3207 | 3750 2000 3900 2000 3208 | Wire Wire Line 3209 | 3750 2100 3900 2100 3210 | Wire Wire Line 3211 | 3750 2200 3900 2200 3212 | Wire Wire Line 3213 | 3750 2300 3900 2300 3214 | Wire Wire Line 3215 | 3750 2400 3900 2400 3216 | Wire Wire Line 3217 | 3750 2500 3900 2500 3218 | Wire Wire Line 3219 | 3750 2600 3900 2600 3220 | Wire Wire Line 3221 | 3750 2700 3900 2700 3222 | Wire Wire Line 3223 | 3750 2900 3900 2900 3224 | Wire Wire Line 3225 | 3750 3000 3900 3000 3226 | Wire Wire Line 3227 | 3750 3100 3900 3100 3228 | Wire Wire Line 3229 | 3750 3200 3900 3200 3230 | Wire Wire Line 3231 | 3750 3300 3900 3300 3232 | Wire Wire Line 3233 | 3750 3400 3900 3400 3234 | Wire Wire Line 3235 | 3750 3500 3900 3500 3236 | Wire Wire Line 3237 | 3750 3600 3900 3600 3238 | Wire Wire Line 3239 | 3750 3700 3900 3700 3240 | Text Label 3900 1900 0 50 ~ 0 3241 | CA1 3242 | Text Label 3900 2000 0 50 ~ 0 3243 | CA2 3244 | Text Label 3900 2100 0 50 ~ 0 3245 | CA3 3246 | Text Label 3900 2200 0 50 ~ 0 3247 | CA4 3248 | Text Label 3900 2300 0 50 ~ 0 3249 | CA5 3250 | Text Label 3900 2400 0 50 ~ 0 3251 | CA6 3252 | Text Label 3900 2500 0 50 ~ 0 3253 | CA7 3254 | Text Label 3900 2600 0 50 ~ 0 3255 | CA8 3256 | Text Label 3900 2700 0 50 ~ 0 3257 | CA9 3258 | Text Label 4650 1700 2 50 ~ 0 3259 | CA1 3260 | Text Label 4650 1950 2 50 ~ 0 3261 | CA2 3262 | Text Label 4650 2200 2 50 ~ 0 3263 | CA3 3264 | Text Label 4650 2450 2 50 ~ 0 3265 | CA4 3266 | Text Label 4650 2700 2 50 ~ 0 3267 | CA5 3268 | Text Label 4650 2950 2 50 ~ 0 3269 | CA6 3270 | Text Label 4650 3200 2 50 ~ 0 3271 | CA7 3272 | Text Label 4650 3450 2 50 ~ 0 3273 | CA8 3274 | Text Label 4650 3700 2 50 ~ 0 3275 | CA9 3276 | Text Label 3900 2900 0 50 ~ 0 3277 | CB1 3278 | Text Label 3900 3000 0 50 ~ 0 3279 | CB2 3280 | Text Label 3900 3100 0 50 ~ 0 3281 | CB3 3282 | Text Label 3900 3200 0 50 ~ 0 3283 | CB4 3284 | Text Label 3900 3300 0 50 ~ 0 3285 | CB5 3286 | Text Label 3900 3400 0 50 ~ 0 3287 | CB6 3288 | Text Label 3900 3500 0 50 ~ 0 3289 | CB7 3290 | Text Label 3900 3600 0 50 ~ 0 3291 | CB8 3292 | Text Label 3900 3700 0 50 ~ 0 3293 | CB9 3294 | Text Label 7500 1700 2 50 ~ 0 3295 | CB1 3296 | Text Label 7500 1950 2 50 ~ 0 3297 | CB2 3298 | Text Label 7500 2200 2 50 ~ 0 3299 | CB3 3300 | Text Label 7500 2450 2 50 ~ 0 3301 | CB4 3302 | Text Label 7500 2700 2 50 ~ 0 3303 | CB5 3304 | Text Label 7500 2950 2 50 ~ 0 3305 | CB6 3306 | Text Label 7500 3200 2 50 ~ 0 3307 | CB7 3308 | Text Label 7500 3450 2 50 ~ 0 3309 | CB8 3310 | Text Label 7500 3700 2 50 ~ 0 3311 | CB9 3312 | NoConn ~ 2750 2600 3313 | $Comp 3314 | L power:VCC #PWR09 3315 | U 1 1 5ED7C8A4 3316 | P 3250 1700 3317 | AR Path="/5EC90811/5ED7C8A4" Ref="#PWR09" Part="1" 3318 | AR Path="/5F64D6C7/5ED7C8A4" Ref="#PWR017" Part="1" 3319 | F 0 "#PWR09" H 3250 1550 50 0001 C CNN 3320 | F 1 "VCC" H 3267 1873 50 0000 C CNN 3321 | F 2 "" H 3250 1700 50 0001 C CNN 3322 | F 3 "" H 3250 1700 50 0001 C CNN 3323 | 1 3250 1700 3324 | 1 0 0 -1 3325 | $EndComp 3326 | $Comp 3327 | L power:VCC #PWR05 3328 | U 1 1 5ED7D0DF 3329 | P 1950 1700 3330 | AR Path="/5EC90811/5ED7D0DF" Ref="#PWR05" Part="1" 3331 | AR Path="/5F64D6C7/5ED7D0DF" Ref="#PWR013" Part="1" 3332 | F 0 "#PWR05" H 1950 1550 50 0001 C CNN 3333 | F 1 "VCC" H 1967 1873 50 0000 C CNN 3334 | F 2 "" H 1950 1700 50 0001 C CNN 3335 | F 3 "" H 1950 1700 50 0001 C CNN 3336 | 1 1950 1700 3337 | 1 0 0 -1 3338 | $EndComp 3339 | $Comp 3340 | L power:VCC #PWR0102 3341 | U 1 1 5ED7D663 3342 | P 1550 1700 3343 | AR Path="/5EC90811/5ED7D663" Ref="#PWR0102" Part="1" 3344 | AR Path="/5F64D6C7/5ED7D663" Ref="#PWR011" Part="1" 3345 | F 0 "#PWR0102" H 1550 1550 50 0001 C CNN 3346 | F 1 "VCC" H 1567 1873 50 0000 C CNN 3347 | F 2 "" H 1550 1700 50 0001 C CNN 3348 | F 3 "" H 1550 1700 50 0001 C CNN 3349 | 1 1550 1700 3350 | 1 0 0 -1 3351 | $EndComp 3352 | $Comp 3353 | L device:C C12 3354 | U 1 1 5F0856E4 3355 | P 1550 4350 3356 | AR Path="/5EC90811/5F0856E4" Ref="C12" Part="1" 3357 | AR Path="/5F64D6C7/5F0856E4" Ref="C14" Part="1" 3358 | F 0 "C12" H 1665 4396 50 0000 L CNN 3359 | F 1 "10uF" H 1665 4305 50 0000 L CNN 3360 | F 2 "Capacitors_SMD:C_0603" H 1588 4200 50 0001 C CNN 3361 | F 3 "~" H 1550 4350 50 0001 C CNN 3362 | 1 1550 4350 3363 | 1 0 0 -1 3364 | $EndComp 3365 | $Comp 3366 | L power:GND #PWR057 3367 | U 1 1 5F0856EA 3368 | P 1550 4650 3369 | AR Path="/5EC90811/5F0856EA" Ref="#PWR057" Part="1" 3370 | AR Path="/5F64D6C7/5F0856EA" Ref="#PWR061" Part="1" 3371 | F 0 "#PWR057" H 1550 4400 50 0001 C CNN 3372 | F 1 "GND" H 1555 4477 50 0000 C CNN 3373 | F 2 "" H 1550 4650 50 0001 C CNN 3374 | F 3 "" H 1550 4650 50 0001 C CNN 3375 | 1 1550 4650 3376 | 1 0 0 -1 3377 | $EndComp 3378 | Wire Wire Line 3379 | 1550 4650 1550 4500 3380 | Wire Wire Line 3381 | 1550 4200 1550 4050 3382 | $Comp 3383 | L power:VCC #PWR051 3384 | U 1 1 5F0856F2 3385 | P 1550 4050 3386 | AR Path="/5EC90811/5F0856F2" Ref="#PWR051" Part="1" 3387 | AR Path="/5F64D6C7/5F0856F2" Ref="#PWR060" Part="1" 3388 | F 0 "#PWR051" H 1550 3900 50 0001 C CNN 3389 | F 1 "VCC" H 1567 4223 50 0000 C CNN 3390 | F 2 "" H 1550 4050 50 0001 C CNN 3391 | F 3 "" H 1550 4050 50 0001 C CNN 3392 | 1 1550 4050 3393 | 1 0 0 -1 3394 | $EndComp 3395 | $Comp 3396 | L device:C C13 3397 | U 1 1 5F0C0050 3398 | P 1950 4350 3399 | AR Path="/5EC90811/5F0C0050" Ref="C13" Part="1" 3400 | AR Path="/5F64D6C7/5F0C0050" Ref="C15" Part="1" 3401 | F 0 "C13" H 2065 4396 50 0000 L CNN 3402 | F 1 "10uF" H 2065 4305 50 0000 L CNN 3403 | F 2 "Capacitors_SMD:C_0603" H 1988 4200 50 0001 C CNN 3404 | F 3 "~" H 1950 4350 50 0001 C CNN 3405 | 1 1950 4350 3406 | 1 0 0 -1 3407 | $EndComp 3408 | $Comp 3409 | L power:GND #PWR059 3410 | U 1 1 5F0C0056 3411 | P 1950 4650 3412 | AR Path="/5EC90811/5F0C0056" Ref="#PWR059" Part="1" 3413 | AR Path="/5F64D6C7/5F0C0056" Ref="#PWR063" Part="1" 3414 | F 0 "#PWR059" H 1950 4400 50 0001 C CNN 3415 | F 1 "GND" H 1955 4477 50 0000 C CNN 3416 | F 2 "" H 1950 4650 50 0001 C CNN 3417 | F 3 "" H 1950 4650 50 0001 C CNN 3418 | 1 1950 4650 3419 | 1 0 0 -1 3420 | $EndComp 3421 | Wire Wire Line 3422 | 1950 4650 1950 4500 3423 | Wire Wire Line 3424 | 1950 4200 1950 4050 3425 | $Comp 3426 | L power:VCC #PWR058 3427 | U 1 1 5F0C005E 3428 | P 1950 4050 3429 | AR Path="/5EC90811/5F0C005E" Ref="#PWR058" Part="1" 3430 | AR Path="/5F64D6C7/5F0C005E" Ref="#PWR062" Part="1" 3431 | F 0 "#PWR058" H 1950 3900 50 0001 C CNN 3432 | F 1 "VCC" H 1967 4223 50 0000 C CNN 3433 | F 2 "" H 1950 4050 50 0001 C CNN 3434 | F 3 "" H 1950 4050 50 0001 C CNN 3435 | 1 1950 4050 3436 | 1 0 0 -1 3437 | $EndComp 3438 | $EndSCHEMATC 3439 | -------------------------------------------------------------------------------- /psu_2xAA_usb_3v3.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 4 7 7 | Title "Badge 3.3v power supply with 2x AA and USB, auto switch" 8 | Date "" 9 | Rev "" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L device:Q_NMOS_GSD Q1 18 | U 1 1 5EDE2043 19 | P 6450 2350 20 | F 0 "Q1" H 6655 2304 50 0000 L CNN 21 | F 1 "CJ2302" H 6655 2395 50 0000 L CNN 22 | F 2 "TO_SOT_Packages_SMD:SOT-23" H 6650 2450 50 0001 C CNN 23 | F 3 "~" H 6450 2350 50 0001 C CNN 24 | 1 6450 2350 25 | 1 0 0 1 26 | $EndComp 27 | $Comp 28 | L device:Q_PMOS_GSD Q2 29 | U 1 1 5EDE3340 30 | P 6450 3050 31 | F 0 "Q2" H 6655 3004 50 0000 L CNN 32 | F 1 "CJ2305" H 6655 3095 50 0000 L CNN 33 | F 2 "TO_SOT_Packages_SMD:SOT-23" H 6650 3150 50 0001 C CNN 34 | F 3 "~" H 6450 3050 50 0001 C CNN 35 | 1 6450 3050 36 | 1 0 0 1 37 | $EndComp 38 | $Comp 39 | L device:R R3 40 | U 1 1 5EDE5678 41 | P 6100 2700 42 | F 0 "R3" H 6170 2746 50 0000 L CNN 43 | F 1 "4.7k" H 6170 2655 50 0000 L CNN 44 | F 2 "Resistors_SMD:R_0603" V 6030 2700 50 0001 C CNN 45 | F 3 "~" H 6100 2700 50 0001 C CNN 46 | 1 6100 2700 47 | 1 0 0 -1 48 | $EndComp 49 | $Comp 50 | L device:R R4 51 | U 1 1 5EDE5C77 52 | P 6100 3350 53 | F 0 "R4" H 6170 3396 50 0000 L CNN 54 | F 1 "6.8k" H 6170 3305 50 0000 L CNN 55 | F 2 "Resistors_SMD:R_0603" V 6030 3350 50 0001 C CNN 56 | F 3 "~" H 6100 3350 50 0001 C CNN 57 | 1 6100 3350 58 | 1 0 0 -1 59 | $EndComp 60 | Wire Wire Line 61 | 6550 2550 6550 2700 62 | Wire Wire Line 63 | 6550 2700 7000 2700 64 | Connection ~ 6550 2700 65 | Wire Wire Line 66 | 6550 2700 6550 2850 67 | Wire Wire Line 68 | 6100 2850 6100 3050 69 | Wire Wire Line 70 | 6250 3050 6100 3050 71 | Connection ~ 6100 3050 72 | Wire Wire Line 73 | 6100 3050 6100 3200 74 | Wire Wire Line 75 | 6250 2350 6100 2350 76 | Wire Wire Line 77 | 6100 2550 6100 2350 78 | Connection ~ 6100 2350 79 | Wire Wire Line 80 | 6100 2350 5800 2350 81 | Wire Wire Line 82 | 6550 2150 6550 2050 83 | Wire Wire Line 84 | 6550 2050 5800 2050 85 | $Comp 86 | L power:GND #PWR023 87 | U 1 1 5EDE68C1 88 | P 6100 3600 89 | F 0 "#PWR023" H 6100 3350 50 0001 C CNN 90 | F 1 "GND" H 6105 3427 50 0000 C CNN 91 | F 2 "" H 6100 3600 50 0001 C CNN 92 | F 3 "" H 6100 3600 50 0001 C CNN 93 | 1 6100 3600 94 | 1 0 0 -1 95 | $EndComp 96 | Wire Wire Line 97 | 6100 3500 6100 3600 98 | Wire Wire Line 99 | 6550 3250 6550 3900 100 | Text Label 5800 2050 0 50 ~ 0 101 | VREG_OUT 102 | $Comp 103 | L power:VCC #PWR024 104 | U 1 1 5EDE8A64 105 | P 7000 2700 106 | F 0 "#PWR024" H 7000 2550 50 0001 C CNN 107 | F 1 "VCC" V 7017 2828 50 0000 L CNN 108 | F 2 "" H 7000 2700 50 0001 C CNN 109 | F 3 "" H 7000 2700 50 0001 C CNN 110 | 1 7000 2700 111 | 0 1 1 0 112 | $EndComp 113 | $Comp 114 | L device:Battery_Cell BT1 115 | U 1 1 5EDE96C5 116 | P 1900 4250 117 | F 0 "BT1" H 2018 4346 50 0000 L CNN 118 | F 1 "AA" H 2018 4255 50 0000 L CNN 119 | F 2 "Power:Single_AA" V 1900 4310 50 0001 C CNN 120 | F 3 "~" V 1900 4310 50 0001 C CNN 121 | 1 1900 4250 122 | 1 0 0 -1 123 | $EndComp 124 | $Comp 125 | L device:Battery_Cell BT2 126 | U 1 1 5EDEAD81 127 | P 1900 4800 128 | F 0 "BT2" H 2018 4896 50 0000 L CNN 129 | F 1 "AA" H 2018 4805 50 0000 L CNN 130 | F 2 "Power:Single_AA" V 1900 4860 50 0001 C CNN 131 | F 3 "~" V 1900 4860 50 0001 C CNN 132 | 1 1900 4800 133 | 1 0 0 -1 134 | $EndComp 135 | $Comp 136 | L power:GND #PWR021 137 | U 1 1 5EDEBA00 138 | P 1900 5150 139 | F 0 "#PWR021" H 1900 4900 50 0001 C CNN 140 | F 1 "GND" H 1905 4977 50 0000 C CNN 141 | F 2 "" H 1900 5150 50 0001 C CNN 142 | F 3 "" H 1900 5150 50 0001 C CNN 143 | 1 1900 5150 144 | 1 0 0 -1 145 | $EndComp 146 | Wire Wire Line 147 | 1900 5150 1900 4900 148 | Wire Wire Line 149 | 1900 4600 1900 4350 150 | Wire Wire Line 151 | 1900 4050 1900 3800 152 | Text Label 2150 3800 0 50 ~ 0 153 | BAT+ 154 | $Comp 155 | L Regulator_Linear:AP2204K-3.3 U3 156 | U 1 1 5EDF3EEB 157 | P 3200 2150 158 | F 0 "U3" H 3200 2492 50 0000 C CNN 159 | F 1 "HX9193-33GB" H 3200 2401 50 0000 C CNN 160 | F 2 "TO_SOT_Packages_SMD:SOT-23-5" H 3200 2475 50 0001 C CNN 161 | F 3 "https://datasheet.lcsc.com/szlcsc/1811131153_HX-hengjiaxing-HX9193-33GB_C296123.pdf" H 3200 2250 50 0001 C CNN 162 | 1 3200 2150 163 | 1 0 0 -1 164 | $EndComp 165 | $Comp 166 | L device:C C7 167 | U 1 1 5EDF540B 168 | P 2500 2300 169 | F 0 "C7" H 2615 2346 50 0000 L CNN 170 | F 1 "1uF" H 2615 2255 50 0000 L CNN 171 | F 2 "Capacitors_SMD:C_0603" H 2538 2150 50 0001 C CNN 172 | F 3 "~" H 2500 2300 50 0001 C CNN 173 | 1 2500 2300 174 | 1 0 0 -1 175 | $EndComp 176 | $Comp 177 | L device:C C8 178 | U 1 1 5EDF6608 179 | P 3650 2300 180 | F 0 "C8" H 3765 2346 50 0000 L CNN 181 | F 1 "1uF" H 3765 2255 50 0000 L CNN 182 | F 2 "Capacitors_SMD:C_0603" H 3688 2150 50 0001 C CNN 183 | F 3 "~" H 3650 2300 50 0001 C CNN 184 | 1 3650 2300 185 | 1 0 0 -1 186 | $EndComp 187 | $Comp 188 | L power:GND #PWR019 189 | U 1 1 5EDF74B8 190 | P 2500 2550 191 | F 0 "#PWR019" H 2500 2300 50 0001 C CNN 192 | F 1 "GND" H 2505 2377 50 0000 C CNN 193 | F 2 "" H 2500 2550 50 0001 C CNN 194 | F 3 "" H 2500 2550 50 0001 C CNN 195 | 1 2500 2550 196 | 1 0 0 -1 197 | $EndComp 198 | $Comp 199 | L power:GND #PWR020 200 | U 1 1 5EDF7875 201 | P 3200 2550 202 | F 0 "#PWR020" H 3200 2300 50 0001 C CNN 203 | F 1 "GND" H 3205 2377 50 0000 C CNN 204 | F 2 "" H 3200 2550 50 0001 C CNN 205 | F 3 "" H 3200 2550 50 0001 C CNN 206 | 1 3200 2550 207 | 1 0 0 -1 208 | $EndComp 209 | $Comp 210 | L power:GND #PWR022 211 | U 1 1 5EDF7B9A 212 | P 3650 2550 213 | F 0 "#PWR022" H 3650 2300 50 0001 C CNN 214 | F 1 "GND" H 3655 2377 50 0000 C CNN 215 | F 2 "" H 3650 2550 50 0001 C CNN 216 | F 3 "" H 3650 2550 50 0001 C CNN 217 | 1 3650 2550 218 | 1 0 0 -1 219 | $EndComp 220 | Wire Wire Line 221 | 2900 2050 2800 2050 222 | Wire Wire Line 223 | 2500 2150 2500 2050 224 | Connection ~ 2500 2050 225 | Wire Wire Line 226 | 2500 2050 2150 2050 227 | Wire Wire Line 228 | 2900 2150 2800 2150 229 | Wire Wire Line 230 | 2800 2150 2800 2050 231 | Connection ~ 2800 2050 232 | Wire Wire Line 233 | 2800 2050 2500 2050 234 | Wire Wire Line 235 | 3200 2450 3200 2550 236 | Wire Wire Line 237 | 2500 2450 2500 2550 238 | Wire Wire Line 239 | 3650 2450 3650 2550 240 | Wire Wire Line 241 | 3500 2050 3650 2050 242 | Wire Wire Line 243 | 3650 2150 3650 2050 244 | Connection ~ 3650 2050 245 | Wire Wire Line 246 | 3650 2050 3850 2050 247 | Text HLabel 2150 2050 0 50 Input ~ 0 248 | USB_BUS_POWER 249 | Text HLabel 5800 2350 0 50 Input ~ 0 250 | USB_BUS_POWER 251 | Text Label 3850 2050 0 50 ~ 0 252 | VREG_OUT 253 | $Comp 254 | L Semiconductors:QX2304 U5 255 | U 1 1 5F10936F 256 | P 4600 4050 257 | F 0 "U5" H 4600 4465 50 0000 C CNN 258 | F 1 "QX2304" H 4600 4374 50 0000 C CNN 259 | F 2 "TO_SOT_Packages_SMD:SOT-23" H 4600 4050 50 0001 C CNN 260 | F 3 "" H 4600 4050 50 0001 C CNN 261 | 1 4600 4050 262 | 1 0 0 -1 263 | $EndComp 264 | Wire Wire Line 265 | 4950 3900 5350 3900 266 | $Comp 267 | L device:L L1 268 | U 1 1 5F10A576 269 | P 3900 3900 270 | F 0 "L1" V 4090 3900 50 0000 C CNN 271 | F 1 "47uH" V 3999 3900 50 0000 C CNN 272 | F 2 "Inductors_SMD:L_1210" H 3900 3900 50 0001 C CNN 273 | F 3 "~" H 3900 3900 50 0001 C CNN 274 | 1 3900 3900 275 | 0 -1 -1 0 276 | $EndComp 277 | $Comp 278 | L device:C C16 279 | U 1 1 5F10C4B2 280 | P 3500 4150 281 | F 0 "C16" H 3615 4196 50 0000 L CNN 282 | F 1 "100uF" H 3615 4105 50 0000 L CNN 283 | F 2 "Capacitors_SMD:C_1206" H 3538 4000 50 0001 C CNN 284 | F 3 "~" H 3500 4150 50 0001 C CNN 285 | 1 3500 4150 286 | 1 0 0 -1 287 | $EndComp 288 | Wire Wire Line 289 | 5350 4000 5350 3900 290 | Connection ~ 5350 3900 291 | Wire Wire Line 292 | 5350 3900 6550 3900 293 | Wire Wire Line 294 | 4250 3900 4050 3900 295 | Wire Wire Line 296 | 3750 3900 3500 3900 297 | Wire Wire Line 298 | 3500 3900 3500 4000 299 | $Comp 300 | L power:GND #PWR064 301 | U 1 1 5F110684 302 | P 3500 4450 303 | F 0 "#PWR064" H 3500 4200 50 0001 C CNN 304 | F 1 "GND" H 3505 4277 50 0000 C CNN 305 | F 2 "" H 3500 4450 50 0001 C CNN 306 | F 3 "" H 3500 4450 50 0001 C CNN 307 | 1 3500 4450 308 | 1 0 0 -1 309 | $EndComp 310 | $Comp 311 | L power:GND #PWR065 312 | U 1 1 5F110C0D 313 | P 4150 4450 314 | F 0 "#PWR065" H 4150 4200 50 0001 C CNN 315 | F 1 "GND" H 4155 4277 50 0000 C CNN 316 | F 2 "" H 4150 4450 50 0001 C CNN 317 | F 3 "" H 4150 4450 50 0001 C CNN 318 | 1 4150 4450 319 | 1 0 0 -1 320 | $EndComp 321 | $Comp 322 | L power:GND #PWR066 323 | U 1 1 5F11130C 324 | P 5350 4450 325 | F 0 "#PWR066" H 5350 4200 50 0001 C CNN 326 | F 1 "GND" H 5355 4277 50 0000 C CNN 327 | F 2 "" H 5350 4450 50 0001 C CNN 328 | F 3 "" H 5350 4450 50 0001 C CNN 329 | 1 5350 4450 330 | 1 0 0 -1 331 | $EndComp 332 | Wire Wire Line 333 | 5350 4300 5350 4450 334 | Wire Wire Line 335 | 4250 4200 4150 4200 336 | Wire Wire Line 337 | 4150 4200 4150 4450 338 | Wire Wire Line 339 | 3500 4300 3500 4450 340 | $Comp 341 | L device:C C17 342 | U 1 1 5F1144DD 343 | P 5350 4150 344 | F 0 "C17" H 5465 4196 50 0000 L CNN 345 | F 1 "100uF" H 5465 4105 50 0000 L CNN 346 | F 2 "Capacitors_SMD:C_1206" H 5388 4000 50 0001 C CNN 347 | F 3 "~" H 5350 4150 50 0001 C CNN 348 | 1 5350 4150 349 | 1 0 0 -1 350 | $EndComp 351 | $Comp 352 | L Switch:SW_SPDT SW6 353 | U 1 1 5F11FDFF 354 | P 3050 3800 355 | F 0 "SW6" H 3050 4085 50 0000 C CNN 356 | F 1 "POWER" H 3050 3994 50 0000 C CNN 357 | F 2 "Buttons_Switches_SMD:SW_SPDT_PCM12" H 3050 3800 50 0001 C CNN 358 | F 3 "~" H 3050 3800 50 0001 C CNN 359 | 1 3050 3800 360 | 1 0 0 -1 361 | $EndComp 362 | Wire Wire Line 363 | 3250 3900 3500 3900 364 | Connection ~ 3500 3900 365 | Wire Wire Line 366 | 1900 3800 2850 3800 367 | $EndSCHEMATC 368 | -------------------------------------------------------------------------------- /samd21.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 5 7 7 | Title "SAMD21 controller, flash, usb and programming" 8 | Date "" 9 | Rev "1.0" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L samd21g18:SAMD21G18A IC1 18 | U 1 1 5ED0E174 19 | P 5650 3050 20 | F 0 "IC1" H 5700 5019 100 0000 C CNN 21 | F 1 "SAMD21G18A" H 5700 4853 100 0000 C CNN 22 | F 2 "Housings_DFN_QFN:QFN-48-1EP_7x7mm_Pitch0.5mm" H 5700 4725 50 0000 C CNN 23 | F 3 "" H 5650 3050 50 0001 C CNN 24 | F 4 "SAMD21G18A-MU" H 5650 3050 50 0001 C CNN "VALUE" 25 | 1 5650 3050 26 | 1 0 0 -1 27 | $EndComp 28 | $Comp 29 | L Switch:SW_SPST SW1 30 | U 1 1 5ED13CE9 31 | P 9250 2550 32 | F 0 "SW1" H 9250 2785 50 0000 C CNN 33 | F 1 "RESET" H 9250 2694 50 0000 C CNN 34 | F 2 "Buttons_Switches_SMD:SW_SPST_TL3342" H 9250 2550 50 0001 C CNN 35 | F 3 "~" H 9250 2550 50 0001 C CNN 36 | 1 9250 2550 37 | 1 0 0 -1 38 | $EndComp 39 | $Comp 40 | L Connector:USB_C_Receptacle_USB2.0 J1 41 | U 1 1 5ED1AF5E 42 | P 1500 2000 43 | F 0 "J1" H 1607 2867 50 0000 C CNN 44 | F 1 "USB_C" H 1607 2776 50 0000 C CNN 45 | F 2 "Connectors:USB_C_Receptacle_U262-161N-4BVC11" H 1650 2000 50 0001 C CNN 46 | F 3 "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" H 1650 2000 50 0001 C CNN 47 | 1 1500 2000 48 | 1 0 0 -1 49 | $EndComp 50 | Text Label 2100 1400 0 50 ~ 0 51 | USB_VBUS 52 | Wire Wire Line 53 | 2100 1900 2250 1900 54 | Wire Wire Line 55 | 2250 1900 2250 1950 56 | Wire Wire Line 57 | 2250 2000 2100 2000 58 | Wire Wire Line 59 | 2100 2100 2250 2100 60 | Wire Wire Line 61 | 2250 2100 2250 2150 62 | Wire Wire Line 63 | 2250 2200 2100 2200 64 | Wire Wire Line 65 | 2250 1950 2400 1950 66 | Connection ~ 2250 1950 67 | Wire Wire Line 68 | 2250 1950 2250 2000 69 | Wire Wire Line 70 | 2250 2150 2400 2150 71 | Connection ~ 2250 2150 72 | Wire Wire Line 73 | 2250 2150 2250 2200 74 | $Comp 75 | L power:GND #PWR027 76 | U 1 1 5ED22188 77 | P 1200 3000 78 | F 0 "#PWR027" H 1200 2750 50 0001 C CNN 79 | F 1 "GND" H 1205 2827 50 0000 C CNN 80 | F 2 "" H 1200 3000 50 0001 C CNN 81 | F 3 "" H 1200 3000 50 0001 C CNN 82 | 1 1200 3000 83 | 1 0 0 -1 84 | $EndComp 85 | $Comp 86 | L power:VCC #PWR039 87 | U 1 1 5ED229ED 88 | P 3950 2250 89 | F 0 "#PWR039" H 3950 2100 50 0001 C CNN 90 | F 1 "VCC" V 3968 2377 50 0000 L CNN 91 | F 2 "" H 3950 2250 50 0001 C CNN 92 | F 3 "" H 3950 2250 50 0001 C CNN 93 | 1 3950 2250 94 | 0 -1 -1 0 95 | $EndComp 96 | $Comp 97 | L device:R R5 98 | U 1 1 5ED24501 99 | P 2400 1600 100 | F 0 "R5" V 2350 1750 50 0000 C CNN 101 | F 1 "5.1k" V 2400 1600 50 0000 C CNN 102 | F 2 "Resistors_SMD:R_0603" V 2330 1600 50 0001 C CNN 103 | F 3 "~" H 2400 1600 50 0001 C CNN 104 | 1 2400 1600 105 | 0 1 1 0 106 | $EndComp 107 | $Comp 108 | L device:C C9 109 | U 1 1 5ED2537D 110 | P 1150 4150 111 | F 0 "C9" H 1265 4196 50 0000 L CNN 112 | F 1 "100nF" H 1265 4105 50 0000 L CNN 113 | F 2 "Capacitors_SMD:C_0603" H 1188 4000 50 0001 C CNN 114 | F 3 "~" H 1150 4150 50 0001 C CNN 115 | 1 1150 4150 116 | 1 0 0 -1 117 | $EndComp 118 | $Comp 119 | L power:GND #PWR028 120 | U 1 1 5ED25E73 121 | P 1500 3000 122 | F 0 "#PWR028" H 1500 2750 50 0001 C CNN 123 | F 1 "GND" H 1505 2827 50 0000 C CNN 124 | F 2 "" H 1500 3000 50 0001 C CNN 125 | F 3 "" H 1500 3000 50 0001 C CNN 126 | 1 1500 3000 127 | 1 0 0 -1 128 | $EndComp 129 | $Comp 130 | L power:GND #PWR035 131 | U 1 1 5ED26264 132 | P 2700 1600 133 | F 0 "#PWR035" H 2700 1350 50 0001 C CNN 134 | F 1 "GND" V 2705 1472 50 0000 R CNN 135 | F 2 "" H 2700 1600 50 0001 C CNN 136 | F 3 "" H 2700 1600 50 0001 C CNN 137 | 1 2700 1600 138 | 0 -1 -1 0 139 | $EndComp 140 | $Comp 141 | L power:GND #PWR036 142 | U 1 1 5ED26A80 143 | P 2700 1700 144 | F 0 "#PWR036" H 2700 1450 50 0001 C CNN 145 | F 1 "GND" V 2705 1572 50 0000 R CNN 146 | F 2 "" H 2700 1700 50 0001 C CNN 147 | F 3 "" H 2700 1700 50 0001 C CNN 148 | 1 2700 1700 149 | 0 -1 -1 0 150 | $EndComp 151 | $Comp 152 | L device:R R6 153 | U 1 1 5ED26D4E 154 | P 2400 1700 155 | F 0 "R6" V 2350 1850 50 0000 C CNN 156 | F 1 "5.1k" V 2400 1700 50 0000 C CNN 157 | F 2 "Resistors_SMD:R_0603" V 2330 1700 50 0001 C CNN 158 | F 3 "~" H 2400 1700 50 0001 C CNN 159 | 1 2400 1700 160 | 0 1 1 0 161 | $EndComp 162 | Wire Wire Line 163 | 1200 2900 1200 3000 164 | Wire Wire Line 165 | 1500 2900 1500 3000 166 | Wire Wire Line 167 | 2100 1600 2250 1600 168 | Wire Wire Line 169 | 2100 1700 2250 1700 170 | Wire Wire Line 171 | 2550 1600 2700 1600 172 | Wire Wire Line 173 | 2700 1700 2550 1700 174 | $Comp 175 | L power:GND #PWR049 176 | U 1 1 5ED28914 177 | P 9600 2550 178 | F 0 "#PWR049" H 9600 2300 50 0001 C CNN 179 | F 1 "GND" V 9605 2422 50 0000 R CNN 180 | F 2 "" H 9600 2550 50 0001 C CNN 181 | F 3 "" H 9600 2550 50 0001 C CNN 182 | 1 9600 2550 183 | 0 -1 -1 0 184 | $EndComp 185 | Wire Wire Line 186 | 9450 2550 9600 2550 187 | $Comp 188 | L power:VCC #PWR025 189 | U 1 1 5ED29951 190 | P 1150 3900 191 | F 0 "#PWR025" H 1150 3750 50 0001 C CNN 192 | F 1 "VCC" H 1167 4073 50 0000 C CNN 193 | F 2 "" H 1150 3900 50 0001 C CNN 194 | F 3 "" H 1150 3900 50 0001 C CNN 195 | 1 1150 3900 196 | 1 0 0 -1 197 | $EndComp 198 | $Comp 199 | L power:GND #PWR026 200 | U 1 1 5ED29F21 201 | P 1150 4400 202 | F 0 "#PWR026" H 1150 4150 50 0001 C CNN 203 | F 1 "GND" H 1155 4227 50 0000 C CNN 204 | F 2 "" H 1150 4400 50 0001 C CNN 205 | F 3 "" H 1150 4400 50 0001 C CNN 206 | 1 1150 4400 207 | 1 0 0 -1 208 | $EndComp 209 | Wire Wire Line 210 | 1150 3900 1150 4000 211 | Wire Wire Line 212 | 1150 4300 1150 4400 213 | Text Label 2400 1950 0 50 ~ 0 214 | USB_D- 215 | Text Label 2400 2150 0 50 ~ 0 216 | USB_D+ 217 | Text Label 7450 3350 0 50 ~ 0 218 | USB_D+ 219 | Text Label 7450 3450 0 50 ~ 0 220 | USB_D- 221 | $Comp 222 | L power:GND #PWR037 223 | U 1 1 5ED2D305 224 | P 3000 3650 225 | F 0 "#PWR037" H 3000 3400 50 0001 C CNN 226 | F 1 "GND" H 3005 3477 50 0000 C CNN 227 | F 2 "" H 3000 3650 50 0001 C CNN 228 | F 3 "" H 3000 3650 50 0001 C CNN 229 | 1 3000 3650 230 | 1 0 0 -1 231 | $EndComp 232 | $Comp 233 | L device:R R7 234 | U 1 1 5ED2D927 235 | P 3000 2900 236 | F 0 "R7" H 2900 2900 50 0000 C CNN 237 | F 1 "1k" V 3000 2900 50 0000 C CNN 238 | F 2 "Resistors_SMD:R_0603" V 2930 2900 50 0001 C CNN 239 | F 3 "~" H 3000 2900 50 0001 C CNN 240 | 1 3000 2900 241 | -1 0 0 1 242 | $EndComp 243 | Wire Wire Line 244 | 3000 2350 3000 2750 245 | Wire Wire Line 246 | 3000 3050 3000 3200 247 | Wire Wire Line 248 | 3000 3500 3000 3650 249 | $Comp 250 | L device:C C10 251 | U 1 1 5ED320B8 252 | P 1700 4150 253 | F 0 "C10" H 1815 4196 50 0000 L CNN 254 | F 1 "10uF" H 1815 4105 50 0000 L CNN 255 | F 2 "Capacitors_SMD:C_0603" H 1738 4000 50 0001 C CNN 256 | F 3 "~" H 1700 4150 50 0001 C CNN 257 | 1 1700 4150 258 | 1 0 0 -1 259 | $EndComp 260 | $Comp 261 | L power:VCC #PWR031 262 | U 1 1 5ED320C2 263 | P 1700 3900 264 | F 0 "#PWR031" H 1700 3750 50 0001 C CNN 265 | F 1 "VCC" H 1717 4073 50 0000 C CNN 266 | F 2 "" H 1700 3900 50 0001 C CNN 267 | F 3 "" H 1700 3900 50 0001 C CNN 268 | 1 1700 3900 269 | 1 0 0 -1 270 | $EndComp 271 | $Comp 272 | L power:GND #PWR032 273 | U 1 1 5ED320CC 274 | P 1700 4400 275 | F 0 "#PWR032" H 1700 4150 50 0001 C CNN 276 | F 1 "GND" H 1705 4227 50 0000 C CNN 277 | F 2 "" H 1700 4400 50 0001 C CNN 278 | F 3 "" H 1700 4400 50 0001 C CNN 279 | 1 1700 4400 280 | 1 0 0 -1 281 | $EndComp 282 | Wire Wire Line 283 | 1700 3900 1700 4000 284 | Wire Wire Line 285 | 1700 4300 1700 4400 286 | $Comp 287 | L device:C C11 288 | U 1 1 5ED337A2 289 | P 8000 2250 290 | F 0 "C11" V 8252 2250 50 0000 C CNN 291 | F 1 "1uF" V 8161 2250 50 0000 C CNN 292 | F 2 "Capacitors_SMD:C_0603" H 8038 2100 50 0001 C CNN 293 | F 3 "~" H 8000 2250 50 0001 C CNN 294 | 1 8000 2250 295 | 0 -1 -1 0 296 | $EndComp 297 | $Comp 298 | L power:GND #PWR048 299 | U 1 1 5ED337B6 300 | P 8250 2250 301 | F 0 "#PWR048" H 8250 2000 50 0001 C CNN 302 | F 1 "GND" H 8255 2077 50 0000 C CNN 303 | F 2 "" H 8250 2250 50 0001 C CNN 304 | F 3 "" H 8250 2250 50 0001 C CNN 305 | 1 8250 2250 306 | 0 -1 -1 0 307 | $EndComp 308 | Wire Wire Line 309 | 8150 2250 8250 2250 310 | Text Label 8250 2550 0 50 ~ 0 311 | ~RESET 312 | $Comp 313 | L power:VCC #PWR040 314 | U 1 1 5ED3914D 315 | P 3950 3550 316 | F 0 "#PWR040" H 3950 3400 50 0001 C CNN 317 | F 1 "VCC" V 3950 3700 50 0000 L CNN 318 | F 2 "" H 3950 3550 50 0001 C CNN 319 | F 3 "" H 3950 3550 50 0001 C CNN 320 | 1 3950 3550 321 | 0 -1 -1 0 322 | $EndComp 323 | $Comp 324 | L power:VCC #PWR046 325 | U 1 1 5ED39B2E 326 | P 7450 3150 327 | F 0 "#PWR046" H 7450 3000 50 0001 C CNN 328 | F 1 "VCC" V 7467 3278 50 0000 L CNN 329 | F 2 "" H 7450 3150 50 0001 C CNN 330 | F 3 "" H 7450 3150 50 0001 C CNN 331 | 1 7450 3150 332 | 0 1 1 0 333 | $EndComp 334 | $Comp 335 | L power:VCC #PWR044 336 | U 1 1 5ED3A666 337 | P 7450 2150 338 | F 0 "#PWR044" H 7450 2000 50 0001 C CNN 339 | F 1 "VCC" V 7467 2278 50 0000 L CNN 340 | F 2 "" H 7450 2150 50 0001 C CNN 341 | F 3 "" H 7450 2150 50 0001 C CNN 342 | 1 7450 2150 343 | 0 1 1 0 344 | $EndComp 345 | Wire Wire Line 346 | 7450 2250 7850 2250 347 | $Comp 348 | L power:GND #PWR038 349 | U 1 1 5ED3D873 350 | P 3950 2150 351 | F 0 "#PWR038" H 3950 1900 50 0001 C CNN 352 | F 1 "GND" V 3955 2022 50 0000 R CNN 353 | F 2 "" H 3950 2150 50 0001 C CNN 354 | F 3 "" H 3950 2150 50 0001 C CNN 355 | 1 3950 2150 356 | 0 1 1 0 357 | $EndComp 358 | $Comp 359 | L power:GND #PWR041 360 | U 1 1 5ED3E170 361 | P 3950 3650 362 | F 0 "#PWR041" H 3950 3400 50 0001 C CNN 363 | F 1 "GND" V 3950 3500 50 0000 R CNN 364 | F 2 "" H 3950 3650 50 0001 C CNN 365 | F 3 "" H 3950 3650 50 0001 C CNN 366 | 1 3950 3650 367 | 0 1 1 0 368 | $EndComp 369 | $Comp 370 | L power:GND #PWR047 371 | U 1 1 5ED3EACA 372 | P 7450 3250 373 | F 0 "#PWR047" H 7450 3000 50 0001 C CNN 374 | F 1 "GND" V 7455 3122 50 0000 R CNN 375 | F 2 "" H 7450 3250 50 0001 C CNN 376 | F 3 "" H 7450 3250 50 0001 C CNN 377 | 1 7450 3250 378 | 0 -1 -1 0 379 | $EndComp 380 | $Comp 381 | L power:GND #PWR045 382 | U 1 1 5ED3F69B 383 | P 7450 2350 384 | F 0 "#PWR045" H 7450 2100 50 0001 C CNN 385 | F 1 "GND" V 7455 2222 50 0000 R CNN 386 | F 2 "" H 7450 2350 50 0001 C CNN 387 | F 3 "" H 7450 2350 50 0001 C CNN 388 | 1 7450 2350 389 | 0 -1 -1 0 390 | $EndComp 391 | Text HLabel 2600 1400 2 50 Output ~ 0 392 | USB_BUS_POWER 393 | Wire Wire Line 394 | 2600 1400 2100 1400 395 | Text Label 7450 2050 0 50 ~ 0 396 | SWDCLK 397 | Text Label 7450 1950 0 50 ~ 0 398 | SWDIO 399 | $Comp 400 | L gd25q32c:GD25Q32C U4 401 | U 1 1 5ED865BB 402 | P 2000 5750 403 | F 0 "U4" H 2000 6265 50 0000 C CNN 404 | F 1 "GD25Q32C" H 2000 6174 50 0000 C CNN 405 | F 2 "Housings_SOIC:SOIC-8-1EP_3.9x4.9mm_Pitch1.27mm" H 2000 5250 50 0001 C CNN 406 | F 3 "" H 2000 5150 50 0001 C CNN 407 | 1 2000 5750 408 | 1 0 0 -1 409 | $EndComp 410 | $Comp 411 | L power:GND #PWR030 412 | U 1 1 5ED89CCA 413 | P 1550 6000 414 | F 0 "#PWR030" H 1550 5750 50 0001 C CNN 415 | F 1 "GND" V 1550 5800 50 0000 C CNN 416 | F 2 "" H 1550 6000 50 0001 C CNN 417 | F 3 "" H 1550 6000 50 0001 C CNN 418 | 1 1550 6000 419 | 0 1 1 0 420 | $EndComp 421 | $Comp 422 | L power:VCC #PWR029 423 | U 1 1 5ED8A451 424 | P 1550 5500 425 | F 0 "#PWR029" H 1550 5350 50 0001 C CNN 426 | F 1 "VCC" V 1550 5700 50 0000 C CNN 427 | F 2 "" H 1550 5500 50 0001 C CNN 428 | F 3 "" H 1550 5500 50 0001 C CNN 429 | 1 1550 5500 430 | 0 -1 -1 0 431 | $EndComp 432 | $Comp 433 | L power:VCC #PWR034 434 | U 1 1 5ED8AF3B 435 | P 2450 6000 436 | F 0 "#PWR034" H 2450 5850 50 0001 C CNN 437 | F 1 "VCC" V 2450 6200 50 0000 C CNN 438 | F 2 "" H 2450 6000 50 0001 C CNN 439 | F 3 "" H 2450 6000 50 0001 C CNN 440 | 1 2450 6000 441 | 0 1 1 0 442 | $EndComp 443 | $Comp 444 | L power:VCC #PWR033 445 | U 1 1 5ED8B81C 446 | P 2450 5900 447 | F 0 "#PWR033" H 2450 5750 50 0001 C CNN 448 | F 1 "VCC" V 2450 6100 50 0000 C CNN 449 | F 2 "" H 2450 5900 50 0001 C CNN 450 | F 3 "" H 2450 5900 50 0001 C CNN 451 | 1 2450 5900 452 | 0 1 1 0 453 | $EndComp 454 | Text Label 2450 5500 0 50 ~ 0 455 | FLASH_CS 456 | Text Label 2450 5600 0 50 ~ 0 457 | FLASH_SCK 458 | Text Label 2450 5700 0 50 ~ 0 459 | FLASH_MOSI 460 | Text Label 2450 5800 0 50 ~ 0 461 | FLASH_MISO 462 | Text Label 7450 3850 0 50 ~ 0 463 | FLASH_CS 464 | Text Label 7450 3750 0 50 ~ 0 465 | FLASH_MISO 466 | Text Label 7450 3650 0 50 ~ 0 467 | FLASH_MOSI 468 | Text Label 7450 3550 0 50 ~ 0 469 | FLASH_SCK 470 | $Comp 471 | L Connector:Conn_01x06_Female J2 472 | U 1 1 5ED8D0AC 473 | P 4650 5700 474 | F 0 "J2" H 4678 5676 50 0000 L CNN 475 | F 1 "DEBUG" H 4678 5585 50 0000 L CNN 476 | F 2 "Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm" H 4650 5700 50 0001 C CNN 477 | F 3 "~" H 4650 5700 50 0001 C CNN 478 | 1 4650 5700 479 | 1 0 0 -1 480 | $EndComp 481 | $Comp 482 | L power:GND #PWR043 483 | U 1 1 5ED8E3E3 484 | P 4450 6000 485 | F 0 "#PWR043" H 4450 5750 50 0001 C CNN 486 | F 1 "GND" V 4450 5800 50 0000 C CNN 487 | F 2 "" H 4450 6000 50 0001 C CNN 488 | F 3 "" H 4450 6000 50 0001 C CNN 489 | 1 4450 6000 490 | 0 1 1 0 491 | $EndComp 492 | $Comp 493 | L power:VCC #PWR042 494 | U 1 1 5ED8E90E 495 | P 4450 5500 496 | F 0 "#PWR042" H 4450 5350 50 0001 C CNN 497 | F 1 "VCC" V 4450 5700 50 0000 C CNN 498 | F 2 "" H 4450 5500 50 0001 C CNN 499 | F 3 "" H 4450 5500 50 0001 C CNN 500 | 1 4450 5500 501 | 0 -1 -1 0 502 | $EndComp 503 | Text Label 4450 5900 2 50 ~ 0 504 | ~RESET 505 | Text Label 4450 5700 2 50 ~ 0 506 | SWDIO 507 | Text Label 4450 5800 2 50 ~ 0 508 | SWDCLK 509 | Text HLabel 3950 3150 0 50 BiDi ~ 0 510 | SDA 511 | Text HLabel 3950 3250 0 50 BiDi ~ 0 512 | SCL 513 | $Comp 514 | L device:LED_ALT D289 515 | U 1 1 5EDCB20C 516 | P 3000 3350 517 | F 0 "D289" V 3039 3233 50 0000 R CNN 518 | F 1 "LED" V 2948 3233 50 0000 R CNN 519 | F 2 "LEDs:LED_0603" H 3000 3350 50 0001 C CNN 520 | F 3 "~" H 3000 3350 50 0001 C CNN 521 | 1 3000 3350 522 | 0 -1 -1 0 523 | $EndComp 524 | Text HLabel 3950 3350 0 50 BiDi ~ 0 525 | SAO_GPIO1 526 | Wire Wire Line 527 | 3000 2350 3950 2350 528 | Text HLabel 3950 3450 0 50 BiDi ~ 0 529 | SAO_GPIO2 530 | Text HLabel 3950 2550 0 50 Output ~ 0 531 | IR_TX 532 | Text HLabel 3950 2650 0 50 Input ~ 0 533 | IR_RX 534 | Text HLabel 3950 3950 0 50 Input ~ 0 535 | BTN_A 536 | Text HLabel 3950 4050 0 50 Input ~ 0 537 | BTN_B 538 | Text HLabel 3950 4150 0 50 Input ~ 0 539 | BTN_X 540 | Text HLabel 3950 4250 0 50 Input ~ 0 541 | BTN_Y 542 | Text Label 2100 2500 0 50 ~ 0 543 | SBU1 544 | Text Label 2100 2600 0 50 ~ 0 545 | SBU2 546 | Text Label 3950 3750 2 50 ~ 0 547 | SBU1 548 | Text Label 3950 3850 2 50 ~ 0 549 | SBU2 550 | Wire Wire Line 551 | 7450 2550 8800 2550 552 | $Comp 553 | L device:R R10 554 | U 1 1 5EE9C16A 555 | P 8800 2300 556 | F 0 "R10" H 8700 2300 50 0000 C CNN 557 | F 1 "10k" V 8800 2300 50 0000 C CNN 558 | F 2 "Resistors_SMD:R_0603" V 8730 2300 50 0001 C CNN 559 | F 3 "~" H 8800 2300 50 0001 C CNN 560 | 1 8800 2300 561 | -1 0 0 1 562 | $EndComp 563 | $Comp 564 | L power:VCC #PWR0103 565 | U 1 1 5EE9CB87 566 | P 8800 2000 567 | F 0 "#PWR0103" H 8800 1850 50 0001 C CNN 568 | F 1 "VCC" V 8817 2128 50 0000 L CNN 569 | F 2 "" H 8800 2000 50 0001 C CNN 570 | F 3 "" H 8800 2000 50 0001 C CNN 571 | 1 8800 2000 572 | 1 0 0 -1 573 | $EndComp 574 | Wire Wire Line 575 | 8800 2000 8800 2150 576 | Wire Wire Line 577 | 8800 2450 8800 2550 578 | Connection ~ 8800 2550 579 | Wire Wire Line 580 | 8800 2550 9050 2550 581 | $Comp 582 | L device:R R11 583 | U 1 1 5EEE2B83 584 | P 9250 4350 585 | F 0 "R11" H 9150 4350 50 0000 C CNN 586 | F 1 "4.7k" V 9250 4350 50 0000 C CNN 587 | F 2 "Resistors_SMD:R_0603" V 9180 4350 50 0001 C CNN 588 | F 3 "~" H 9250 4350 50 0001 C CNN 589 | 1 9250 4350 590 | -1 0 0 1 591 | $EndComp 592 | $Comp 593 | L device:R R12 594 | U 1 1 5EEE38CC 595 | P 9500 4350 596 | F 0 "R12" H 9400 4350 50 0000 C CNN 597 | F 1 "4.7k" V 9500 4350 50 0000 C CNN 598 | F 2 "Resistors_SMD:R_0603" V 9430 4350 50 0001 C CNN 599 | F 3 "~" H 9500 4350 50 0001 C CNN 600 | 1 9500 4350 601 | -1 0 0 1 602 | $EndComp 603 | $Comp 604 | L device:R R13 605 | U 1 1 5EEE3C2F 606 | P 9750 4350 607 | F 0 "R13" H 9650 4350 50 0000 C CNN 608 | F 1 "4.7k" V 9750 4350 50 0000 C CNN 609 | F 2 "Resistors_SMD:R_0603" V 9680 4350 50 0001 C CNN 610 | F 3 "~" H 9750 4350 50 0001 C CNN 611 | 1 9750 4350 612 | -1 0 0 1 613 | $EndComp 614 | $Comp 615 | L power:VCC #PWR067 616 | U 1 1 5EEE4255 617 | P 9250 4100 618 | F 0 "#PWR067" H 9250 3950 50 0001 C CNN 619 | F 1 "VCC" V 9267 4228 50 0000 L CNN 620 | F 2 "" H 9250 4100 50 0001 C CNN 621 | F 3 "" H 9250 4100 50 0001 C CNN 622 | 1 9250 4100 623 | 1 0 0 -1 624 | $EndComp 625 | $Comp 626 | L power:VCC #PWR068 627 | U 1 1 5EEE4871 628 | P 9500 4100 629 | F 0 "#PWR068" H 9500 3950 50 0001 C CNN 630 | F 1 "VCC" V 9517 4228 50 0000 L CNN 631 | F 2 "" H 9500 4100 50 0001 C CNN 632 | F 3 "" H 9500 4100 50 0001 C CNN 633 | 1 9500 4100 634 | 1 0 0 -1 635 | $EndComp 636 | $Comp 637 | L power:VCC #PWR069 638 | U 1 1 5EEE49E0 639 | P 9750 4100 640 | F 0 "#PWR069" H 9750 3950 50 0001 C CNN 641 | F 1 "VCC" V 9767 4228 50 0000 L CNN 642 | F 2 "" H 9750 4100 50 0001 C CNN 643 | F 3 "" H 9750 4100 50 0001 C CNN 644 | 1 9750 4100 645 | 1 0 0 -1 646 | $EndComp 647 | Wire Wire Line 648 | 9250 4100 9250 4200 649 | Wire Wire Line 650 | 9500 4100 9500 4200 651 | Wire Wire Line 652 | 9750 4100 9750 4200 653 | Text HLabel 9250 4500 3 50 BiDi ~ 0 654 | SDA 655 | Text HLabel 9500 4500 3 50 BiDi ~ 0 656 | SCL 657 | Text HLabel 7450 2750 2 50 Input ~ 0 658 | INTB_1 659 | Text HLabel 7450 2850 2 50 Output ~ 0 660 | SDB 661 | $Comp 662 | L device:R R14 663 | U 1 1 5EEEA025 664 | P 10250 4350 665 | F 0 "R14" H 10150 4350 50 0000 C CNN 666 | F 1 "100k" V 10250 4350 50 0000 C CNN 667 | F 2 "Resistors_SMD:R_0603" V 10180 4350 50 0001 C CNN 668 | F 3 "~" H 10250 4350 50 0001 C CNN 669 | 1 10250 4350 670 | -1 0 0 1 671 | $EndComp 672 | Text HLabel 10250 4200 1 50 Output ~ 0 673 | SDB 674 | $Comp 675 | L power:GND #PWR071 676 | U 1 1 5EEEA48A 677 | P 10250 4600 678 | F 0 "#PWR071" H 10250 4350 50 0001 C CNN 679 | F 1 "GND" V 10255 4472 50 0000 R CNN 680 | F 2 "" H 10250 4600 50 0001 C CNN 681 | F 3 "" H 10250 4600 50 0001 C CNN 682 | 1 10250 4600 683 | 1 0 0 -1 684 | $EndComp 685 | Wire Wire Line 686 | 10250 4500 10250 4600 687 | $Comp 688 | L Connector:TestPoint TP1 689 | U 1 1 5F12438C 690 | P 3950 1750 691 | F 0 "TP1" V 3950 2200 50 0000 C CNN 692 | F 1 "PA0" V 3950 2000 50 0000 C CNN 693 | F 2 "Connectors:TestPoint_Large" H 4150 1750 50 0001 C CNN 694 | F 3 "~" H 4150 1750 50 0001 C CNN 695 | 1 3950 1750 696 | 0 -1 -1 0 697 | $EndComp 698 | $Comp 699 | L Connector:TestPoint TP2 700 | U 1 1 5F125D74 701 | P 3950 1850 702 | F 0 "TP2" V 3950 2300 50 0000 C CNN 703 | F 1 "PA1" V 3950 2100 50 0000 C CNN 704 | F 2 "Connectors:TestPoint_Large" H 4150 1850 50 0001 C CNN 705 | F 3 "~" H 4150 1850 50 0001 C CNN 706 | 1 3950 1850 707 | 0 -1 -1 0 708 | $EndComp 709 | $Comp 710 | L Connector:TestPoint TP3 711 | U 1 1 5F12663A 712 | P 3950 1950 713 | F 0 "TP3" V 3950 2400 50 0000 C CNN 714 | F 1 "PA2" V 3950 2200 50 0000 C CNN 715 | F 2 "Connectors:TestPoint_Large" H 4150 1950 50 0001 C CNN 716 | F 3 "~" H 4150 1950 50 0001 C CNN 717 | 1 3950 1950 718 | 0 -1 -1 0 719 | $EndComp 720 | $Comp 721 | L Connector:TestPoint TP4 722 | U 1 1 5F126A64 723 | P 3950 2050 724 | F 0 "TP4" V 3950 2500 50 0000 C CNN 725 | F 1 "PA3" V 3950 2300 50 0000 C CNN 726 | F 2 "Connectors:TestPoint_Large" H 4150 2050 50 0001 C CNN 727 | F 3 "~" H 4150 2050 50 0001 C CNN 728 | 1 3950 2050 729 | 0 -1 -1 0 730 | $EndComp 731 | $Comp 732 | L Connector:TestPoint TP5 733 | U 1 1 5F127893 734 | P 3950 2450 735 | F 0 "TP5" V 3950 2900 50 0000 C CNN 736 | F 1 "PB9" V 3950 2700 50 0000 C CNN 737 | F 2 "Connectors:TestPoint_Large" H 4150 2450 50 0001 C CNN 738 | F 3 "~" H 4150 2450 50 0001 C CNN 739 | 1 3950 2450 740 | 0 -1 -1 0 741 | $EndComp 742 | $Comp 743 | L Connector:TestPoint TP6 744 | U 1 1 5F127DA0 745 | P 3950 2750 746 | F 0 "TP6" V 3950 3200 50 0000 C CNN 747 | F 1 "PA6" V 3950 3000 50 0000 C CNN 748 | F 2 "Connectors:TestPoint_Large" H 4150 2750 50 0001 C CNN 749 | F 3 "~" H 4150 2750 50 0001 C CNN 750 | 1 3950 2750 751 | 0 -1 -1 0 752 | $EndComp 753 | $Comp 754 | L Connector:TestPoint TP7 755 | U 1 1 5F128145 756 | P 3950 2850 757 | F 0 "TP7" V 3950 3300 50 0000 C CNN 758 | F 1 "PA7" V 3950 3100 50 0000 C CNN 759 | F 2 "Connectors:TestPoint_Large" H 4150 2850 50 0001 C CNN 760 | F 3 "~" H 4150 2850 50 0001 C CNN 761 | 1 3950 2850 762 | 0 -1 -1 0 763 | $EndComp 764 | $Comp 765 | L Connector:TestPoint TP14 766 | U 1 1 5F128571 767 | P 7450 4250 768 | F 0 "TP14" V 7450 4700 50 0000 C CNN 769 | F 1 "PA16" V 7450 4500 50 0000 C CNN 770 | F 2 "Connectors:TestPoint_Large" H 7650 4250 50 0001 C CNN 771 | F 3 "~" H 7650 4250 50 0001 C CNN 772 | 1 7450 4250 773 | 0 1 1 0 774 | $EndComp 775 | $Comp 776 | L Connector:TestPoint TP13 777 | U 1 1 5F1299EA 778 | P 7450 4150 779 | F 0 "TP13" V 7450 4600 50 0000 C CNN 780 | F 1 "PA17" V 7450 4400 50 0000 C CNN 781 | F 2 "Connectors:TestPoint_Large" H 7650 4150 50 0001 C CNN 782 | F 3 "~" H 7650 4150 50 0001 C CNN 783 | 1 7450 4150 784 | 0 1 1 0 785 | $EndComp 786 | $Comp 787 | L Connector:TestPoint TP12 788 | U 1 1 5F12A0AD 789 | P 7450 4050 790 | F 0 "TP12" V 7450 4500 50 0000 C CNN 791 | F 1 "PA18" V 7450 4300 50 0000 C CNN 792 | F 2 "Connectors:TestPoint_Large" H 7650 4050 50 0001 C CNN 793 | F 3 "~" H 7650 4050 50 0001 C CNN 794 | 1 7450 4050 795 | 0 1 1 0 796 | $EndComp 797 | $Comp 798 | L Connector:TestPoint TP11 799 | U 1 1 5F12A28A 800 | P 7450 3950 801 | F 0 "TP11" V 7450 4400 50 0000 C CNN 802 | F 1 "PA19" V 7450 4200 50 0000 C CNN 803 | F 2 "Connectors:TestPoint_Large" H 7650 3950 50 0001 C CNN 804 | F 3 "~" H 7650 3950 50 0001 C CNN 805 | 1 7450 3950 806 | 0 1 1 0 807 | $EndComp 808 | $Comp 809 | L Connector:TestPoint TP10 810 | U 1 1 5F12ABBF 811 | P 7450 2450 812 | F 0 "TP10" V 7450 2900 50 0000 C CNN 813 | F 1 "PA28" V 7450 2700 50 0000 C CNN 814 | F 2 "Connectors:TestPoint_Large" H 7650 2450 50 0001 C CNN 815 | F 3 "~" H 7650 2450 50 0001 C CNN 816 | 1 7450 2450 817 | 0 1 1 0 818 | $EndComp 819 | $Comp 820 | L Connector:TestPoint TP9 821 | U 1 1 5F12ADE8 822 | P 7450 1850 823 | F 0 "TP9" V 7450 2300 50 0000 C CNN 824 | F 1 "PB2" V 7450 2100 50 0000 C CNN 825 | F 2 "Connectors:TestPoint_Large" H 7650 1850 50 0001 C CNN 826 | F 3 "~" H 7650 1850 50 0001 C CNN 827 | 1 7450 1850 828 | 0 1 1 0 829 | $EndComp 830 | $Comp 831 | L Connector:TestPoint TP8 832 | U 1 1 5F12B04A 833 | P 7450 1750 834 | F 0 "TP8" V 7450 2200 50 0000 C CNN 835 | F 1 "PB3" V 7450 2000 50 0000 C CNN 836 | F 2 "Connectors:TestPoint_Large" H 7650 1750 50 0001 C CNN 837 | F 3 "~" H 7650 1750 50 0001 C CNN 838 | 1 7450 1750 839 | 0 1 1 0 840 | $EndComp 841 | Text HLabel 7450 2650 2 50 Input ~ 0 842 | INTB_2 843 | $Comp 844 | L device:R R9 845 | U 1 1 5F12E2F7 846 | P 10000 4350 847 | F 0 "R9" H 9900 4350 50 0000 C CNN 848 | F 1 "4.7k" V 10000 4350 50 0000 C CNN 849 | F 2 "Resistors_SMD:R_0603" V 9930 4350 50 0001 C CNN 850 | F 3 "~" H 10000 4350 50 0001 C CNN 851 | 1 10000 4350 852 | -1 0 0 1 853 | $EndComp 854 | $Comp 855 | L power:VCC #PWR070 856 | U 1 1 5F12E301 857 | P 10000 4100 858 | F 0 "#PWR070" H 10000 3950 50 0001 C CNN 859 | F 1 "VCC" V 10017 4228 50 0000 L CNN 860 | F 2 "" H 10000 4100 50 0001 C CNN 861 | F 3 "" H 10000 4100 50 0001 C CNN 862 | 1 10000 4100 863 | 1 0 0 -1 864 | $EndComp 865 | Wire Wire Line 866 | 10000 4100 10000 4200 867 | Text HLabel 9750 4500 3 50 Input ~ 0 868 | INTB_1 869 | Text HLabel 10000 4500 3 50 Input ~ 0 870 | INTB_2 871 | Text Label 4450 5600 2 50 ~ 0 872 | USB_VBUS 873 | $EndSCHEMATC 874 | -------------------------------------------------------------------------------- /schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bornhack/badge2020/115cc3b39de8781a052fa1740f9469e2be74da08/schematic.pdf -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name Driver_LED)(type Legacy)(uri /Users/tf/Documents/Libraries/kicad-symbol/Driver_LED.lib)(options "")(descr "")) 3 | (lib (name samd21g18)(type Legacy)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/samd21g18.lib)(options "")(descr "")) 4 | (lib (name badgelife_shitty_addon_v169bis)(type Legacy)(uri /Users/tf/Documents/Libraries/Badgelife_SAO_v169bis_20190321-0053/badgelife_shitty_addon_v169bis.lib)(options "")(descr "")) 5 | (lib (name gd25q32c)(type Legacy)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/gd25q32c.lib)(options "")(descr "")) 6 | (lib (name Regulator_Linear)(type Legacy)(uri /Users/tf/Documents/Libraries/kicad-symbol/Regulator_Linear.lib)(options "")(descr "")) 7 | (lib (name Transistor_BJT)(type Legacy)(uri ${KICAD_SYMBOL_DIR}/Transistor_BJT.lib)(options "")(descr "")) 8 | (lib (name Opto)(type Legacy)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Opto.lib)(options "")(descr "")) 9 | (lib (name Semiconductors)(type Legacy)(uri /Users/tf/Documents/Libraries/KiCad_flummer.net/Semiconductors.lib)(options "")(descr "")) 10 | ) 11 | --------------------------------------------------------------------------------