├── .gitignore ├── LICENSE ├── README.md ├── img ├── SerialMouseBlaster_PCB_back.jpg ├── SerialMouseBlaster_PCB_front.jpg ├── mouse_with_SerialMouseBlaster.jpg ├── resistor_mod_in_series_resistor.jpg └── schematic.png └── kicad ├── SerialMouseBlasterPCB.kicad_pcb ├── SerialMouseBlasterPCB.lib ├── SerialMouseBlasterPCB.pretty └── raspberry_pi_pico.kicad_mod ├── SerialMouseBlasterPCB.pro ├── SerialMouseBlasterPCB.sch ├── fp-lib-table └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | /kicad/*-cache 2 | /kicad/*-cache.lib 3 | /kicad/*-bak 4 | /kicad/gerbers/* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Serial Mouse Blaster (a.k.a. Passive USB to Serial Mouse Adapter) 2 | 3 | A PCB used for modding a modern optical USB mouse and converting it into a Serial mouse. 4 | 5 | 6 | 7 | 8 | This is based on a Raspberry Pi Pico running the SerialMouseBlaster [firmware](https://github.com/scrapcomputing/SerialMouseBlasterFirmware). 9 | 10 | 11 | 12 | 13 | 14 | # What does it do 15 | 16 | The SerialMouseBlaster has two jobs: 17 | - It extracts as much current as possible from the serial port pins and provides power to a Raspberry Pi Pico running the specifically designed low-power firmware, and to a USB optical mouse with the LED resistor mod for low power consumption. 18 | - It does the necessary level shifting that allows the Pico's GPIOs to talk to the serial port pins that are used by the serial mouse protocol. 19 | 20 | The end result is an adapter board that converts a USB optical mouse to a serial one with no external power. 21 | 22 | # Which mouse can I use? 23 | 24 | Short answer: You have to measure it first, but a relatively modern mouse with a < 5mA consumption on idle should work after the resistor mod. 25 | 26 | The serial port provides very little power, up to 15mA in total at 5V. 27 | Currently the Pico consumes about half of it and the rest of the circuitry about another 15-20%. So the we only have about 5mA to spare for the USB mouse. So a good mouse candidate is one that consumes up to 5mA. 28 | 29 | The problem though is that most USB optical mice consume much more than this. 30 | But most of the power is usually consumed by the LED (usually red) which illuminates the surface. 31 | Luckily the mouse camera can still work even with a much dimmer LED. 32 | So we can reduce the power consumption by adding a resistor in series with the LED. 33 | A good resistor values is usually around 1K Ohms. 34 | Some mice may even work with higher resistor values, but beyond some value the camera can no longer see the surface and the mouse will not register mouse movement. 35 | So for best results use the largest resistor value you can without affecting the functionality of the mouse. 36 | 37 | Some mice already have an SMD resistor in-series with the LED (see image below of the Microsoft Basic Optical Mouse v2.0). 38 | This resistor is usually a very low value. 39 | For a cleaner mod, you can simply replace this resistor with another SMD one of much higher value. 40 | 41 | 42 | 43 | You can usually tell if a mouse is low-power enough by simply measuring its idle current, without the resistor mod. 44 | If it is under 5mA, then it has a good chance of working well with a mod. 45 | If not, then the chances are that it will consume too much power even with the mod. 46 | 47 | Please note that a typical optical USB mouse will consume several times higher power when you move it as the LED becomes a lot brighter than when it is not moving. 48 | 49 | ## List of mice that work: 50 | Brand | Model | Idle Current | Max Current | Mod Resistor |Modded Idle | Modded Max 51 | -----------|-------------------------|--------------|-------------|--------------|------------|----------- 52 | Microsoft |Basic Optical Mouse v2.0 | 3.5mA | ~15mA | 2.2K | 2.7mA | 5.4mA 53 | Logitech | B100 | 8.4mA | ~24mA | 1K | 6.4mA | 8.6mA 54 | 55 | ## List of mice that consume too much power (mostly very early optical mice): 56 | Brand | Model | Idle Current | Max Current | 57 | -----------|--------------------------|--------------|-------------| 58 | Dell | M-UVDEL1 | 20.7mA | 59.2mA | 59 | Apple | A1152 | 26.7mA | 69.7mA | 60 | Microsoft | Basic Optical Mouse | 29.4mA | 54.3mA | 61 | Microsoft | Wheel Mouse Optical 1.1A | 44.1mA | 61.4mA | 62 | 63 | > **Note** 64 | > Please help me populate these tables. Feel free to reach out or send out a pull request if you measured your mouse and you want to share your numbers. 65 | 66 | # How does it work 67 | 68 | The serial port does not provide power. 69 | So any device connected to it either needs to be powered externally, or try to use power from the logic output pins. There are 3 output pins: TXD, DTR and RTS. These can usually provide up to about 5mA at 5V. 70 | 71 | The SerialMouseBlaster uses power from all three pins. When the mouse driver initializes the serial port, DTR and RTS are high (about +10V), while TXD is low (about -10V). In order to get power from TXD, it uses a 7555 timer chip as a voltage doubler, which outputs positive voltage. 72 | 73 | Level-shifting is done with an LM385 Op Amp which consumes only 1.5mA, as opposed to using a MAX3232, which according to my measurements consumed more than 5mA. 74 | 75 | 76 | # Serial port pinout 77 | 78 | Pin | Name | Direction | Description 79 | ----|------|-----------|------------ 80 | 1 | CD | IN | Carrier Detect 81 | 2 | RXD | IN | Receive Data 82 | 3 | TXD | OUT | Transmit Data 83 | 4 | DTR | OUT | Data Terminal Ready 84 | 5 | GND | | Ground 85 | 6 | DSR | IN | Data Set Ready 86 | 7 | RTS | OUT | Request To Send 87 | 8 | CTS | IN | Clear To Send 88 | 9 | IR | IN | Ring Indicator 89 | 90 | ``` 91 | Female connector looking at the holes: 92 | ----------------------- 93 | | ------------- | 94 | | \ 5 4 3 2 1 / | 95 | | ( ) \ 9 8 7 6 / ( ) | 96 | | ------- | 97 | ----------------------- 98 | ``` 99 | 100 | # Videos 101 | - For a discussion/explanation of the circuit: https://www.youtube.com/watch?v=cGvVPzlRPjM 102 | - Assembly video rev0.1: https://www.youtube.com/watch?v=YjD63UplQ3c 103 | 104 | 105 | # Bill of materials 106 | 107 | Gerber files are published in the releases: https://github.com/scrapcomputing/SerialMouseBlasterPCB/releases 108 | 109 | The firmware is available here: https://github.com/scrapcomputing/SerialMouseBlasterFirmware 110 | 111 | Reference| Quantity| Value| Footprint | Details 112 | ---------|---------|------|-----------|-------- 113 | C1 C7 |2|1uF|Capacitor SMD|C 1206 3216Metric Pad1.33x1.80mm 114 | C2 |1|10nF|Capacitor SMD|C 1206 3216Metric Pad1.33x1.80mm 115 | C3 C4 C6 C8 |4|10uF|Capacitor SMD|C 1206 3216Metric Pad1.33x1.80mm 116 | D11 |1|BZX84-C5V1|Diode SMD|D SOT-23 ANK 117 | D1 D2 D3 D4 D5 D6 |6|BAS40-04|Package TO SOT SMD|SOT-23 118 | J1 |1|Conn 01x05|Connector PinHeader 2.54mm|PinHeader 1x05 P2.54mm Vertical 119 | J2 |1|Conn 01x04 Male|Connector PinHeader 2.54mm|PinHeader 1x04 P2.54mm Vertical 120 | J3 |1|Conn 01x03 Male|Connector PinHeader 2.54mm|PinHeader 1x03 P2.54mm Vertical 121 | Q1 |1|MMBTA92|Package TO SOT SMD|SOT-23 122 | R1 R3 R4 R8 |4|1K|Resistor SMD|R 1206 3216Metric Pad1.30x1.75mm 123 | R2 R5 R6 R7 |4|22K|Resistor SMD|R 1206 3216Metric Pad1.30x1.75mm 124 | U1 |1|ICM7555xP|Package SO|SO-8 5.3x6.2mm P1.27mm 125 | U2 |1|LM358|Package SO|SO-8 5.3x6.2mm P1.27mm 126 | U3 |1|RaspberryPi Pico| N/A | Raspberry Pi Pico 127 | 128 | # Changelist 129 | - Rev0.4 : Handles Tx with positive voltage, adds protection diode for 555. 130 | - Rev0.3 : First SMD only revision. 131 | - Rev0.2 : Initial release. Fixes minor issues of Rev0.1. 132 | - Rev0.1 : Initial revision (not released) 133 | -------------------------------------------------------------------------------- /img/SerialMouseBlaster_PCB_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/SerialMouseBlasterPCB/0edce57f3715d6f2024caf6437cd0c6577d90ded/img/SerialMouseBlaster_PCB_back.jpg -------------------------------------------------------------------------------- /img/SerialMouseBlaster_PCB_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/SerialMouseBlasterPCB/0edce57f3715d6f2024caf6437cd0c6577d90ded/img/SerialMouseBlaster_PCB_front.jpg -------------------------------------------------------------------------------- /img/mouse_with_SerialMouseBlaster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/SerialMouseBlasterPCB/0edce57f3715d6f2024caf6437cd0c6577d90ded/img/mouse_with_SerialMouseBlaster.jpg -------------------------------------------------------------------------------- /img/resistor_mod_in_series_resistor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/SerialMouseBlasterPCB/0edce57f3715d6f2024caf6437cd0c6577d90ded/img/resistor_mod_in_series_resistor.jpg -------------------------------------------------------------------------------- /img/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/SerialMouseBlasterPCB/0edce57f3715d6f2024caf6437cd0c6577d90ded/img/schematic.png -------------------------------------------------------------------------------- /kicad/SerialMouseBlasterPCB.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20171130) (host pcbnew 5.1.9+dfsg1-1+deb11u1) 2 | 3 | (general 4 | (thickness 1.6) 5 | (drawings 126) 6 | (tracks 340) 7 | (zones 0) 8 | (modules 29) 9 | (nets 25) 10 | ) 11 | 12 | (page A4) 13 | (layers 14 | (0 F.Cu signal) 15 | (31 B.Cu signal) 16 | (32 B.Adhes user) 17 | (33 F.Adhes user) 18 | (34 B.Paste user) 19 | (35 F.Paste user) 20 | (36 B.SilkS user) 21 | (37 F.SilkS user) 22 | (38 B.Mask user) 23 | (39 F.Mask user) 24 | (40 Dwgs.User user) 25 | (41 Cmts.User user) 26 | (42 Eco1.User user) 27 | (43 Eco2.User user) 28 | (44 Edge.Cuts user) 29 | (45 Margin user) 30 | (46 B.CrtYd user) 31 | (47 F.CrtYd user) 32 | (48 B.Fab user) 33 | (49 F.Fab user) 34 | ) 35 | 36 | (setup 37 | (last_trace_width 0.25) 38 | (user_trace_width 0.35) 39 | (trace_clearance 0.2) 40 | (zone_clearance 0.508) 41 | (zone_45_only no) 42 | (trace_min 0.2) 43 | (via_size 0.8) 44 | (via_drill 0.4) 45 | (via_min_size 0.4) 46 | (via_min_drill 0.3) 47 | (uvia_size 0.3) 48 | (uvia_drill 0.1) 49 | (uvias_allowed no) 50 | (uvia_min_size 0.2) 51 | (uvia_min_drill 0.1) 52 | (edge_width 0.05) 53 | (segment_width 0.2) 54 | (pcb_text_width 0.3) 55 | (pcb_text_size 1.5 1.5) 56 | (mod_edge_width 0.12) 57 | (mod_text_size 1 1) 58 | (mod_text_width 0.15) 59 | (pad_size 1.2 1.2) 60 | (pad_drill 0.8) 61 | (pad_to_mask_clearance 0) 62 | (aux_axis_origin 0 0) 63 | (visible_elements FFFFFF7F) 64 | (pcbplotparams 65 | (layerselection 0x010fc_ffffffff) 66 | (usegerberextensions false) 67 | (usegerberattributes true) 68 | (usegerberadvancedattributes true) 69 | (creategerberjobfile true) 70 | (excludeedgelayer true) 71 | (linewidth 0.100000) 72 | (plotframeref false) 73 | (viasonmask false) 74 | (mode 1) 75 | (useauxorigin false) 76 | (hpglpennumber 1) 77 | (hpglpenspeed 20) 78 | (hpglpendiameter 15.000000) 79 | (psnegative false) 80 | (psa4output false) 81 | (plotreference true) 82 | (plotvalue true) 83 | (plotinvisibletext false) 84 | (padsonsilk false) 85 | (subtractmaskfromsilk false) 86 | (outputformat 1) 87 | (mirror false) 88 | (drillshape 0) 89 | (scaleselection 1) 90 | (outputdirectory "gerbers/")) 91 | ) 92 | 93 | (net 0 "") 94 | (net 1 /TX) 95 | (net 2 "Net-(C1-Pad1)") 96 | (net 3 "Net-(C2-Pad1)") 97 | (net 4 "Net-(C3-Pad2)") 98 | (net 5 "Net-(C3-Pad1)") 99 | (net 6 /GND) 100 | (net 7 /RTS) 101 | (net 8 /DTR) 102 | (net 9 /RX) 103 | (net 10 "Net-(R3-Pad1)") 104 | (net 11 "Net-(R4-Pad2)") 105 | (net 12 /RxIN) 106 | (net 13 /RTS_) 107 | (net 14 "Net-(R6-Pad2)") 108 | (net 15 /PWR-) 109 | (net 16 /D+) 110 | (net 17 /D-) 111 | (net 18 /PWR+) 112 | (net 19 /PicoRx) 113 | (net 20 /PicoTx) 114 | (net 21 "Net-(D5-Pad2)") 115 | (net 22 "Net-(C8-Pad1)") 116 | (net 23 "Net-(Q1-Pad2)") 117 | (net 24 "Net-(C1-Pad2)") 118 | 119 | (net_class Default "This is the default net class." 120 | (clearance 0.2) 121 | (trace_width 0.25) 122 | (via_dia 0.8) 123 | (via_drill 0.4) 124 | (uvia_dia 0.3) 125 | (uvia_drill 0.1) 126 | (add_net /D+) 127 | (add_net /D-) 128 | (add_net /DTR) 129 | (add_net /GND) 130 | (add_net /PWR+) 131 | (add_net /PWR-) 132 | (add_net /PicoRx) 133 | (add_net /PicoTx) 134 | (add_net /RTS) 135 | (add_net /RTS_) 136 | (add_net /RX) 137 | (add_net /RxIN) 138 | (add_net /TX) 139 | (add_net "Net-(C1-Pad1)") 140 | (add_net "Net-(C1-Pad2)") 141 | (add_net "Net-(C2-Pad1)") 142 | (add_net "Net-(C3-Pad1)") 143 | (add_net "Net-(C3-Pad2)") 144 | (add_net "Net-(C8-Pad1)") 145 | (add_net "Net-(D5-Pad2)") 146 | (add_net "Net-(Q1-Pad2)") 147 | (add_net "Net-(R3-Pad1)") 148 | (add_net "Net-(R4-Pad2)") 149 | (add_net "Net-(R6-Pad2)") 150 | ) 151 | 152 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 64907DB3) 153 | (at 132.8166 63.881 180) 154 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 155 | (tags "resistor handsolder") 156 | (path /6494F328) 157 | (attr smd) 158 | (fp_text reference R8 (at -3.1369 -0.0635) (layer B.SilkS) 159 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 160 | ) 161 | (fp_text value 1K (at -0.0254 -0.0635) (layer B.SilkS) 162 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 163 | ) 164 | (fp_text user %R (at 0 0) (layer B.Fab) 165 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 166 | ) 167 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 168 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 169 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 170 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 171 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 172 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 173 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 174 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 175 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 176 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 177 | (pad 2 smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 178 | (net 23 "Net-(Q1-Pad2)")) 179 | (pad 1 smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 180 | (net 22 "Net-(C8-Pad1)")) 181 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 182 | (at (xyz 0 0 0)) 183 | (scale (xyz 1 1 1)) 184 | (rotate (xyz 0 0 0)) 185 | ) 186 | ) 187 | 188 | (module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer B.Cu) (tedit 64A36686) (tstamp 6490274C) 189 | (at 158.8516 59.7535 90) 190 | (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") 191 | (tags "Through hole pin header THT 1x04 2.54mm single row") 192 | (path /64866FCC) 193 | (fp_text reference J2 (at 0.1905 -9.8806 180) (layer B.SilkS) 194 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 195 | ) 196 | (fp_text value Conn_01x04_Male (at 0 -9.95 270) (layer B.Fab) 197 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 198 | ) 199 | (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) 200 | (fp_line (start 1.8 -9.4) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) 201 | (fp_line (start -1.8 -9.4) (end 1.8 -9.4) (layer B.CrtYd) (width 0.05)) 202 | (fp_line (start -1.8 1.8) (end -1.8 -9.4) (layer B.CrtYd) (width 0.05)) 203 | (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) 204 | (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) 205 | (fp_line (start -1.2065 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12)) 206 | (fp_line (start 1.33 -1.27) (end 1.33 -8.95) (layer B.SilkS) (width 0.12)) 207 | (fp_line (start -1.2065 -1.2735) (end -1.2065 -8.9535) (layer B.SilkS) (width 0.12)) 208 | (fp_line (start -1.2065 -8.95) (end 1.33 -8.95) (layer B.SilkS) (width 0.12)) 209 | (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) 210 | (fp_line (start -1.27 -8.89) (end -1.27 0.635) (layer B.Fab) (width 0.1)) 211 | (fp_line (start 1.27 -8.89) (end -1.27 -8.89) (layer B.Fab) (width 0.1)) 212 | (fp_line (start 1.27 1.27) (end 1.27 -8.89) (layer B.Fab) (width 0.1)) 213 | (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) 214 | (fp_text user %R (at 0 -3.81 180) (layer B.Fab) 215 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 216 | ) 217 | (pad 4 thru_hole oval (at 0 -7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 218 | (net 15 /PWR-)) 219 | (pad 3 thru_hole oval (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 220 | (net 16 /D+)) 221 | (pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 222 | (net 17 /D-)) 223 | (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 224 | (net 18 /PWR+)) 225 | (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl 226 | (at (xyz 0 0 0)) 227 | (scale (xyz 1 1 1)) 228 | (rotate (xyz 0 0 0)) 229 | ) 230 | ) 231 | 232 | (module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical (layer B.Cu) (tedit 64A365D3) (tstamp 647D7235) 233 | (at 160.274 76.6572 90) 234 | (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") 235 | (tags "Through hole pin header THT 1x05 2.54mm single row") 236 | (path /6488BF52) 237 | (fp_text reference J1 (at -1.0033 -12.192) (layer B.SilkS) 238 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 239 | ) 240 | (fp_text value Conn_01x05 (at 0 -12.49 90) (layer B.Fab) 241 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 242 | ) 243 | (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) 244 | (fp_line (start 1.8 -11.95) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) 245 | (fp_line (start -1.8 -11.95) (end 1.8 -11.95) (layer B.CrtYd) (width 0.05)) 246 | (fp_line (start -1.8 1.8) (end -1.8 -11.95) (layer B.CrtYd) (width 0.05)) 247 | (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) 248 | (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) 249 | (fp_line (start -1.33 -1.27) (end 1.2065 -1.27) (layer B.SilkS) (width 0.12)) 250 | (fp_line (start 1.2065 -1.27) (end 1.2065 -11.49) (layer B.SilkS) (width 0.12)) 251 | (fp_line (start -1.33 -1.27) (end -1.33 -11.49) (layer B.SilkS) (width 0.12)) 252 | (fp_line (start -1.33 -11.49) (end 1.2065 -11.49) (layer B.SilkS) (width 0.12)) 253 | (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) 254 | (fp_line (start -1.27 -11.43) (end -1.27 0.635) (layer B.Fab) (width 0.1)) 255 | (fp_line (start 1.27 -11.43) (end -1.27 -11.43) (layer B.Fab) (width 0.1)) 256 | (fp_line (start 1.27 1.27) (end 1.27 -11.43) (layer B.Fab) (width 0.1)) 257 | (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) 258 | (fp_text user %R (at 0 -5.08) (layer B.Fab) 259 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 260 | ) 261 | (pad 5 thru_hole oval (at 0 -10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 262 | (net 6 /GND)) 263 | (pad 4 thru_hole oval (at 0 -7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 264 | (net 8 /DTR)) 265 | (pad 3 thru_hole oval (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 266 | (net 7 /RTS)) 267 | (pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 268 | (net 9 /RX)) 269 | (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) 270 | (net 1 /TX)) 271 | (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl 272 | (at (xyz 0 0 0)) 273 | (scale (xyz 1 1 1)) 274 | (rotate (xyz 0 0 0)) 275 | ) 276 | ) 277 | 278 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 647D70C7) 279 | (at 132.8269 61.5442 180) 280 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 281 | (tags "capacitor handsolder") 282 | (path /647E80AA) 283 | (attr smd) 284 | (fp_text reference C8 (at -3.1266 0.2667) (layer B.SilkS) 285 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 286 | ) 287 | (fp_text value 10uF (at 0 0.0127) (layer B.Fab) 288 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 289 | ) 290 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 291 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 292 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 293 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 294 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 295 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 296 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 297 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 298 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 299 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 300 | (fp_text user %R (at 0 0) (layer B.Fab) 301 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 302 | ) 303 | (pad 2 smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 304 | (net 15 /PWR-)) 305 | (pad 1 smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 306 | (net 22 "Net-(C8-Pad1)")) 307 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 308 | (at (xyz 0 0 0)) 309 | (scale (xyz 1 1 1)) 310 | (rotate (xyz 0 0 0)) 311 | ) 312 | ) 313 | 314 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 647F38EF) 315 | (at 138.684 68.072 90) 316 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 317 | (tags "capacitor handsolder") 318 | (path /64D7B06C) 319 | (attr smd) 320 | (fp_text reference C6 (at -2.667 -0.1905 180) (layer B.SilkS) 321 | (effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror)) 322 | ) 323 | (fp_text value 10uF (at 0 -1.85 90) (layer B.Fab) 324 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 325 | ) 326 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 327 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 328 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 329 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 330 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 331 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 332 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 333 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 334 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 335 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 336 | (fp_text user %R (at 0 0 90) (layer B.Fab) 337 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 338 | ) 339 | (pad 2 smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 340 | (net 24 "Net-(C1-Pad2)")) 341 | (pad 1 smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 342 | (net 6 /GND)) 343 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 344 | (at (xyz 0 0 0)) 345 | (scale (xyz 1 1 1)) 346 | (rotate (xyz 0 0 0)) 347 | ) 348 | ) 349 | 350 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 647D6F41) 351 | (at 156.1465 69.977) 352 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 353 | (tags "capacitor handsolder") 354 | (path /64762B46) 355 | (attr smd) 356 | (fp_text reference C4 (at 2.9845 0) (layer B.SilkS) 357 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 358 | ) 359 | (fp_text value 10uF (at 0 -1.85) (layer B.Fab) 360 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 361 | ) 362 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 363 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 364 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 365 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 366 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 367 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 368 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 369 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 370 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 371 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 372 | (fp_text user %R (at 0 0) (layer B.Fab) 373 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 374 | ) 375 | (pad 2 smd roundrect (at 1.5625 0) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 376 | (net 15 /PWR-)) 377 | (pad 1 smd roundrect (at -1.5625 0) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 378 | (net 18 /PWR+)) 379 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 380 | (at (xyz 0 0 0)) 381 | (scale (xyz 1 1 1)) 382 | (rotate (xyz 0 0 0)) 383 | ) 384 | ) 385 | 386 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 647F32BE) 387 | (at 141.1605 68.072 90) 388 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 389 | (tags "capacitor handsolder") 390 | (path /64CC957E) 391 | (attr smd) 392 | (fp_text reference C3 (at -2.667 -0.1905 180) (layer B.SilkS) 393 | (effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror)) 394 | ) 395 | (fp_text value 10uF (at 0 -1.85 90) (layer B.Fab) 396 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 397 | ) 398 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 399 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 400 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 401 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 402 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 403 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 404 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 405 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 406 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 407 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 408 | (fp_text user %R (at 0 0 90) (layer B.Fab) 409 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 410 | ) 411 | (pad 2 smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 412 | (net 4 "Net-(C3-Pad2)")) 413 | (pad 1 smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 414 | (net 5 "Net-(C3-Pad1)")) 415 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 416 | (at (xyz 0 0 0)) 417 | (scale (xyz 1 1 1)) 418 | (rotate (xyz 0 0 0)) 419 | ) 420 | ) 421 | 422 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 6494750A) 423 | (at 146.431 70.723 270) 424 | (descr "SOT-23, Standard") 425 | (tags SOT-23) 426 | (path /6493E745) 427 | (attr smd) 428 | (fp_text reference D6 (at 1.27 -1.143 180) (layer B.SilkS) 429 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 430 | ) 431 | (fp_text value BAS40-04 (at 0 -2.5 90) (layer B.Fab) 432 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 433 | ) 434 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 435 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 436 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 437 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 438 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 439 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 440 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 441 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 442 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 443 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 444 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 445 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 446 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 447 | (fp_text user %R (at 0 0 180) (layer B.Fab) 448 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 449 | ) 450 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 451 | (net 1 /TX)) 452 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 453 | (net 18 /PWR+)) 454 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 455 | (net 24 "Net-(C1-Pad2)")) 456 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 457 | (at (xyz 0 0 0)) 458 | (scale (xyz 1 1 1)) 459 | (rotate (xyz 0 0 0)) 460 | ) 461 | ) 462 | 463 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 64905C9D) 464 | (at 127.3302 62.5348 270) 465 | (descr "SOT-23, Standard") 466 | (tags SOT-23) 467 | (path /6491220D) 468 | (attr smd) 469 | (fp_text reference Q1 (at 1.27 -1.1684 180) (layer B.SilkS) 470 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 471 | ) 472 | (fp_text value MMBTA92 (at 0 -2.5 90) (layer B.Fab) 473 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 474 | ) 475 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 476 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 477 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 478 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 479 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 480 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 481 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 482 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 483 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 484 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 485 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 486 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 487 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 488 | (fp_text user %R (at 0 0 180) (layer B.Fab) 489 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 490 | ) 491 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 492 | (net 15 /PWR-)) 493 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 494 | (net 23 "Net-(Q1-Pad2)")) 495 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 496 | (net 18 /PWR+)) 497 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 498 | (at (xyz 0 0 0)) 499 | (scale (xyz 1 1 1)) 500 | (rotate (xyz 0 0 0)) 501 | ) 502 | ) 503 | 504 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 6490AAE2) 505 | (at 138.684 62.9285 90) 506 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 507 | (tags "capacitor handsolder") 508 | (path /64CDADD9) 509 | (attr smd) 510 | (fp_text reference C2 (at 2.5654 0.0762 180) (layer B.SilkS) 511 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 512 | ) 513 | (fp_text value 10nF (at 0 -0.0254 90) (layer B.SilkS) 514 | (effects (font (size 0.45 0.45) (thickness 0.075)) (justify mirror)) 515 | ) 516 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 517 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 518 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 519 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 520 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 521 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 522 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 523 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 524 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 525 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 526 | (fp_text user %R (at 0 0 90) (layer B.Fab) 527 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 528 | ) 529 | (pad 2 smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 530 | (net 24 "Net-(C1-Pad2)")) 531 | (pad 1 smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 532 | (net 3 "Net-(C2-Pad1)")) 533 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 534 | (at (xyz 0 0 0)) 535 | (scale (xyz 1 1 1)) 536 | (rotate (xyz 0 0 0)) 537 | ) 538 | ) 539 | 540 | (module Package_SO:SO-8_5.3x6.2mm_P1.27mm (layer B.Cu) (tedit 5EA5315B) (tstamp 648FBCC8) 541 | (at 149.86 65.024) 542 | (descr "SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") 543 | (tags "SO SO") 544 | (path /6473E5F1) 545 | (attr smd) 546 | (fp_text reference U2 (at -2.032 -4.064) (layer B.SilkS) 547 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 548 | ) 549 | (fp_text value LM358 (at 0 -4.05) (layer B.Fab) 550 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 551 | ) 552 | (fp_line (start 0 -3.21) (end 2.76 -3.21) (layer B.SilkS) (width 0.12)) 553 | (fp_line (start 2.76 -3.21) (end 2.76 -2.465) (layer B.SilkS) (width 0.12)) 554 | (fp_line (start 0 -3.21) (end -2.76 -3.21) (layer B.SilkS) (width 0.12)) 555 | (fp_line (start -2.76 -3.21) (end -2.76 -2.465) (layer B.SilkS) (width 0.12)) 556 | (fp_line (start 0 3.21) (end 2.76 3.21) (layer B.SilkS) (width 0.12)) 557 | (fp_line (start 2.76 3.21) (end 2.76 2.465) (layer B.SilkS) (width 0.12)) 558 | (fp_line (start 0 3.21) (end -2.76 3.21) (layer B.SilkS) (width 0.12)) 559 | (fp_line (start -2.76 3.21) (end -2.76 2.465) (layer B.SilkS) (width 0.12)) 560 | (fp_line (start -2.76 2.465) (end -4.45 2.465) (layer B.SilkS) (width 0.12)) 561 | (fp_line (start -1.65 3.1) (end 2.65 3.1) (layer B.Fab) (width 0.1)) 562 | (fp_line (start 2.65 3.1) (end 2.65 -3.1) (layer B.Fab) (width 0.1)) 563 | (fp_line (start 2.65 -3.1) (end -2.65 -3.1) (layer B.Fab) (width 0.1)) 564 | (fp_line (start -2.65 -3.1) (end -2.65 2.1) (layer B.Fab) (width 0.1)) 565 | (fp_line (start -2.65 2.1) (end -1.65 3.1) (layer B.Fab) (width 0.1)) 566 | (fp_line (start -4.7 3.35) (end -4.7 -3.35) (layer B.CrtYd) (width 0.05)) 567 | (fp_line (start -4.7 -3.35) (end 4.7 -3.35) (layer B.CrtYd) (width 0.05)) 568 | (fp_line (start 4.7 -3.35) (end 4.7 3.35) (layer B.CrtYd) (width 0.05)) 569 | (fp_line (start 4.7 3.35) (end -4.7 3.35) (layer B.CrtYd) (width 0.05)) 570 | (fp_text user %R (at 0 0) (layer B.Fab) 571 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 572 | ) 573 | (pad 8 smd roundrect (at 3.5 1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 574 | (net 18 /PWR+)) 575 | (pad 7 smd roundrect (at 3.5 0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)) 576 | (pad 6 smd roundrect (at 3.5 -0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 577 | (net 18 /PWR+)) 578 | (pad 5 smd roundrect (at 3.5 -1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 579 | (net 1 /TX)) 580 | (pad 4 smd roundrect (at -3.5 -1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 581 | (net 1 /TX)) 582 | (pad 3 smd roundrect (at -3.5 -0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 583 | (net 14 "Net-(R6-Pad2)")) 584 | (pad 2 smd roundrect (at -3.5 0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 585 | (net 11 "Net-(R4-Pad2)")) 586 | (pad 1 smd roundrect (at -3.5 1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 587 | (net 10 "Net-(R3-Pad1)")) 588 | (model ${KISYS3DMOD}/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.wrl 589 | (at (xyz 0 0 0)) 590 | (scale (xyz 1 1 1)) 591 | (rotate (xyz 0 0 0)) 592 | ) 593 | ) 594 | 595 | (module Package_SO:SO-8_5.3x6.2mm_P1.27mm (layer B.Cu) (tedit 5EA5315B) (tstamp 648FF229) 596 | (at 132.588 68.58) 597 | (descr "SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") 598 | (tags "SO SO") 599 | (path /64CBB365) 600 | (attr smd) 601 | (fp_text reference U1 (at -5.588 -0.254) (layer B.SilkS) 602 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 603 | ) 604 | (fp_text value ICM7555xP (at 0 -4.05) (layer B.Fab) 605 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 606 | ) 607 | (fp_line (start 0 -3.21) (end 2.76 -3.21) (layer B.SilkS) (width 0.12)) 608 | (fp_line (start 2.76 -3.21) (end 2.76 -2.465) (layer B.SilkS) (width 0.12)) 609 | (fp_line (start 0 -3.21) (end -2.76 -3.21) (layer B.SilkS) (width 0.12)) 610 | (fp_line (start -2.76 -3.21) (end -2.76 -2.465) (layer B.SilkS) (width 0.12)) 611 | (fp_line (start 0 3.21) (end 2.76 3.21) (layer B.SilkS) (width 0.12)) 612 | (fp_line (start 2.76 3.21) (end 2.76 2.465) (layer B.SilkS) (width 0.12)) 613 | (fp_line (start 0 3.21) (end -2.76 3.21) (layer B.SilkS) (width 0.12)) 614 | (fp_line (start -2.76 3.21) (end -2.76 2.465) (layer B.SilkS) (width 0.12)) 615 | (fp_line (start -2.76 2.465) (end -4.45 2.465) (layer B.SilkS) (width 0.12)) 616 | (fp_line (start -1.65 3.1) (end 2.65 3.1) (layer B.Fab) (width 0.1)) 617 | (fp_line (start 2.65 3.1) (end 2.65 -3.1) (layer B.Fab) (width 0.1)) 618 | (fp_line (start 2.65 -3.1) (end -2.65 -3.1) (layer B.Fab) (width 0.1)) 619 | (fp_line (start -2.65 -3.1) (end -2.65 2.1) (layer B.Fab) (width 0.1)) 620 | (fp_line (start -2.65 2.1) (end -1.65 3.1) (layer B.Fab) (width 0.1)) 621 | (fp_line (start -4.7 3.35) (end -4.7 -3.35) (layer B.CrtYd) (width 0.05)) 622 | (fp_line (start -4.7 -3.35) (end 4.7 -3.35) (layer B.CrtYd) (width 0.05)) 623 | (fp_line (start 4.7 -3.35) (end 4.7 3.35) (layer B.CrtYd) (width 0.05)) 624 | (fp_line (start 4.7 3.35) (end -4.7 3.35) (layer B.CrtYd) (width 0.05)) 625 | (fp_text user %R (at 0 0) (layer B.Fab) 626 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 627 | ) 628 | (pad 8 smd roundrect (at 3.5 1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 629 | (net 6 /GND)) 630 | (pad 7 smd roundrect (at 3.5 0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 631 | (net 4 "Net-(C3-Pad2)")) 632 | (pad 6 smd roundrect (at 3.5 -0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 633 | (net 3 "Net-(C2-Pad1)")) 634 | (pad 5 smd roundrect (at 3.5 -1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 635 | (net 2 "Net-(C1-Pad1)")) 636 | (pad 4 smd roundrect (at -3.5 -1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 637 | (net 6 /GND)) 638 | (pad 3 smd roundrect (at -3.5 -0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 639 | (net 4 "Net-(C3-Pad2)")) 640 | (pad 2 smd roundrect (at -3.5 0.635) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 641 | (net 3 "Net-(C2-Pad1)")) 642 | (pad 1 smd roundrect (at -3.5 1.905) (size 1.9 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) 643 | (net 24 "Net-(C1-Pad2)")) 644 | (model ${KISYS3DMOD}/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.wrl 645 | (at (xyz 0 0 0)) 646 | (scale (xyz 1 1 1)) 647 | (rotate (xyz 0 0 0)) 648 | ) 649 | ) 650 | 651 | (module Diode_SMD:D_SOT-23_ANK (layer B.Cu) (tedit 587CCEF9) (tstamp 647F52CC) 652 | (at 156.464 66.548 180) 653 | (descr "SOT-23, Single Diode") 654 | (tags SOT-23) 655 | (path /64DA38E7) 656 | (attr smd) 657 | (fp_text reference D11 (at -0.1778 2.1336) (layer B.SilkS) 658 | (effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror)) 659 | ) 660 | (fp_text value BZX84-C5V1 (at 0 -2.5) (layer B.Fab) 661 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 662 | ) 663 | (fp_line (start -0.15 0.45) (end -0.4 0.45) (layer B.Fab) (width 0.1)) 664 | (fp_line (start -0.15 0.25) (end 0.15 0.45) (layer B.Fab) (width 0.1)) 665 | (fp_line (start -0.15 0.65) (end -0.15 0.25) (layer B.Fab) (width 0.1)) 666 | (fp_line (start 0.15 0.45) (end -0.15 0.65) (layer B.Fab) (width 0.1)) 667 | (fp_line (start 0.15 0.45) (end 0.4 0.45) (layer B.Fab) (width 0.1)) 668 | (fp_line (start 0.15 0.65) (end 0.15 0.25) (layer B.Fab) (width 0.1)) 669 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 670 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 671 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 672 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 673 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 674 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 675 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 676 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 677 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 678 | (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 679 | (fp_line (start -0.7 1.52) (end -0.7 -1.52) (layer B.Fab) (width 0.1)) 680 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 681 | (fp_text user %R (at 0 2.5) (layer B.Fab) 682 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 683 | ) 684 | (pad 1 smd rect (at 1 0 180) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 685 | (net 18 /PWR+)) 686 | (pad "" smd rect (at -1 -0.95 180) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)) 687 | (pad 2 smd rect (at -1 0.95 180) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 688 | (net 15 /PWR-)) 689 | (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOT-23.wrl 690 | (at (xyz 0 0 0)) 691 | (scale (xyz 1 1 1)) 692 | (rotate (xyz 0 0 0)) 693 | ) 694 | ) 695 | 696 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 648F7928) 697 | (at 160.8582 73.0504 270) 698 | (descr "SOT-23, Standard") 699 | (tags SOT-23) 700 | (path /64B4A33F) 701 | (attr smd) 702 | (fp_text reference D5 (at 1.27 -1.1938 180) (layer B.SilkS) 703 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 704 | ) 705 | (fp_text value BAS40-04 (at 0 -2.5 90) (layer B.Fab) 706 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 707 | ) 708 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 709 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 710 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 711 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 712 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 713 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 714 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 715 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 716 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 717 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 718 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 719 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 720 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 721 | (fp_text user %R (at 0 0 180) (layer B.Fab) 722 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 723 | ) 724 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)) 725 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 726 | (net 21 "Net-(D5-Pad2)")) 727 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 728 | (net 7 /RTS)) 729 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 730 | (at (xyz 0 0 0)) 731 | (scale (xyz 1 1 1)) 732 | (rotate (xyz 0 0 0)) 733 | ) 734 | ) 735 | 736 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 648F7913) 737 | (at 146.4183 74.422 270) 738 | (descr "SOT-23, Standard") 739 | (tags SOT-23) 740 | (path /64B265D0) 741 | (attr smd) 742 | (fp_text reference D4 (at 1.2827 -1.1557 180) (layer B.SilkS) 743 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 744 | ) 745 | (fp_text value BAS40-04 (at 0 -2.5 90) (layer B.Fab) 746 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 747 | ) 748 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 749 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 750 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 751 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 752 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 753 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 754 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 755 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 756 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 757 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 758 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 759 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 760 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 761 | (fp_text user %R (at 0 0 180) (layer B.Fab) 762 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 763 | ) 764 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 765 | (net 5 "Net-(C3-Pad1)")) 766 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 767 | (net 18 /PWR+)) 768 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 769 | (net 6 /GND)) 770 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 771 | (at (xyz 0 0 0)) 772 | (scale (xyz 1 1 1)) 773 | (rotate (xyz 0 0 0)) 774 | ) 775 | ) 776 | 777 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 648F78FE) 778 | (at 150.0124 73.0504 270) 779 | (descr "SOT-23, Standard") 780 | (tags SOT-23) 781 | (path /6494A88E) 782 | (attr smd) 783 | (fp_text reference D3 (at 1.2446 -1.143 180) (layer B.SilkS) 784 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 785 | ) 786 | (fp_text value BAS40-04 (at 0 -2.5 90) (layer B.Fab) 787 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 788 | ) 789 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 790 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 791 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 792 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 793 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 794 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 795 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 796 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 797 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 798 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 799 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 800 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 801 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 802 | (fp_text user %R (at 0 0 180) (layer B.Fab) 803 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 804 | ) 805 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 806 | (net 6 /GND)) 807 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 808 | (net 18 /PWR+)) 809 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 810 | (net 15 /PWR-)) 811 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 812 | (at (xyz 0 0 0)) 813 | (scale (xyz 1 1 1)) 814 | (rotate (xyz 0 0 0)) 815 | ) 816 | ) 817 | 818 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 648F78E9) 819 | (at 153.6192 73.0504 270) 820 | (descr "SOT-23, Standard") 821 | (tags SOT-23) 822 | (path /64938BAA) 823 | (attr smd) 824 | (fp_text reference D2 (at 1.2446 -1.1938 180) (layer B.SilkS) 825 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 826 | ) 827 | (fp_text value BAS40-04 (at 0 -2.5 90) (layer B.Fab) 828 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 829 | ) 830 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 831 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 832 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 833 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 834 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 835 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 836 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 837 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 838 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 839 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 840 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 841 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 842 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 843 | (fp_text user %R (at 0 0 180) (layer B.Fab) 844 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 845 | ) 846 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 847 | (net 8 /DTR)) 848 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 849 | (net 18 /PWR+)) 850 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 851 | (net 15 /PWR-)) 852 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 853 | (at (xyz 0 0 0)) 854 | (scale (xyz 1 1 1)) 855 | (rotate (xyz 0 0 0)) 856 | ) 857 | ) 858 | 859 | (module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 648F78D4) 860 | (at 157.226 73.0504 270) 861 | (descr "SOT-23, Standard") 862 | (tags SOT-23) 863 | (path /649742F4) 864 | (attr smd) 865 | (fp_text reference D1 (at 1.2446 -1.143) (layer B.SilkS) 866 | (effects (font (size 0.6 0.6) (thickness 0.11)) (justify mirror)) 867 | ) 868 | (fp_text value BAS40-04 (at 0 -2.5 270) (layer B.Fab) 869 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 870 | ) 871 | (fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1)) 872 | (fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1)) 873 | (fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1)) 874 | (fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 875 | (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1)) 876 | (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12)) 877 | (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12)) 878 | (fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05)) 879 | (fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05)) 880 | (fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05)) 881 | (fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05)) 882 | (fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12)) 883 | (fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12)) 884 | (fp_text user %R (at 0 0) (layer B.Fab) 885 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 886 | ) 887 | (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 888 | (net 7 /RTS)) 889 | (pad 2 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 890 | (net 18 /PWR+)) 891 | (pad 1 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask) 892 | (net 15 /PWR-)) 893 | (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl 894 | (at (xyz 0 0 0)) 895 | (scale (xyz 1 1 1)) 896 | (rotate (xyz 0 0 0)) 897 | ) 898 | ) 899 | 900 | (module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer B.Cu) (tedit 648E77D1) (tstamp 647F3D71) 901 | (at 127 74.168 270) 902 | (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") 903 | (tags "Through hole pin header THT 1x03 2.54mm single row") 904 | (path /648C467C) 905 | (fp_text reference J3 (at -0.8255 -7.112) (layer B.SilkS) 906 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 907 | ) 908 | (fp_text value Conn_01x03_Male (at 0 -7.41 90) (layer B.Fab) 909 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 910 | ) 911 | (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) 912 | (fp_line (start 1.8 -6.85) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) 913 | (fp_line (start -1.8 -6.85) (end 1.8 -6.85) (layer B.CrtYd) (width 0.05)) 914 | (fp_line (start -1.8 1.8) (end -1.8 -6.85) (layer B.CrtYd) (width 0.05)) 915 | (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) 916 | (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) 917 | (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12)) 918 | (fp_line (start 1.33 -1.27) (end 1.33 -6.41) (layer B.SilkS) (width 0.12)) 919 | (fp_line (start -1.33 -1.27) (end -1.33 -6.41) (layer B.SilkS) (width 0.12)) 920 | (fp_line (start -1.33 -6.41) (end 1.33 -6.41) (layer B.SilkS) (width 0.12)) 921 | (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) 922 | (fp_line (start -1.27 -6.35) (end -1.27 0.635) (layer B.Fab) (width 0.1)) 923 | (fp_line (start 1.27 -6.35) (end -1.27 -6.35) (layer B.Fab) (width 0.1)) 924 | (fp_line (start 1.27 1.27) (end 1.27 -6.35) (layer B.Fab) (width 0.1)) 925 | (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) 926 | (fp_text user %R (at 0 -2.54 180) (layer B.Fab) 927 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 928 | ) 929 | (pad 3 thru_hole oval (at 0 -5.08 270) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 930 | (net 15 /PWR-)) 931 | (pad 2 thru_hole oval (at 0 -2.54 270) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 932 | (net 19 /PicoRx)) 933 | (pad 1 thru_hole rect (at 0 0 270) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 934 | (net 20 /PicoTx)) 935 | (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl 936 | (at (xyz 0 0 0)) 937 | (scale (xyz 1 1 1)) 938 | (rotate (xyz 0 0 0)) 939 | ) 940 | ) 941 | 942 | (module SerialMouseBlasterPCB:raspberry_pi_pico (layer F.Cu) (tedit 648E76E1) (tstamp 64944D56) 943 | (at 126.3396 77.1652 90) 944 | (path /647D86AA) 945 | (fp_text reference U3 (at 11.684 13.335 90) (layer F.SilkS) hide 946 | (effects (font (size 1 1) (thickness 0.15))) 947 | ) 948 | (fp_text value RaspberryPi_Pico (at 0 -0.5 90) (layer F.Fab) 949 | (effects (font (size 1 1) (thickness 0.15))) 950 | ) 951 | (fp_line (start 12.7 0) (end 12.7 -1.27) (layer F.SilkS) (width 0.15)) 952 | (fp_line (start 5.08 0) (end 5.08 -1.27) (layer F.SilkS) (width 0.15)) 953 | (fp_line (start 12.7 2.54) (end 12.7 0) (layer F.SilkS) (width 0.15)) 954 | (fp_line (start 5.08 2.54) (end 12.7 2.54) (layer F.SilkS) (width 0.15)) 955 | (fp_line (start 5.08 0) (end 5.08 2.54) (layer F.SilkS) (width 0.15)) 956 | (fp_line (start -1.27 49.53) (end -1.27 -1.27) (layer F.SilkS) (width 0.15)) 957 | (fp_line (start 19.05 49.53) (end -1.27 49.53) (layer F.SilkS) (width 0.15)) 958 | (fp_line (start 19.05 -1.27) (end 19.05 49.53) (layer F.SilkS) (width 0.15)) 959 | (fp_line (start -1.27 -1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15)) 960 | (fp_text user TP3 (at 7.5946 -0.8255 90) (layer F.SilkS) 961 | (effects (font (size 0.6 0.6) (thickness 0.11))) 962 | ) 963 | (fp_text user TP2 (at 10.1854 -0.8255 90) (layer F.SilkS) 964 | (effects (font (size 0.6 0.6) (thickness 0.11))) 965 | ) 966 | (fp_text user 40 (at 18.4658 -0.762 90) (layer F.SilkS) 967 | (effects (font (size 0.6 0.6) (thickness 0.1))) 968 | ) 969 | (fp_text user 1 (at -0.7874 -0.6604 90) (layer F.SilkS) 970 | (effects (font (size 0.6 0.6) (thickness 0.1))) 971 | ) 972 | (pad 41 thru_hole circle (at 10.16 0 90) (size 1.1 1.1) (drill 0.75) (layers *.Cu *.Mask) 973 | (net 17 /D-)) 974 | (pad 42 thru_hole circle (at 7.62 0 90) (size 1.1 1.1) (drill 0.75) (layers *.Cu *.Mask) 975 | (net 16 /D+)) 976 | (pad 40 thru_hole circle (at 17.78 0 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 977 | (pad 39 thru_hole circle (at 17.78 2.54 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 978 | (net 18 /PWR+)) 979 | (pad 38 thru_hole circle (at 17.78 5.08 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 980 | (net 15 /PWR-)) 981 | (pad 37 thru_hole circle (at 17.78 7.62 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 982 | (net 22 "Net-(C8-Pad1)")) 983 | (pad 36 thru_hole circle (at 17.78 10.16 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 984 | (pad 35 thru_hole circle (at 17.78 12.7 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 985 | (pad 34 thru_hole circle (at 17.78 15.24 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 986 | (pad 33 thru_hole circle (at 17.78 17.78 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 987 | (net 15 /PWR-)) 988 | (pad 32 thru_hole circle (at 17.78 20.32 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 989 | (pad 9 thru_hole circle (at 0 20.32 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 990 | (net 13 /RTS_)) 991 | (pad 8 thru_hole circle (at 0 17.78 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 992 | (net 15 /PWR-)) 993 | (pad 7 thru_hole circle (at 0 15.24 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 994 | (pad 6 thru_hole circle (at 0 12.7 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 995 | (net 12 /RxIN)) 996 | (pad 5 thru_hole circle (at 0 10.16 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 997 | (pad 4 thru_hole circle (at 0 7.62 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 998 | (pad 3 thru_hole circle (at 0 5.08 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 999 | (net 15 /PWR-)) 1000 | (pad 2 thru_hole circle (at 0 2.54 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 1001 | (net 19 /PicoRx)) 1002 | (pad 1 thru_hole circle (at 0 0 90) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask) 1003 | (net 20 /PicoTx)) 1004 | ) 1005 | 1006 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 647D72AC) 1007 | (at 162.052 62.484 270) 1008 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1009 | (tags "resistor handsolder") 1010 | (path /647D1C09) 1011 | (attr smd) 1012 | (fp_text reference R7 (at -2.7432 0.0762) (layer B.SilkS) 1013 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1014 | ) 1015 | (fp_text value 22K (at 0 0 270) (layer B.SilkS) 1016 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1017 | ) 1018 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1019 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1020 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1021 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1022 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1023 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1024 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1025 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1026 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1027 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1028 | (fp_text user %R (at 0 0 270) (layer B.Fab) 1029 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1030 | ) 1031 | (pad 2 smd roundrect (at 1.55 0 270) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1032 | (net 15 /PWR-)) 1033 | (pad 1 smd roundrect (at -1.55 0 270) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1034 | (net 14 "Net-(R6-Pad2)")) 1035 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1036 | (at (xyz 0 0 0)) 1037 | (scale (xyz 1 1 1)) 1038 | (rotate (xyz 0 0 0)) 1039 | ) 1040 | ) 1041 | 1042 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 647D729B) 1043 | (at 159.5755 64.2874 90) 1044 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1045 | (tags "resistor handsolder") 1046 | (path /647D2C01) 1047 | (attr smd) 1048 | (fp_text reference R6 (at -2.7178 -0.0127 180) (layer B.SilkS) 1049 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1050 | ) 1051 | (fp_text value 22K (at -0.0508 -0.4445 90) (layer B.SilkS) 1052 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1053 | ) 1054 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1055 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1056 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1057 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1058 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1059 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1060 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1061 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1062 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1063 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1064 | (fp_text user %R (at 0 0 90) (layer B.Fab) 1065 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1066 | ) 1067 | (pad 2 smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1068 | (net 14 "Net-(R6-Pad2)")) 1069 | (pad 1 smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1070 | (net 13 /RTS_)) 1071 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1072 | (at (xyz 0 0 0)) 1073 | (scale (xyz 1 1 1)) 1074 | (rotate (xyz 0 0 0)) 1075 | ) 1076 | ) 1077 | 1078 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 647F4A40) 1079 | (at 162.052 67.564 90) 1080 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1081 | (tags "resistor handsolder") 1082 | (path /647DE384) 1083 | (attr smd) 1084 | (fp_text reference R5 (at -2.7432 -0.0254 180) (layer B.SilkS) 1085 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1086 | ) 1087 | (fp_text value 22K (at 0 0.4572 90) (layer B.SilkS) 1088 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1089 | ) 1090 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1091 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1092 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1093 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1094 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1095 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1096 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1097 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1098 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1099 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1100 | (fp_text user %R (at 0 0 90) (layer B.Fab) 1101 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1102 | ) 1103 | (pad 2 smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1104 | (net 13 /RTS_)) 1105 | (pad 1 smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1106 | (net 21 "Net-(D5-Pad2)")) 1107 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1108 | (at (xyz 0 0 0)) 1109 | (scale (xyz 1 1 1)) 1110 | (rotate (xyz 0 0 0)) 1111 | ) 1112 | ) 1113 | 1114 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 647E1DE9) 1115 | (at 143.4211 73.66 90) 1116 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1117 | (tags "resistor handsolder") 1118 | (path /6484D5CC) 1119 | (attr smd) 1120 | (fp_text reference R4 (at -2.667 -0.4191 180) (layer B.SilkS) 1121 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1122 | ) 1123 | (fp_text value 1K (at 0 0.0381 90) (layer B.SilkS) 1124 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 1125 | ) 1126 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1127 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1128 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1129 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1130 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1131 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1132 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1133 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1134 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1135 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1136 | (fp_text user %R (at 0 0 90) (layer B.Fab) 1137 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1138 | ) 1139 | (pad 2 smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1140 | (net 11 "Net-(R4-Pad2)")) 1141 | (pad 1 smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1142 | (net 12 /RxIN)) 1143 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1144 | (at (xyz 0 0 0)) 1145 | (scale (xyz 1 1 1)) 1146 | (rotate (xyz 0 0 0)) 1147 | ) 1148 | ) 1149 | 1150 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 649EA7A5) 1151 | (at 150.8125 69.9135) 1152 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1153 | (tags "resistor handsolder") 1154 | (path /647E70A9) 1155 | (attr smd) 1156 | (fp_text reference R3 (at 0 1.3335) (layer B.SilkS) 1157 | (effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror)) 1158 | ) 1159 | (fp_text value 1K (at 0 -0.1905) (layer B.SilkS) 1160 | (effects (font (size 0.6 0.6) (thickness 0.075)) (justify mirror)) 1161 | ) 1162 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1163 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1164 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1165 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1166 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1167 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1168 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1169 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1170 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1171 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1172 | (fp_text user %R (at 0 0) (layer B.Fab) 1173 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1174 | ) 1175 | (pad 1 smd roundrect (at -1.55 0) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1176 | (net 10 "Net-(R3-Pad1)")) 1177 | (pad 2 smd roundrect (at 1.55 0) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1178 | (net 9 /RX)) 1179 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1180 | (at (xyz 0 0 0)) 1181 | (scale (xyz 1 1 1)) 1182 | (rotate (xyz 0 0 0)) 1183 | ) 1184 | ) 1185 | 1186 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 647D7257) 1187 | (at 141.0208 73.66 270) 1188 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1189 | (tags "resistor handsolder") 1190 | (path /64CDB3EB) 1191 | (attr smd) 1192 | (fp_text reference R2 (at 2.667 0.4953) (layer B.SilkS) 1193 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1194 | ) 1195 | (fp_text value 22K (at 0.0254 -0.0508 270) (layer B.SilkS) 1196 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1197 | ) 1198 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1199 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1200 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1201 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1202 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1203 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1204 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1205 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1206 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1207 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1208 | (fp_text user %R (at 0 0 270) (layer B.Fab) 1209 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1210 | ) 1211 | (pad 2 smd roundrect (at 1.55 0 270) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1212 | (net 4 "Net-(C3-Pad2)")) 1213 | (pad 1 smd roundrect (at -1.55 0 270) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1214 | (net 3 "Net-(C2-Pad1)")) 1215 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1216 | (at (xyz 0 0 0)) 1217 | (scale (xyz 1 1 1)) 1218 | (rotate (xyz 0 0 0)) 1219 | ) 1220 | ) 1221 | 1222 | (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 6490B670) 1223 | (at 136.906 74.93) 1224 | (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1225 | (tags "resistor handsolder") 1226 | (path /64CDB988) 1227 | (attr smd) 1228 | (fp_text reference R1 (at -0.254 -1.524) (layer B.SilkS) 1229 | (effects (font (size 0.746 0.746) (thickness 0.1246)) (justify mirror)) 1230 | ) 1231 | (fp_text value 1K (at -0.0254 0.0254) (layer B.SilkS) 1232 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 1233 | ) 1234 | (fp_line (start 2.45 -1.12) (end -2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1235 | (fp_line (start 2.45 1.12) (end 2.45 -1.12) (layer B.CrtYd) (width 0.05)) 1236 | (fp_line (start -2.45 1.12) (end 2.45 1.12) (layer B.CrtYd) (width 0.05)) 1237 | (fp_line (start -2.45 -1.12) (end -2.45 1.12) (layer B.CrtYd) (width 0.05)) 1238 | (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer B.SilkS) (width 0.12)) 1239 | (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer B.SilkS) (width 0.12)) 1240 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1241 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1242 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1243 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1244 | (fp_text user %R (at 0 0) (layer B.Fab) 1245 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1246 | ) 1247 | (pad 2 smd roundrect (at 1.55 0) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1248 | (net 4 "Net-(C3-Pad2)")) 1249 | (pad 1 smd roundrect (at -1.55 0) (size 1.3 1.75) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.192308) 1250 | (net 6 /GND)) 1251 | (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl 1252 | (at (xyz 0 0 0)) 1253 | (scale (xyz 1 1 1)) 1254 | (rotate (xyz 0 0 0)) 1255 | ) 1256 | ) 1257 | 1258 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 648FFD8B) 1259 | (at 143.7005 62.9285 270) 1260 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1261 | (tags "capacitor handsolder") 1262 | (path /64821DCE) 1263 | (attr smd) 1264 | (fp_text reference C7 (at -2.54 0 180) (layer B.SilkS) 1265 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1266 | ) 1267 | (fp_text value 1uF (at 0 0.0635 90) (layer B.SilkS) 1268 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 1269 | ) 1270 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 1271 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 1272 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 1273 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 1274 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 1275 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 1276 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1277 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1278 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1279 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1280 | (fp_text user %R (at 0 0 90) (layer B.Fab) 1281 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1282 | ) 1283 | (pad 2 smd roundrect (at 1.5625 0 270) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 1284 | (net 1 /TX)) 1285 | (pad 1 smd roundrect (at -1.5625 0 270) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 1286 | (net 18 /PWR+)) 1287 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 1288 | (at (xyz 0 0 0)) 1289 | (scale (xyz 1 1 1)) 1290 | (rotate (xyz 0 0 0)) 1291 | ) 1292 | ) 1293 | 1294 | (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 6490AA4D) 1295 | (at 141.1605 62.9285 90) 1296 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 1297 | (tags "capacitor handsolder") 1298 | (path /64CDA703) 1299 | (attr smd) 1300 | (fp_text reference C1 (at 2.5654 0.0254 180) (layer B.SilkS) 1301 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1302 | ) 1303 | (fp_text value 1uF (at 0 -0.0254 90) (layer B.SilkS) 1304 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 1305 | ) 1306 | (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) 1307 | (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) 1308 | (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) 1309 | (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) 1310 | (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) 1311 | (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) 1312 | (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) 1313 | (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) 1314 | (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) 1315 | (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) 1316 | (fp_text user %R (at 0 0 90) (layer B.Fab) 1317 | (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) 1318 | ) 1319 | (pad 2 smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 1320 | (net 24 "Net-(C1-Pad2)")) 1321 | (pad 1 smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.188679) 1322 | (net 2 "Net-(C1-Pad1)")) 1323 | (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl 1324 | (at (xyz 0 0 0)) 1325 | (scale (xyz 1 1 1)) 1326 | (rotate (xyz 0 0 0)) 1327 | ) 1328 | ) 1329 | 1330 | (gr_text TP3 (at 126.365 70.993 90) (layer B.SilkS) (tstamp 64A36F73) 1331 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1332 | ) 1333 | (gr_text TP2 (at 126.365 65.4685 90) (layer B.SilkS) 1334 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1335 | ) 1336 | (gr_text 10uF (at 140.97 68.072 90) (layer B.SilkS) (tstamp 649EA45E) 1337 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 1338 | ) 1339 | (gr_text 10uF (at 138.684 68.072 90) (layer B.SilkS) 1340 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 1341 | ) 1342 | (gr_text 10uF (at 156.1465 70.0405) (layer B.SilkS) 1343 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 1344 | ) 1345 | (gr_text 10uF (at 132.7785 61.5315) (layer B.SilkS) 1346 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 1347 | ) 1348 | (gr_text BAS40-04 (at 146.431 70.739) (layer B.SilkS) (tstamp 64945C54) 1349 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1350 | ) 1351 | (gr_text + (at 153.6065 69.9135) (layer B.SilkS) (tstamp 649440DC) 1352 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1353 | ) 1354 | (gr_text + (at 139.446 70.612) (layer B.SilkS) (tstamp 649440DC) 1355 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1356 | ) 1357 | (gr_text + (at 141.9225 70.612) (layer B.SilkS) (tstamp 649440DC) 1358 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1359 | ) 1360 | (gr_text + (at 135.382 62.1665) (layer B.SilkS) 1361 | (effects (font (size 0.7 0.7) (thickness 0.11)) (justify mirror)) 1362 | ) 1363 | (gr_text CMOS (at 134.0358 68.7578 270) (layer B.SilkS) 1364 | (effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror)) 1365 | ) 1366 | (gr_text PNP (at 127.3048 62.5094) (layer B.SilkS) 1367 | (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) 1368 | ) 1369 | (gr_text "Pi Pico Side" (at 134.6708 71.5264) (layer F.SilkS) 1370 | (effects (font (size 1 1) (thickness 0.15))) 1371 | ) 1372 | (gr_text "Connect\nto Pico" (at 127.762 68.3895 90) (layer F.SilkS) 1373 | (effects (font (size 0.7 0.7) (thickness 0.1))) 1374 | ) 1375 | (gr_line (start 161.036 62.992) (end 161.036 58.166) (layer F.SilkS) (width 0.12)) 1376 | (gr_line (start 148.844 62.992) (end 161.036 62.992) (layer F.SilkS) (width 0.12)) 1377 | (gr_line (start 148.844 58.166) (end 148.844 62.992) (layer F.SilkS) (width 0.12)) 1378 | (gr_line (start 148.336 78.4352) (end 148.336 72.771) (layer F.SilkS) (width 0.12) (tstamp 64904BD8)) 1379 | (gr_line (start 162.179 72.771) (end 162.179 78.4352) (layer F.SilkS) (width 0.12)) 1380 | (gr_line (start 148.336 72.771) (end 162.179 72.771) (layer F.SilkS) (width 0.12)) 1381 | (gr_text BAS40-04 (at 160.8582 72.9742) (layer B.SilkS) (tstamp 64903D3F) 1382 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1383 | ) 1384 | (gr_text BAS40-04 (at 157.226 72.9742) (layer B.SilkS) (tstamp 64903D3F) 1385 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1386 | ) 1387 | (gr_text BAS40-04 (at 153.6446 72.9996) (layer B.SilkS) (tstamp 64903D3F) 1388 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1389 | ) 1390 | (gr_text BAS40-04 (at 150.0378 72.9996) (layer B.SilkS) (tstamp 64903D3F) 1391 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1392 | ) 1393 | (gr_text BAS40-04 (at 146.431 74.3585) (layer B.SilkS) 1394 | (effects (font (size 0.4 0.35) (thickness 0.075)) (justify mirror)) 1395 | ) 1396 | (gr_line (start 125.1204 76.0984) (end 148.2852 76.0984) (layer F.SilkS) (width 0.12)) 1397 | (gr_text Tx (at 127 75.946) (layer B.SilkS) (tstamp 647F39B2) 1398 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1399 | ) 1400 | (gr_text "Pico Serial Debug" (at 129.54 72.263) (layer B.SilkS) (tstamp 647F39AB) 1401 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1402 | ) 1403 | (gr_text GND (at 132.08 75.946) (layer B.SilkS) (tstamp 647F39D2) 1404 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1405 | ) 1406 | (gr_text Rx (at 129.54 75.946) (layer B.SilkS) (tstamp 647F39B5) 1407 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1408 | ) 1409 | (gr_arc (start 151.6888 69.6976) (end 151.7396 69.7992) (angle -243.4349488) (layer F.SilkS) (width 0.0692) (tstamp 648FB7E6)) 1410 | (gr_arc (start 150.98776 69.68744) (end 151.08936 69.68744) (angle -225.0350911) (layer F.SilkS) (width 0.0692) (tstamp 648FB7E0)) 1411 | (gr_circle (center 151.638 70.4088) (end 151.751592 70.4088) (layer F.SilkS) (width 0.0692) (tstamp 648FB7C5)) 1412 | (gr_circle (center 151.08936 70.39864) (end 151.202952 70.39864) (layer F.SilkS) (width 0.0692) (tstamp 648FB7DD)) 1413 | (gr_circle (center 151.5364 69.9516) (end 151.5618 69.9516) (layer F.SilkS) (width 0.12) (tstamp 648FB7DA)) 1414 | (gr_circle (center 151.14016 69.94144) (end 151.16556 69.94144) (layer F.SilkS) (width 0.12) (tstamp 648FB7D7)) 1415 | (gr_arc (start 151.3332 70.2564) (end 151.9428 70.3072) (angle -194.2508417) (layer F.SilkS) (width 0.12) (tstamp 648FB7E3)) 1416 | (gr_circle (center 151.362552 70.7644) (end 151.972152 71.1708) (layer F.SilkS) (width 0.12)) 1417 | (gr_text 32 (at 147.828 58.674 90) (layer F.SilkS) (tstamp 647F7FE0) 1418 | (effects (font (size 0.6444 0.6444) (thickness 0.08904))) 1419 | ) 1420 | (gr_text 9 (at 147.7772 77.978 90) (layer F.SilkS) 1421 | (effects (font (size 0.6444 0.6444) (thickness 0.08904))) 1422 | ) 1423 | (gr_line (start 148.2852 76.0984) (end 148.2852 78.3844) (layer F.SilkS) (width 0.12)) 1424 | (gr_line (start 148.2852 60.5028) (end 148.2852 58.2676) (layer F.SilkS) (width 0.12)) 1425 | (gr_line (start 125.1712 60.5028) (end 148.2852 60.5028) (layer F.SilkS) (width 0.12)) 1426 | (gr_text Rx (at 157.6832 75.057) (layer B.SilkS) (tstamp 64903100) 1427 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1428 | ) 1429 | (gr_text "Serial Port" (at 155.448 73.66) (layer F.SilkS) (tstamp 648FB918) 1430 | (effects (font (size 0.8 0.8) (thickness 0.12))) 1431 | ) 1432 | (gr_text USB (at 155.194 62.23) (layer F.SilkS) (tstamp 64903FF1) 1433 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1434 | ) 1435 | (gr_text Tx (at 160.274 74.93) (layer F.SilkS) (tstamp 648FB7D4) 1436 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1437 | ) 1438 | (gr_text Rx (at 157.6832 74.93) (layer F.SilkS) (tstamp 648FB7D1) 1439 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1440 | ) 1441 | (gr_text RTS (at 155.2067 74.93) (layer F.SilkS) (tstamp 648FB7CE) 1442 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1443 | ) 1444 | (gr_text DTR (at 152.654 74.93) (layer F.SilkS) (tstamp 648FB7CB) 1445 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1446 | ) 1447 | (gr_text GND (at 150.114 74.93) (layer F.SilkS) (tstamp 64A37105) 1448 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1449 | ) 1450 | (gr_text PWR+ (at 159.004 61.468) (layer F.SilkS) (tstamp 6490303D) 1451 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1452 | ) 1453 | (gr_text D- (at 156.464 61.468) (layer F.SilkS) (tstamp 64903044) 1454 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1455 | ) 1456 | (gr_text D+ (at 153.67 61.468) (layer F.SilkS) (tstamp 64A37C4B) 1457 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1458 | ) 1459 | (gr_text PWR- (at 151.384 61.468) (layer F.SilkS) (tstamp 648FB77E) 1460 | (effects (font (size 0.492 0.492) (thickness 0.0992))) 1461 | ) 1462 | (gr_line (start 162.0647 70.104) (end 161.6837 70.104) (layer F.SilkS) (width 0.0692) (tstamp 647E74F9)) 1463 | (gr_line (start 162.5727 70.739) (end 162.4457 70.485) (layer F.SilkS) (width 0.0692) (tstamp 647E74D5)) 1464 | (gr_line (start 161.0487 69.7865) (end 160.7312 69.088) (layer F.SilkS) (width 0.12) (tstamp 647E6EF4)) 1465 | (gr_line (start 161.2392 70.612) (end 161.5567 70.5485) (layer F.SilkS) (width 0.0692) (tstamp 647E7430)) 1466 | (gr_line (start 161.3662 70.6755) (end 161.2392 70.612) (layer F.SilkS) (width 0.0692) (tstamp 647E741E)) 1467 | (gr_line (start 161.6837 70.104) (end 161.4932 70.358) (layer F.SilkS) (width 0.0692) (tstamp 647E74CF)) 1468 | (gr_line (start 162.1917 70.612) (end 162.3187 70.866) (layer F.SilkS) (width 0.0692) (tstamp 647E7508)) 1469 | (gr_line (start 162.7632 69.723) (end 162.9537 69.342) (layer F.SilkS) (width 0.12) (tstamp 647E6EEF)) 1470 | (gr_line (start 161.8107 70.9295) (end 161.8107 71.12) (layer F.SilkS) (width 0.0692) (tstamp 647E7457)) 1471 | (gr_text "Scrap Computing" (at 161.8996 71.45274) (layer F.SilkS) (tstamp 647E750B) 1472 | (effects (font (size 0.14656 0.14656) (thickness 0.03156))) 1473 | ) 1474 | (gr_line (start 161.2392 68.8975) (end 161.7472 68.961) (layer F.SilkS) (width 0.12) (tstamp 647E6EEC)) 1475 | (gr_line (start 161.4932 70.358) (end 161.7472 70.485) (layer F.SilkS) (width 0.0692) (tstamp 647E743F)) 1476 | (gr_line (start 160.7312 69.088) (end 161.2392 68.8975) (layer F.SilkS) (width 0.12) (tstamp 647E6EEA)) 1477 | (gr_line (start 162.0012 69.6595) (end 162.3187 69.7865) (layer F.SilkS) (width 0.12) (tstamp 647E6EE9)) 1478 | (gr_line (start 162.2552 70.231) (end 162.0647 70.104) (layer F.SilkS) (width 0.0692) (tstamp 647E7484)) 1479 | (gr_line (start 161.4297 71.12) (end 161.3027 70.9295) (layer F.SilkS) (width 0.0692) (tstamp 647E74CC)) 1480 | (gr_line (start 162.3187 70.866) (end 162.1282 70.866) (layer F.SilkS) (width 0.0692) (tstamp 647E74B1)) 1481 | (gr_line (start 161.7472 70.739) (end 161.6202 70.739) (layer F.SilkS) (width 0.0692) (tstamp 647E74E1)) 1482 | (gr_line (start 162.0647 70.4215) (end 162.0012 70.485) (layer F.SilkS) (width 0.0692) (tstamp 647E7448)) 1483 | (gr_line (start 160.5407 69.7865) (end 160.9217 69.5325) (layer F.SilkS) (width 0.12) (tstamp 647E6EE3)) 1484 | (gr_line (start 161.6202 70.739) (end 161.5567 70.9295) (layer F.SilkS) (width 0.0692) (tstamp 647E74A5)) 1485 | (gr_line (start 162.0012 70.485) (end 162.2552 70.4215) (layer F.SilkS) (width 0.0692) (tstamp 647E7445)) 1486 | (gr_line (start 162.1282 70.8025) (end 161.9377 70.993) (layer F.SilkS) (width 0.0692) (tstamp 647E7442)) 1487 | (gr_line (start 161.8107 71.12) (end 161.4297 71.12) (layer F.SilkS) (width 0.0692) (tstamp 647E7451)) 1488 | (gr_line (start 162.1282 71.12) (end 162.3822 71.12) (layer F.SilkS) (width 0.0692) (tstamp 647E7433)) 1489 | (gr_line (start 162.1282 71.247) (end 162.1282 71.12) (layer F.SilkS) (width 0.0692) (tstamp 647E74F0)) 1490 | (gr_line (start 161.5567 70.9295) (end 161.8107 70.9295) (layer F.SilkS) (width 0.0692) (tstamp 647E74BD)) 1491 | (gr_line (start 161.8742 70.2945) (end 162.0647 70.4215) (layer F.SilkS) (width 0.0692) (tstamp 647E748D)) 1492 | (gr_line (start 162.8902 71.6915) (end 163.2712 69.85) (layer F.SilkS) (width 0.0946) (tstamp 647E6EDA)) 1493 | (gr_line (start 162.3187 70.1675) (end 162.2552 70.231) (layer F.SilkS) (width 0.0692) (tstamp 647E7463)) 1494 | (gr_line (start 160.5407 69.7865) (end 163.2712 69.7865) (layer F.SilkS) (width 0.12) (tstamp 647E6ED8)) 1495 | (gr_line (start 161.7472 68.961) (end 162.0647 69.7865) (layer F.SilkS) (width 0.12) (tstamp 647E6ED7)) 1496 | (gr_line (start 162.3822 71.12) (end 162.5727 70.739) (layer F.SilkS) (width 0.0692) (tstamp 647E74A8)) 1497 | (gr_line (start 160.5407 69.85) (end 160.9217 71.6915) (layer F.SilkS) (width 0.0946) (tstamp 647E6ED5)) 1498 | (gr_line (start 161.2392 68.8975) (end 161.6202 69.7865) (layer F.SilkS) (width 0.12) (tstamp 647E6ED4)) 1499 | (gr_line (start 162.1282 70.866) (end 162.1282 70.8025) (layer F.SilkS) (width 0.0692) (tstamp 647E744B)) 1500 | (gr_line (start 161.9377 70.993) (end 162.1282 71.247) (layer F.SilkS) (width 0.0692) (tstamp 647E74AE)) 1501 | (gr_line (start 162.9537 69.342) (end 162.2552 69.0245) (layer F.SilkS) (width 0.12) (tstamp 647E6ED1)) 1502 | (gr_line (start 162.9537 69.469) (end 163.2712 69.7865) (layer F.SilkS) (width 0.12) (tstamp 647E6ED0)) 1503 | (gr_line (start 161.5567 70.5485) (end 161.7472 70.739) (layer F.SilkS) (width 0.0692) (tstamp 647E74C9)) 1504 | (gr_line (start 161.3027 70.9295) (end 161.3662 70.6755) (layer F.SilkS) (width 0.0692) (tstamp 647E74DE)) 1505 | (gr_line (start 162.4457 70.485) (end 162.1917 70.612) (layer F.SilkS) (width 0.0692) (tstamp 647E7436)) 1506 | (gr_line (start 162.2552 69.0245) (end 162.0012 69.5325) (layer F.SilkS) (width 0.12) (tstamp 647E6ECC)) 1507 | (gr_line (start 162.2552 69.0245) (end 161.9377 69.215) (layer F.SilkS) (width 0.12) (tstamp 647E6ECB)) 1508 | (gr_line (start 162.2552 70.4215) (end 162.3187 70.1675) (layer F.SilkS) (width 0.0692) (tstamp 647E7439)) 1509 | (gr_line (start 161.7472 70.485) (end 161.8742 70.2945) (layer F.SilkS) (width 0.0692) (tstamp 647E74C3)) 1510 | (gr_line (start 160.9217 71.6915) (end 162.8902 71.6915) (layer F.SilkS) (width 0.0946) (tstamp 647E74F3)) 1511 | (gr_text "by ScrapComputing" (at 133.985 58.42) (layer B.SilkS) (tstamp 64903562) 1512 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1513 | ) 1514 | (gr_text rev0.4 (at 126.8095 58.4835) (layer B.SilkS) (tstamp 647F5D28) 1515 | (effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror)) 1516 | ) 1517 | (gr_text "Serial Mouse Blaster" (at 143.8275 58.42) (layer B.SilkS) (tstamp 647F5D21) 1518 | (effects (font (size 0.65 0.65) (thickness 0.1)) (justify mirror)) 1519 | ) 1520 | (gr_text "by ScrapComputing" (at 156.2735 71.8185) (layer F.SilkS) 1521 | (effects (font (size 0.6 0.6) (thickness 0.0992))) 1522 | ) 1523 | (gr_text rev0.4 (at 160.782 67.056) (layer F.SilkS) 1524 | (effects (font (size 1.2 1.2) (thickness 0.19))) 1525 | ) 1526 | (gr_text "Serial Mouse Blaster" (at 145.288 64.77) (layer F.SilkS) 1527 | (effects (font (size 1.954 1.954) (thickness 0.25))) 1528 | ) 1529 | (gr_text D+ (at 153.67 61.5315) (layer B.SilkS) (tstamp 648FB793) 1530 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1531 | ) 1532 | (gr_text D- (at 156.2735 61.5315) (layer B.SilkS) (tstamp 64903FB7) 1533 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1534 | ) 1535 | (gr_text PWR+ (at 158.8135 61.5315) (layer B.SilkS) (tstamp 648FB78D) 1536 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1537 | ) 1538 | (gr_text PWR- (at 151.003 61.4045) (layer B.SilkS) (tstamp 648FB733) 1539 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 1540 | ) 1541 | (gr_text USB (at 154.94 62.484) (layer B.SilkS) (tstamp 648FB730) 1542 | (effects (font (size 0.492 0.492) (thickness 0.0992)) (justify mirror)) 1543 | ) 1544 | (gr_text GND (at 150.114 75.057) (layer B.SilkS) (tstamp 647F5749) 1545 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1546 | ) 1547 | (gr_text DTR (at 152.7175 75.057) (layer B.SilkS) (tstamp 649030FD) 1548 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1549 | ) 1550 | (gr_text RTS (at 155.194 75.057) (layer B.SilkS) (tstamp 649030FA) 1551 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1552 | ) 1553 | (gr_text Tx (at 160.3756 75.0824) (layer B.SilkS) (tstamp 64903103) 1554 | (effects (font (size 0.6 0.6) (thickness 0.0992)) (justify mirror)) 1555 | ) 1556 | (gr_text "Serial Port" (at 155.6766 78.3082) (layer B.SilkS) (tstamp 648FB7EC) 1557 | (effects (font (size 0.45 0.45) (thickness 0.09)) (justify mirror)) 1558 | ) 1559 | (gr_text Zener (at 156.591 66.548 90) (layer B.SilkS) 1560 | (effects (font (size 0.492 0.492) (thickness 0.0992)) (justify mirror)) 1561 | ) 1562 | (gr_text 555 (at 132.334 68.7324 270) (layer B.SilkS) 1563 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 1564 | ) 1565 | (gr_text LM358 (at 149.606 65.024 270) (layer B.SilkS) 1566 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 1567 | ) 1568 | (gr_line (start 163.83 57.912) (end 163.83 78.613) (layer Edge.Cuts) (width 0.1) (tstamp 649021FC)) 1569 | (gr_line (start 125.0315 57.912) (end 163.83 57.912) (layer Edge.Cuts) (width 0.1) (tstamp 648FB77B)) 1570 | (gr_line (start 125.0188 78.6003) (end 125.0315 57.912) (layer Edge.Cuts) (width 0.1) (tstamp 648FB72D)) 1571 | (gr_line (start 163.83 78.613) (end 125.0188 78.6003) (layer Edge.Cuts) (width 0.1)) 1572 | 1573 | (segment (start 146.36 63.119) (end 153.36 63.119) (width 0.25) (layer B.Cu) (net 1)) 1574 | (segment (start 163.25201 73.67919) (end 160.274 76.6572) (width 0.25) (layer B.Cu) (net 1)) 1575 | (segment (start 163.25201 60.29582) (end 163.25201 73.67919) (width 0.25) (layer B.Cu) (net 1)) 1576 | (segment (start 162.91518 59.95899) (end 163.25201 60.29582) (width 0.25) (layer B.Cu) (net 1)) 1577 | (segment (start 161.18882 59.95899) (end 162.91518 59.95899) (width 0.25) (layer B.Cu) (net 1)) 1578 | (segment (start 159.65021 61.4976) (end 161.18882 59.95899) (width 0.25) (layer B.Cu) (net 1)) 1579 | (segment (start 154.9814 61.4976) (end 159.65021 61.4976) (width 0.25) (layer B.Cu) (net 1)) 1580 | (segment (start 153.36 63.119) (end 154.9814 61.4976) (width 0.25) (layer B.Cu) (net 1)) 1581 | (segment (start 145.136 63.119) (end 146.36 63.119) (width 0.25) (layer B.Cu) (net 1)) 1582 | (segment (start 143.7005 64.5545) (end 145.136 63.119) (width 0.25) (layer B.Cu) (net 1)) 1583 | (segment (start 146.431 71.723) (end 146.431 68.58) (width 0.25) (layer B.Cu) (net 1)) 1584 | (segment (start 146.431 68.58) (end 146.431 68.58) (width 0.25) (layer B.Cu) (net 1) (tstamp 64947561)) 1585 | (segment (start 146.431 68.58) (end 146.431 68.7705) (width 0.25) (layer F.Cu) (net 1) (tstamp 649487A2)) 1586 | (via (at 146.431 68.58) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) 1587 | (via (at 143.7005 65.913) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) 1588 | (segment (start 143.7005 64.491) (end 143.7005 65.913) (width 0.25) (layer B.Cu) (net 1)) 1589 | (segment (start 143.764 65.913) (end 146.431 68.58) (width 0.25) (layer F.Cu) (net 1)) 1590 | (segment (start 143.7005 65.913) (end 143.764 65.913) (width 0.25) (layer F.Cu) (net 1)) 1591 | (segment (start 140.17299 65.47851) (end 141.1605 64.491) (width 0.25) (layer B.Cu) (net 2)) 1592 | (segment (start 136.088 66.675) (end 137.28449 65.47851) (width 0.25) (layer B.Cu) (net 2)) 1593 | (segment (start 139.07501 65.47851) (end 140.17299 65.47851) (width 0.25) (layer B.Cu) (net 2)) 1594 | (segment (start 137.28449 65.47851) (end 139.07501 65.47851) (width 0.25) (layer B.Cu) (net 2)) 1595 | (segment (start 133.037588 67.945) (end 136.088 67.945) (width 0.25) (layer B.Cu) (net 3)) 1596 | (segment (start 131.767588 69.215) (end 133.037588 67.945) (width 0.25) (layer B.Cu) (net 3)) 1597 | (segment (start 129.088 69.215) (end 131.767588 69.215) (width 0.25) (layer B.Cu) (net 3)) 1598 | (segment (start 136.652 72.39) (end 134.366 72.39) (width 0.25) (layer F.Cu) (net 3)) 1599 | (segment (start 134.366 72.39) (end 131.191 69.215) (width 0.25) (layer F.Cu) (net 3)) 1600 | (segment (start 131.191 69.215) (end 131.064 69.088) (width 0.25) (layer F.Cu) (net 3) (tstamp 64901F4C)) 1601 | (via (at 131.191 69.215) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) 1602 | (segment (start 136.652 72.39) (end 136.7155 72.39) (width 0.25) (layer F.Cu) (net 3)) 1603 | (segment (start 136.7155 72.39) (end 137.9855 73.66) (width 0.25) (layer F.Cu) (net 3)) 1604 | (segment (start 137.9855 73.66) (end 140.208 73.66) (width 0.25) (layer F.Cu) (net 3)) 1605 | (segment (start 140.208 73.66) (end 140.208 73.66) (width 0.25) (layer F.Cu) (net 3) (tstamp 64944598)) 1606 | (via (at 140.208 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) 1607 | (segment (start 141.0208 72.8472) (end 140.208 73.66) (width 0.25) (layer B.Cu) (net 3)) 1608 | (segment (start 141.0208 72.11) (end 141.0208 72.8472) (width 0.25) (layer B.Cu) (net 3)) 1609 | (segment (start 138.684 64.491) (end 135.8515 64.491) (width 0.25) (layer B.Cu) (net 3)) 1610 | (segment (start 135.8515 64.491) (end 134.366 65.9765) (width 0.25) (layer B.Cu) (net 3)) 1611 | (segment (start 135.138 67.945) (end 136.088 67.945) (width 0.25) (layer B.Cu) (net 3)) 1612 | (segment (start 134.366 67.173) (end 135.138 67.945) (width 0.25) (layer B.Cu) (net 3)) 1613 | (segment (start 134.366 65.9765) (end 134.366 67.173) (width 0.25) (layer B.Cu) (net 3)) 1614 | (segment (start 133.35 69.342) (end 133.35 69.342) (width 0.25) (layer F.Cu) (net 4) (tstamp 648FFCEC)) 1615 | (via (at 133.35 69.342) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) 1616 | (segment (start 135.707 69.342) (end 135.834 69.215) (width 0.25) (layer B.Cu) (net 4)) 1617 | (segment (start 133.35 69.342) (end 135.707 69.342) (width 0.25) (layer B.Cu) (net 4)) 1618 | (segment (start 138.736 75.21) (end 138.456 74.93) (width 0.25) (layer B.Cu) (net 4)) 1619 | (segment (start 141.0208 75.21) (end 138.736 75.21) (width 0.25) (layer B.Cu) (net 4)) 1620 | (segment (start 138.43 74.904) (end 138.456 74.93) (width 0.25) (layer B.Cu) (net 4)) 1621 | (segment (start 133.35 69.342) (end 131.572 67.564) (width 0.25) (layer F.Cu) (net 4)) 1622 | (segment (start 131.572 67.564) (end 131.064 67.564) (width 0.25) (layer F.Cu) (net 4)) 1623 | (segment (start 131.064 67.564) (end 131.064 67.564) (width 0.25) (layer F.Cu) (net 4) (tstamp 64901861)) 1624 | (via (at 131.064 67.564) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) 1625 | (segment (start 130.683 67.945) (end 131.064 67.564) (width 0.25) (layer B.Cu) (net 4)) 1626 | (segment (start 128.834 67.945) (end 130.683 67.945) (width 0.25) (layer B.Cu) (net 4)) 1627 | (segment (start 135.961 69.342) (end 136.088 69.215) (width 0.25) (layer B.Cu) (net 4)) 1628 | (segment (start 133.35 69.342) (end 135.961 69.342) (width 0.25) (layer B.Cu) (net 4)) 1629 | (segment (start 138.456 74.93) (end 138.456 72.797) (width 0.25) (layer B.Cu) (net 4)) 1630 | (segment (start 138.456 72.797) (end 137.414 71.755) (width 0.25) (layer B.Cu) (net 4)) 1631 | (segment (start 137.414 71.755) (end 137.414 71.755) (width 0.25) (layer B.Cu) (net 4) (tstamp 649473EC)) 1632 | (via (at 137.414 71.755) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) 1633 | (segment (start 135.763 71.755) (end 133.35 69.342) (width 0.25) (layer F.Cu) (net 4)) 1634 | (segment (start 137.414 71.755) (end 135.763 71.755) (width 0.25) (layer F.Cu) (net 4)) 1635 | (segment (start 140.97 66.6345) (end 141.4375 66.6345) (width 0.25) (layer B.Cu) (net 4)) 1636 | (segment (start 140.97 66.6345) (end 141.374 66.6345) (width 0.25) (layer B.Cu) (net 4)) 1637 | (segment (start 141.374 66.6345) (end 142.46225 67.72275) (width 0.25) (layer B.Cu) (net 4)) 1638 | (via (at 142.46225 67.72275) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) 1639 | (segment (start 138.43 71.755) (end 142.46225 67.72275) (width 0.25) (layer F.Cu) (net 4)) 1640 | (segment (start 137.414 71.755) (end 138.43 71.755) (width 0.25) (layer F.Cu) (net 4)) 1641 | (segment (start 146.4183 72.936998) (end 146.4183 75.422) (width 0.25) (layer B.Cu) (net 5)) 1642 | (segment (start 146.128301 72.646999) (end 146.4183 72.936998) (width 0.25) (layer B.Cu) (net 5)) 1643 | (segment (start 144.808299 72.646999) (end 146.128301 72.646999) (width 0.25) (layer B.Cu) (net 5)) 1644 | (segment (start 144.370288 73.08501) (end 144.808299 72.646999) (width 0.25) (layer B.Cu) (net 5)) 1645 | (segment (start 142.55792 73.08501) (end 144.370288 73.08501) (width 0.25) (layer B.Cu) (net 5)) 1646 | (segment (start 142.22109 72.74818) (end 142.55792 73.08501) (width 0.25) (layer B.Cu) (net 5)) 1647 | (segment (start 142.22109 70.76059) (end 142.22109 72.74818) (width 0.25) (layer B.Cu) (net 5)) 1648 | (segment (start 140.97 69.5095) (end 142.22109 70.76059) (width 0.25) (layer B.Cu) (net 5)) 1649 | (segment (start 150.114 74.152) (end 150.0124 74.0504) (width 0.25) (layer B.Cu) (net 6)) 1650 | (segment (start 150.114 76.6572) (end 150.114 74.152) (width 0.25) (layer B.Cu) (net 6)) 1651 | (segment (start 142.22109 75.8479) (end 142.22109 74.57182) (width 0.25) (layer B.Cu) (net 6)) 1652 | (segment (start 142.22109 74.57182) (end 142.55792 74.23499) (width 0.25) (layer B.Cu) (net 6)) 1653 | (segment (start 137.26101 76.18501) (end 141.88398 76.18501) (width 0.25) (layer B.Cu) (net 6)) 1654 | (segment (start 136.006 74.93) (end 137.26101 76.18501) (width 0.25) (layer B.Cu) (net 6)) 1655 | (segment (start 142.55792 74.23499) (end 144.45301 74.23499) (width 0.25) (layer B.Cu) (net 6)) 1656 | (segment (start 141.88398 76.18501) (end 142.22109 75.8479) (width 0.25) (layer B.Cu) (net 6)) 1657 | (segment (start 135.356 74.93) (end 136.006 74.93) (width 0.25) (layer B.Cu) (net 6)) 1658 | (segment (start 135.46299 71.11001) (end 136.088 70.485) (width 0.25) (layer B.Cu) (net 6)) 1659 | (segment (start 128.091242 71.11001) (end 135.46299 71.11001) (width 0.25) (layer B.Cu) (net 6)) 1660 | (segment (start 127.81299 70.831758) (end 128.091242 71.11001) (width 0.25) (layer B.Cu) (net 6)) 1661 | (segment (start 127.81299 67.00001) (end 127.81299 70.831758) (width 0.25) (layer B.Cu) (net 6)) 1662 | (segment (start 128.138 66.675) (end 127.81299 67.00001) (width 0.25) (layer B.Cu) (net 6)) 1663 | (segment (start 129.088 66.675) (end 128.138 66.675) (width 0.25) (layer B.Cu) (net 6)) 1664 | (segment (start 135.356 71.217) (end 136.088 70.485) (width 0.25) (layer B.Cu) (net 6)) 1665 | (segment (start 135.356 74.93) (end 135.356 71.217) (width 0.25) (layer B.Cu) (net 6)) 1666 | (via (at 133.223 66.675) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6)) 1667 | (via (at 160.782 70.612) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6)) 1668 | (via (at 162.306 76.073) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6)) 1669 | (segment (start 145.266 73.422) (end 144.45301 74.23499) (width 0.25) (layer B.Cu) (net 6)) 1670 | (segment (start 145.4683 73.422) (end 145.266 73.422) (width 0.25) (layer B.Cu) (net 6)) 1671 | (segment (start 162.306 76.910202) (end 162.306 76.073) (width 0.25) (layer F.Cu) (net 6)) 1672 | (segment (start 161.384001 77.832201) (end 162.306 76.910202) (width 0.25) (layer F.Cu) (net 6)) 1673 | (segment (start 151.289001 77.832201) (end 161.384001 77.832201) (width 0.25) (layer F.Cu) (net 6)) 1674 | (segment (start 150.114 76.6572) (end 151.289001 77.832201) (width 0.25) (layer F.Cu) (net 6)) 1675 | (segment (start 162.306 72.136) (end 160.782 70.612) (width 0.25) (layer F.Cu) (net 6)) 1676 | (segment (start 162.306 76.073) (end 162.306 72.136) (width 0.25) (layer F.Cu) (net 6)) 1677 | (segment (start 129.088 66.675) (end 133.223 66.675) (width 0.25) (layer B.Cu) (net 6)) 1678 | (segment (start 148.630999 78.140201) (end 150.114 76.6572) (width 0.25) (layer B.Cu) (net 6)) 1679 | (segment (start 146.191599 78.140201) (end 148.630999 78.140201) (width 0.25) (layer B.Cu) (net 6)) 1680 | (segment (start 145.684599 77.633201) (end 146.191599 78.140201) (width 0.25) (layer B.Cu) (net 6)) 1681 | (segment (start 145.684599 76.123301) (end 145.684599 77.633201) (width 0.25) (layer B.Cu) (net 6)) 1682 | (segment (start 144.67826 74.46024) (end 144.67826 75.116962) (width 0.25) (layer B.Cu) (net 6)) 1683 | (segment (start 144.67826 75.116962) (end 145.684599 76.123301) (width 0.25) (layer B.Cu) (net 6)) 1684 | (segment (start 144.45301 74.23499) (end 144.67826 74.46024) (width 0.25) (layer B.Cu) (net 6)) 1685 | (segment (start 137.7085 70.485) (end 138.4945 69.699) (width 0.25) (layer B.Cu) (net 6)) 1686 | (segment (start 136.088 70.485) (end 137.7085 70.485) (width 0.25) (layer B.Cu) (net 6)) 1687 | (segment (start 157.226 74.6252) (end 157.226 74.0504) (width 0.25) (layer B.Cu) (net 7)) 1688 | (segment (start 155.194 76.6572) (end 157.226 74.6252) (width 0.25) (layer B.Cu) (net 7)) 1689 | (segment (start 157.9082 74.0504) (end 157.226 74.0504) (width 0.25) (layer B.Cu) (net 7)) 1690 | (segment (start 159.9082 72.0504) (end 157.9082 74.0504) (width 0.25) (layer B.Cu) (net 7)) 1691 | (segment (start 152.654 76.6572) (end 152.654 75.184) (width 0.25) (layer B.Cu) (net 8)) 1692 | (segment (start 153.6192 74.2188) (end 153.6192 74.0504) (width 0.25) (layer B.Cu) (net 8)) 1693 | (segment (start 152.654 75.184) (end 153.6192 74.2188) (width 0.25) (layer B.Cu) (net 8)) 1694 | (segment (start 153.394201 72.310403) (end 153.394201 71.326201) (width 0.25) (layer B.Cu) (net 9)) 1695 | (segment (start 154.344201 73.260403) (end 153.394201 72.310403) (width 0.25) (layer B.Cu) (net 9)) 1696 | (segment (start 154.344201 74.760401) (end 154.344201 73.260403) (width 0.25) (layer B.Cu) (net 9)) 1697 | (segment (start 153.394201 71.326201) (end 151.918 69.85) (width 0.25) (layer B.Cu) (net 9)) 1698 | (segment (start 154.018999 75.085603) (end 154.344201 74.760401) (width 0.25) (layer B.Cu) (net 9)) 1699 | (segment (start 156.558999 77.832201) (end 154.629999 77.832201) (width 0.25) (layer B.Cu) (net 9)) 1700 | (segment (start 154.018999 77.221201) (end 154.018999 75.085603) (width 0.25) (layer B.Cu) (net 9)) 1701 | (segment (start 154.629999 77.832201) (end 154.018999 77.221201) (width 0.25) (layer B.Cu) (net 9)) 1702 | (segment (start 157.734 76.6572) (end 156.558999 77.832201) (width 0.25) (layer B.Cu) (net 9)) 1703 | (segment (start 148.818 69.387) (end 146.36 66.929) (width 0.25) (layer B.Cu) (net 10)) 1704 | (segment (start 148.818 69.85) (end 148.818 69.387) (width 0.25) (layer B.Cu) (net 10)) 1705 | (segment (start 143.4211 72.11) (end 144.51001 71.02109) (width 0.25) (layer B.Cu) (net 11)) 1706 | (segment (start 144.68452 65.659) (end 144.51001 65.83351) (width 0.25) (layer B.Cu) (net 11)) 1707 | (segment (start 146.36 65.659) (end 144.68452 65.659) (width 0.25) (layer B.Cu) (net 11)) 1708 | (segment (start 144.51001 71.02109) (end 144.51001 65.83351) (width 0.25) (layer B.Cu) (net 11)) 1709 | (segment (start 143.144599 75.486501) (end 143.4211 75.21) (width 0.25) (layer B.Cu) (net 12)) 1710 | (segment (start 143.144599 77.043203) (end 143.144599 75.486501) (width 0.25) (layer B.Cu) (net 12)) 1711 | (segment (start 142.047601 78.140201) (end 143.144599 77.043203) (width 0.25) (layer B.Cu) (net 12)) 1712 | (segment (start 140.014601 78.140201) (end 142.047601 78.140201) (width 0.25) (layer B.Cu) (net 12)) 1713 | (segment (start 139.0396 77.1652) (end 140.014601 78.140201) (width 0.25) (layer B.Cu) (net 12)) 1714 | (segment (start 159.7648 66.0267) (end 159.5755 65.8374) (width 0.25) (layer B.Cu) (net 13)) 1715 | (segment (start 161.8996 66.0267) (end 159.7648 66.0267) (width 0.25) (layer B.Cu) (net 13)) 1716 | (segment (start 161.798 67.564) (end 161.798 67.564) (width 0.25) (layer F.Cu) (net 13) (tstamp 64900D3F)) 1717 | (via (at 161.798 67.564) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 13)) 1718 | (segment (start 161.798 66.1283) (end 161.8996 66.0267) (width 0.25) (layer B.Cu) (net 13)) 1719 | (segment (start 161.798 67.564) (end 161.798 66.1283) (width 0.25) (layer B.Cu) (net 13)) 1720 | (segment (start 161.8754 65.8374) (end 162.052 66.014) (width 0.25) (layer B.Cu) (net 13)) 1721 | (segment (start 159.5755 65.8374) (end 161.8754 65.8374) (width 0.25) (layer B.Cu) (net 13)) 1722 | (segment (start 162.052 67.31) (end 161.798 67.564) (width 0.25) (layer B.Cu) (net 13)) 1723 | (segment (start 162.052 66.014) (end 162.052 67.31) (width 0.25) (layer B.Cu) (net 13)) 1724 | (segment (start 160.539498 67.564) (end 161.798 67.564) (width 0.25) (layer F.Cu) (net 13)) 1725 | (segment (start 152.621299 75.482199) (end 160.539498 67.564) (width 0.25) (layer F.Cu) (net 13)) 1726 | (segment (start 148.342601 75.482199) (end 152.621299 75.482199) (width 0.25) (layer F.Cu) (net 13)) 1727 | (segment (start 146.6596 77.1652) (end 148.342601 75.482199) (width 0.25) (layer F.Cu) (net 13)) 1728 | (segment (start 160.2486 62.7374) (end 162.052 60.934) (width 0.25) (layer B.Cu) (net 14)) 1729 | (segment (start 159.5755 62.7374) (end 160.2486 62.7374) (width 0.25) (layer B.Cu) (net 14)) 1730 | (segment (start 156.972 62.992) (end 157.2266 62.7374) (width 0.25) (layer B.Cu) (net 14)) 1731 | (segment (start 155.702 62.992) (end 156.972 62.992) (width 0.25) (layer B.Cu) (net 14)) 1732 | (segment (start 157.2266 62.7374) (end 159.5755 62.7374) (width 0.25) (layer B.Cu) (net 14)) 1733 | (segment (start 154.94999 63.74401) (end 155.702 62.992) (width 0.25) (layer B.Cu) (net 14)) 1734 | (segment (start 147.00499 63.74401) (end 154.94999 63.74401) (width 0.25) (layer B.Cu) (net 14)) 1735 | (segment (start 146.36 64.389) (end 147.00499 63.74401) (width 0.25) (layer B.Cu) (net 14)) 1736 | (segment (start 132.46779 58.33701) (end 131.4196 59.3852) (width 0.35) (layer F.Cu) (net 15)) 1737 | (segment (start 143.07141 58.33701) (end 132.46779 58.33701) (width 0.35) (layer F.Cu) (net 15) (tstamp 64907F72)) 1738 | (segment (start 144.1196 59.3852) (end 143.07141 58.33701) (width 0.35) (layer F.Cu) (net 15)) 1739 | (segment (start 128.016 72.644) (end 130.556 72.644) (width 0.25) (layer B.Cu) (net 15)) 1740 | (segment (start 125.464599 70.092599) (end 128.016 72.644) (width 0.25) (layer B.Cu) (net 15)) 1741 | (segment (start 130.556 72.644) (end 132.08 74.168) (width 0.25) (layer B.Cu) (net 15)) 1742 | (segment (start 131.4196 74.8284) (end 132.08 74.168) (width 0.25) (layer F.Cu) (net 15)) 1743 | (segment (start 131.4196 77.1652) (end 131.4196 74.8284) (width 0.25) (layer F.Cu) (net 15)) 1744 | (segment (start 159.766 64.262) (end 159.766 64.262) (width 0.35) (layer F.Cu) (net 15) (tstamp 649010EC)) 1745 | (via (at 159.766 64.262) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15)) 1746 | (segment (start 159.994 64.034) (end 159.766 64.262) (width 0.35) (layer B.Cu) (net 15)) 1747 | (segment (start 162.052 64.034) (end 159.994 64.034) (width 0.35) (layer B.Cu) (net 15)) 1748 | (segment (start 158.8 64.262) (end 159.766 64.262) (width 0.35) (layer B.Cu) (net 15)) 1749 | (segment (start 157.464 65.598) (end 158.8 64.262) (width 0.35) (layer B.Cu) (net 15)) 1750 | (segment (start 156.638999 66.423001) (end 157.464 65.598) (width 0.35) (layer B.Cu) (net 15)) 1751 | (segment (start 156.638999 69.338799) (end 156.638999 66.423001) (width 0.35) (layer B.Cu) (net 15)) 1752 | (segment (start 157.0359 71.2905) (end 156.276 72.0504) (width 0.35) (layer B.Cu) (net 15)) 1753 | (segment (start 157.0359 69.7357) (end 157.0359 71.2905) (width 0.35) (layer B.Cu) (net 15)) 1754 | (segment (start 144.1196 77.1652) (end 150.4188 70.866) (width 0.25) (layer F.Cu) (net 15)) 1755 | (segment (start 150.4188 70.866) (end 150.622 70.866) (width 0.25) (layer F.Cu) (net 15)) 1756 | (segment (start 150.622 70.866) (end 150.622 70.866) (width 0.25) (layer F.Cu) (net 15) (tstamp 64901546)) 1757 | (via (at 151.0665 70.485) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15)) 1758 | (segment (start 157.226 64.262) (end 159.766 64.262) (width 0.25) (layer F.Cu) (net 15)) 1759 | (segment (start 150.622 70.866) (end 157.226 64.262) (width 0.25) (layer F.Cu) (net 15)) 1760 | (segment (start 160.528 63.5) (end 159.766 64.262) (width 0.25) (layer F.Cu) (net 15)) 1761 | (segment (start 160.528 59.233798) (end 160.528 63.5) (width 0.25) (layer F.Cu) (net 15)) 1762 | (segment (start 125.464599 66.257199) (end 125.464599 70.092599) (width 0.25) (layer B.Cu) (net 15)) 1763 | (segment (start 127.3302 63.5348) (end 127.3302 64.391598) (width 0.25) (layer B.Cu) (net 15)) 1764 | (segment (start 127.3302 64.391598) (end 126.671099 65.050699) (width 0.25) (layer B.Cu) (net 15)) 1765 | (segment (start 125.464599 66.257199) (end 126.671099 65.050699) (width 0.25) (layer B.Cu) (net 15)) 1766 | (segment (start 130.045001 60.759799) (end 131.4196 59.3852) (width 0.25) (layer B.Cu) (net 15)) 1767 | (segment (start 127.620199 60.759799) (end 130.045001 60.759799) (width 0.25) (layer B.Cu) (net 15)) 1768 | (segment (start 127.3302 61.049798) (end 127.620199 60.759799) (width 0.25) (layer B.Cu) (net 15)) 1769 | (segment (start 127.3302 63.5348) (end 127.3302 61.049798) (width 0.25) (layer B.Cu) (net 15)) 1770 | (segment (start 130.181799 60.759799) (end 130.8265 61.4045) (width 0.25) (layer B.Cu) (net 15)) 1771 | (segment (start 130.045001 60.759799) (end 130.181799 60.759799) (width 0.25) (layer B.Cu) (net 15)) 1772 | (segment (start 145.144601 58.360199) (end 149.749399 58.360199) (width 0.35) (layer F.Cu) (net 15)) 1773 | (segment (start 144.1196 59.3852) (end 145.144601 58.360199) (width 0.35) (layer F.Cu) (net 15)) 1774 | (segment (start 157.1502 69.85) (end 156.8706 69.5704) (width 0.35) (layer B.Cu) (net 15)) 1775 | (segment (start 156.8706 69.5704) (end 156.638999 69.338799) (width 0.35) (layer B.Cu) (net 15)) 1776 | (segment (start 157.0359 69.7357) (end 156.8706 69.5704) (width 0.35) (layer B.Cu) (net 15)) 1777 | (segment (start 152.6319 72.0504) (end 151.0665 70.485) (width 0.25) (layer B.Cu) (net 15)) 1778 | (segment (start 152.6692 72.0504) (end 152.6319 72.0504) (width 0.25) (layer B.Cu) (net 15)) 1779 | (segment (start 151.0665 70.5841) (end 151.0665 70.485) (width 0.25) (layer B.Cu) (net 15)) 1780 | (segment (start 149.6002 72.0504) (end 151.0665 70.5841) (width 0.25) (layer B.Cu) (net 15)) 1781 | (segment (start 149.0624 72.0504) (end 149.6002 72.0504) (width 0.25) (layer B.Cu) (net 15)) 1782 | (segment (start 150.495 59.0169) (end 151.2316 59.7535) (width 0.25) (layer F.Cu) (net 15)) 1783 | (segment (start 150.4061 59.0169) (end 150.495 59.0169) (width 0.25) (layer F.Cu) (net 15)) 1784 | (segment (start 149.749399 58.360199) (end 150.4061 59.0169) (width 0.35) (layer F.Cu) (net 15)) 1785 | (segment (start 150.4061 59.0169) (end 151.2316 59.8424) (width 0.35) (layer F.Cu) (net 15)) 1786 | (segment (start 159.872701 58.578499) (end 160.438601 59.144399) (width 0.25) (layer F.Cu) (net 15)) 1787 | (segment (start 152.406601 58.578499) (end 159.872701 58.578499) (width 0.25) (layer F.Cu) (net 15)) 1788 | (segment (start 151.2316 59.7535) (end 152.406601 58.578499) (width 0.25) (layer F.Cu) (net 15)) 1789 | (segment (start 160.438601 59.144399) (end 160.528 59.233798) (width 0.25) (layer F.Cu) (net 15)) 1790 | (segment (start 152.596599 61.017401) (end 153.7716 59.8424) (width 0.25) (layer F.Cu) (net 16)) 1791 | (segment (start 150.227999 61.017401) (end 152.596599 61.017401) (width 0.25) (layer F.Cu) (net 16)) 1792 | (segment (start 126.3396 69.5452) (end 125.464599 68.670199) (width 0.25) (layer F.Cu) (net 16)) 1793 | (segment (start 125.464599 68.670199) (end 125.464599 66.585199) (width 0.25) (layer F.Cu) (net 16)) 1794 | (segment (start 130.3655 60.0075) (end 130.598898 60.0075) (width 0.25) (layer F.Cu) (net 16)) 1795 | (segment (start 125.464599 66.585199) (end 127.314601 64.735197) (width 0.25) (layer F.Cu) (net 16)) 1796 | (segment (start 127.314601 64.735197) (end 127.314601 59.507197) (width 0.25) (layer F.Cu) (net 16)) 1797 | (segment (start 129.854601 58.917199) (end 129.854601 59.496601) (width 0.25) (layer F.Cu) (net 16)) 1798 | (segment (start 127.314601 59.507197) (end 128.411599 58.410199) (width 0.25) (layer F.Cu) (net 16)) 1799 | (segment (start 129.347601 58.410199) (end 129.854601 58.917199) (width 0.25) (layer F.Cu) (net 16)) 1800 | (segment (start 129.854601 59.496601) (end 130.3655 60.0075) (width 0.25) (layer F.Cu) (net 16)) 1801 | (segment (start 128.411599 58.410199) (end 129.347601 58.410199) (width 0.25) (layer F.Cu) (net 16)) 1802 | (segment (start 130.951599 60.360201) (end 149.570799 60.360201) (width 0.25) (layer F.Cu) (net 16)) 1803 | (segment (start 149.570799 60.360201) (end 150.227999 61.017401) (width 0.25) (layer F.Cu) (net 16)) 1804 | (segment (start 130.598898 60.0075) (end 130.951599 60.360201) (width 0.25) (layer F.Cu) (net 16)) 1805 | (segment (start 152.596599 60.928501) (end 152.596599 61.017401) (width 0.25) (layer F.Cu) (net 16)) 1806 | (segment (start 153.7716 59.7535) (end 152.596599 60.928501) (width 0.25) (layer F.Cu) (net 16)) 1807 | (segment (start 133.491599 58.410199) (end 154.968299 58.410199) (width 0.25) (layer B.Cu) (net 17)) 1808 | (segment (start 132.984599 58.917199) (end 133.491599 58.410199) (width 0.25) (layer B.Cu) (net 17)) 1809 | (segment (start 128.0668 65.278) (end 132.1435 65.278) (width 0.25) (layer B.Cu) (net 17)) 1810 | (segment (start 154.968299 58.410199) (end 156.3116 59.7535) (width 0.25) (layer B.Cu) (net 17)) 1811 | (segment (start 132.984599 64.436901) (end 132.984599 58.917199) (width 0.25) (layer B.Cu) (net 17)) 1812 | (segment (start 132.1435 65.278) (end 132.984599 64.436901) (width 0.25) (layer B.Cu) (net 17)) 1813 | (segment (start 126.3396 67.0052) (end 128.0668 65.278) (width 0.25) (layer B.Cu) (net 17)) 1814 | (segment (start 155.344201 72.825401) (end 154.5692 72.0504) (width 0.25) (layer B.Cu) (net 18)) 1815 | (segment (start 157.015997 72.825401) (end 155.344201 72.825401) (width 0.25) (layer B.Cu) (net 18)) 1816 | (segment (start 157.790998 72.0504) (end 157.015997 72.825401) (width 0.25) (layer B.Cu) (net 18)) 1817 | (segment (start 158.176 72.0504) (end 157.790998 72.0504) (width 0.25) (layer B.Cu) (net 18)) 1818 | (segment (start 155.083 66.929) (end 155.464 66.548) (width 0.25) (layer B.Cu) (net 18)) 1819 | (segment (start 153.36 66.929) (end 155.083 66.929) (width 0.25) (layer B.Cu) (net 18)) 1820 | (segment (start 155.464 65.543) (end 155.464 66.548) (width 0.25) (layer B.Cu) (net 18)) 1821 | (segment (start 154.31 64.389) (end 155.464 65.543) (width 0.25) (layer B.Cu) (net 18)) 1822 | (segment (start 153.36 64.389) (end 154.31 64.389) (width 0.25) (layer B.Cu) (net 18)) 1823 | (segment (start 150.622 64.77) (end 153.162 62.23) (width 0.35) (layer F.Cu) (net 18)) 1824 | (segment (start 150.622 65.024) (end 150.622 64.77) (width 0.35) (layer F.Cu) (net 18)) 1825 | (segment (start 153.162 62.23) (end 156.5656 62.23) (width 0.35) (layer F.Cu) (net 18)) 1826 | (segment (start 150.622 65.024) (end 150.622 65.024) (width 0.35) (layer F.Cu) (net 18) (tstamp 649004CF)) 1827 | (via (at 150.622 65.024) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18)) 1828 | (segment (start 152.527 66.929) (end 153.36 66.929) (width 0.35) (layer B.Cu) (net 18)) 1829 | (segment (start 150.622 65.024) (end 152.527 66.929) (width 0.35) (layer B.Cu) (net 18)) 1830 | (segment (start 150.137399 72.875401) (end 150.9624 72.0504) (width 0.35) (layer B.Cu) (net 18)) 1831 | (segment (start 152.019 66.929) (end 153.36 66.929) (width 0.25) (layer B.Cu) (net 18)) 1832 | (segment (start 126.3802 61.5348) (end 126.3802 60.624401) (width 0.25) (layer B.Cu) (net 18)) 1833 | (segment (start 126.807601 60.360201) (end 127.5842 59.583602) (width 0.25) (layer B.Cu) (net 18)) 1834 | (segment (start 126.6444 60.360201) (end 126.807601 60.360201) (width 0.25) (layer B.Cu) (net 18)) 1835 | (segment (start 126.3802 60.624401) (end 126.6444 60.360201) (width 0.25) (layer B.Cu) (net 18)) 1836 | (segment (start 128.681198 59.583602) (end 128.8796 59.3852) (width 0.25) (layer B.Cu) (net 18)) 1837 | (segment (start 127.5842 59.583602) (end 128.681198 59.583602) (width 0.25) (layer B.Cu) (net 18)) 1838 | (segment (start 148.337399 72.760401) (end 148.452399 72.875401) (width 0.25) (layer B.Cu) (net 18)) 1839 | (segment (start 148.612599 72.875401) (end 150.137399 72.875401) (width 0.35) (layer B.Cu) (net 18)) 1840 | (segment (start 148.206001 72.875401) (end 148.612599 72.875401) (width 0.35) (layer B.Cu) (net 18)) 1841 | (segment (start 148.452399 72.875401) (end 148.612599 72.875401) (width 0.25) (layer B.Cu) (net 18)) 1842 | (segment (start 147.914899 72.875401) (end 147.3683 73.422) (width 0.25) (layer B.Cu) (net 18)) 1843 | (segment (start 148.452399 72.875401) (end 147.914899 72.875401) (width 0.25) (layer B.Cu) (net 18)) 1844 | (segment (start 129.7432 61.764202) (end 130.358499 62.379501) (width 0.35) (layer F.Cu) (net 18)) 1845 | (segment (start 129.7432 60.2488) (end 129.7432 61.764202) (width 0.35) (layer F.Cu) (net 18)) 1846 | (segment (start 128.8796 59.3852) (end 129.7432 60.2488) (width 0.35) (layer F.Cu) (net 18)) 1847 | (segment (start 147.381 69.723) (end 147.381 69.8475) (width 0.25) (layer B.Cu) (net 18)) 1848 | (segment (start 147.381 69.8475) (end 148.337399 70.803899) (width 0.25) (layer B.Cu) (net 18)) 1849 | (segment (start 148.337399 71.438899) (end 148.337399 72.760401) (width 0.25) (layer B.Cu) (net 18)) 1850 | (segment (start 146.916499 61.318499) (end 150.20925 64.61125) (width 0.35) (layer F.Cu) (net 18)) 1851 | (segment (start 141.990003 61.318499) (end 145.691501 61.318499) (width 0.35) (layer F.Cu) (net 18)) 1852 | (segment (start 140.929001 62.379501) (end 141.990003 61.318499) (width 0.35) (layer F.Cu) (net 18)) 1853 | (segment (start 150.20925 64.61125) (end 150.622 65.024) (width 0.35) (layer F.Cu) (net 18)) 1854 | (segment (start 130.358499 62.379501) (end 140.929001 62.379501) (width 0.35) (layer F.Cu) (net 18)) 1855 | (segment (start 148.459308 71.11351) (end 148.337399 70.991601) (width 0.25) (layer B.Cu) (net 18)) 1856 | (segment (start 150.23751 70.240988) (end 150.23751 70.77668) (width 0.25) (layer B.Cu) (net 18)) 1857 | (segment (start 150.65375 68.29425) (end 150.65375 69.824748) (width 0.25) (layer B.Cu) (net 18)) 1858 | (segment (start 150.23751 70.77668) (end 149.90068 71.11351) (width 0.25) (layer B.Cu) (net 18)) 1859 | (segment (start 150.65375 69.824748) (end 150.23751 70.240988) (width 0.25) (layer B.Cu) (net 18)) 1860 | (segment (start 148.337399 70.991601) (end 148.337399 71.438899) (width 0.25) (layer B.Cu) (net 18)) 1861 | (segment (start 148.337399 70.803899) (end 148.337399 70.991601) (width 0.25) (layer B.Cu) (net 18)) 1862 | (segment (start 149.90068 71.11351) (end 148.459308 71.11351) (width 0.25) (layer B.Cu) (net 18)) 1863 | (segment (start 150.65375 68.29425) (end 152.019 66.929) (width 0.25) (layer B.Cu) (net 18)) 1864 | (segment (start 153.36 68.5875) (end 154.6225 69.85) (width 0.25) (layer B.Cu) (net 18)) 1865 | (segment (start 153.36 66.929) (end 153.36 68.5875) (width 0.25) (layer B.Cu) (net 18)) 1866 | (segment (start 154.6225 71.9971) (end 154.5692 72.0504) (width 0.25) (layer B.Cu) (net 18)) 1867 | (segment (start 154.6225 69.85) (end 154.6225 71.9971) (width 0.25) (layer B.Cu) (net 18)) 1868 | (segment (start 145.691501 61.318499) (end 146.916499 61.318499) (width 0.35) (layer F.Cu) (net 18) (tstamp 649472EE)) 1869 | (via (at 145.691501 61.318499) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18)) 1870 | (segment (start 145.5805 61.4295) (end 145.691501 61.318499) (width 0.25) (layer B.Cu) (net 18)) 1871 | (segment (start 143.7005 61.4295) (end 145.5805 61.4295) (width 0.25) (layer B.Cu) (net 18)) 1872 | (segment (start 158.8516 59.944) (end 156.5656 62.23) (width 0.35) (layer F.Cu) (net 18)) 1873 | (segment (start 158.8516 59.7535) (end 158.8516 59.944) (width 0.35) (layer F.Cu) (net 18)) 1874 | (segment (start 128.8796 74.8284) (end 129.54 74.168) (width 0.25) (layer F.Cu) (net 19)) 1875 | (segment (start 128.8796 77.1652) (end 128.8796 74.8284) (width 0.25) (layer F.Cu) (net 19)) 1876 | (segment (start 126.3396 74.8284) (end 127 74.168) (width 0.25) (layer F.Cu) (net 20)) 1877 | (segment (start 126.3396 77.1652) (end 126.3396 74.8284) (width 0.25) (layer F.Cu) (net 20)) 1878 | (segment (start 161.8996 71.959) (end 161.8082 72.0504) (width 0.25) (layer B.Cu) (net 21)) 1879 | (segment (start 161.8996 69.1267) (end 161.8996 71.959) (width 0.25) (layer B.Cu) (net 21)) 1880 | (segment (start 162.052 71.8066) (end 161.8082 72.0504) (width 0.25) (layer B.Cu) (net 21)) 1881 | (segment (start 162.052 69.114) (end 162.052 71.8066) (width 0.25) (layer B.Cu) (net 21)) 1882 | (segment (start 134.3791 63.881) (end 134.3791 61.4934) (width 0.25) (layer B.Cu) (net 22)) 1883 | (segment (start 133.9596 61.2394) (end 134.2644 61.5442) (width 0.25) (layer B.Cu) (net 22)) 1884 | (segment (start 133.9596 59.3852) (end 133.9596 61.2394) (width 0.25) (layer B.Cu) (net 22)) 1885 | (segment (start 130.6264 63.881) (end 128.2802 61.5348) (width 0.25) (layer B.Cu) (net 23)) 1886 | (segment (start 131.2541 63.881) (end 130.6264 63.881) (width 0.25) (layer B.Cu) (net 23)) 1887 | (segment (start 141.224 61.4295) (end 138.684 61.4295) (width 0.25) (layer B.Cu) (net 24)) 1888 | (segment (start 145.415 68.6435) (end 145.415 68.6435) (width 0.25) (layer F.Cu) (net 24) (tstamp 649446CE)) 1889 | (via (at 145.415 68.6435) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24)) 1890 | (segment (start 145.415 69.8635) (end 145.481 69.9295) (width 0.25) (layer B.Cu) (net 24)) 1891 | (segment (start 145.415 68.6435) (end 145.415 69.8635) (width 0.25) (layer B.Cu) (net 24)) 1892 | (segment (start 138.684 66.6345) (end 138.684 66.990748) (width 0.25) (layer B.Cu) (net 24)) 1893 | (segment (start 131.133998 70.485) (end 129.088 70.485) (width 0.25) (layer B.Cu) (net 24)) 1894 | (segment (start 133.029008 68.58999) (end 131.133998 70.485) (width 0.25) (layer B.Cu) (net 24)) 1895 | (segment (start 137.064778 68.58999) (end 133.029008 68.58999) (width 0.25) (layer B.Cu) (net 24)) 1896 | (segment (start 138.684 66.970768) (end 137.064778 68.58999) (width 0.25) (layer B.Cu) (net 24)) 1897 | (segment (start 138.684 66.6345) (end 138.684 66.970768) (width 0.25) (layer B.Cu) (net 24)) 1898 | (segment (start 141.1605 61.366) (end 142.47549 62.68099) (width 0.25) (layer B.Cu) (net 24)) 1899 | (segment (start 145.415 68.6435) (end 144.018 67.2465) (width 0.25) (layer F.Cu) (net 24)) 1900 | (segment (start 144.018 67.2465) (end 143.637 67.2465) (width 0.25) (layer F.Cu) (net 24)) 1901 | (segment (start 143.637 67.2465) (end 143.5735 67.2465) (width 0.25) (layer F.Cu) (net 24) (tstamp 6494824F)) 1902 | (via (at 143.637 67.2465) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24)) 1903 | (segment (start 142.47549 66.650675) (end 142.47549 65.86801) (width 0.25) (layer B.Cu) (net 24)) 1904 | (segment (start 143.071315 67.2465) (end 142.47549 66.650675) (width 0.25) (layer B.Cu) (net 24)) 1905 | (segment (start 143.637 67.2465) (end 143.071315 67.2465) (width 0.25) (layer B.Cu) (net 24)) 1906 | (segment (start 142.47549 62.68099) (end 142.47549 65.86801) (width 0.25) (layer B.Cu) (net 24)) 1907 | (segment (start 139.79651 67.74701) (end 138.684 66.6345) (width 0.25) (layer B.Cu) (net 24)) 1908 | (segment (start 140.9832 67.74701) (end 139.79651 67.74701) (width 0.25) (layer B.Cu) (net 24)) 1909 | (segment (start 141.68919 68.453) (end 140.9832 67.74701) (width 0.25) (layer B.Cu) (net 24)) 1910 | (segment (start 142.996185 68.453) (end 141.68919 68.453) (width 0.25) (layer B.Cu) (net 24)) 1911 | (segment (start 143.637 67.812185) (end 142.996185 68.453) (width 0.25) (layer B.Cu) (net 24)) 1912 | (segment (start 143.637 67.2465) (end 143.637 67.812185) (width 0.25) (layer B.Cu) (net 24)) 1913 | 1914 | (zone (net 6) (net_name /GND) (layer F.Cu) (tstamp 649488AA) (hatch edge 0.508) 1915 | (connect_pads (clearance 0.508)) 1916 | (min_thickness 0.254) 1917 | (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 1918 | (polygon 1919 | (pts 1920 | (xy 163.8935 78.74) (xy 124.9045 78.74) (xy 124.9045 58.039) (xy 163.8935 58.039) 1921 | ) 1922 | ) 1923 | (filled_polygon 1924 | (pts 1925 | (xy 163.145001 77.927777) (xy 161.600719 77.927271) (xy 161.654537 77.861694) (xy 161.713502 77.75138) (xy 161.749812 77.631682) 1926 | (xy 161.762072 77.5072) (xy 161.762072 75.8072) (xy 161.749812 75.682718) (xy 161.713502 75.56302) (xy 161.654537 75.452706) 1927 | (xy 161.575185 75.356015) (xy 161.478494 75.276663) (xy 161.36818 75.217698) (xy 161.248482 75.181388) (xy 161.124 75.169128) 1928 | (xy 159.424 75.169128) (xy 159.299518 75.181388) (xy 159.17982 75.217698) (xy 159.069506 75.276663) (xy 158.972815 75.356015) 1929 | (xy 158.893463 75.452706) (xy 158.834498 75.56302) (xy 158.812487 75.63558) (xy 158.680632 75.503725) (xy 158.437411 75.34121) 1930 | (xy 158.167158 75.229268) (xy 157.88026 75.1722) (xy 157.58774 75.1722) (xy 157.300842 75.229268) (xy 157.030589 75.34121) 1931 | (xy 156.787368 75.503725) (xy 156.580525 75.710568) (xy 156.464 75.88496) (xy 156.347475 75.710568) (xy 156.140632 75.503725) 1932 | (xy 155.897411 75.34121) (xy 155.627158 75.229268) (xy 155.34026 75.1722) (xy 155.04774 75.1722) (xy 154.760842 75.229268) 1933 | (xy 154.490589 75.34121) (xy 154.247368 75.503725) (xy 154.040525 75.710568) (xy 153.924 75.88496) (xy 153.807475 75.710568) 1934 | (xy 153.637603 75.540696) (xy 160.854301 68.324) (xy 161.094289 68.324) (xy 161.138226 68.367937) (xy 161.307744 68.481205) 1935 | (xy 161.496102 68.559226) (xy 161.696061 68.599) (xy 161.899939 68.599) (xy 162.099898 68.559226) (xy 162.288256 68.481205) 1936 | (xy 162.457774 68.367937) (xy 162.601937 68.223774) (xy 162.715205 68.054256) (xy 162.793226 67.865898) (xy 162.833 67.665939) 1937 | (xy 162.833 67.462061) (xy 162.793226 67.262102) (xy 162.715205 67.073744) (xy 162.601937 66.904226) (xy 162.457774 66.760063) 1938 | (xy 162.288256 66.646795) (xy 162.099898 66.568774) (xy 161.899939 66.529) (xy 161.696061 66.529) (xy 161.496102 66.568774) 1939 | (xy 161.307744 66.646795) (xy 161.138226 66.760063) (xy 161.094289 66.804) (xy 160.57682 66.804) (xy 160.539497 66.800324) 1940 | (xy 160.502174 66.804) (xy 160.502165 66.804) (xy 160.390512 66.814997) (xy 160.247251 66.858454) (xy 160.115222 66.929026) 1941 | (xy 160.11522 66.929027) (xy 160.115221 66.929027) (xy 160.028494 67.000201) (xy 160.02849 67.000205) (xy 159.999497 67.023999) 1942 | (xy 159.975703 67.052992) (xy 152.306498 74.722199) (xy 148.379924 74.722199) (xy 148.342601 74.718523) (xy 148.305278 74.722199) 1943 | (xy 148.305268 74.722199) (xy 148.193615 74.733196) (xy 148.050354 74.776653) (xy 147.918325 74.847225) (xy 147.8026 74.942198) 1944 | (xy 147.778802 74.971196) (xy 146.855922 75.894076) (xy 146.786161 75.8802) (xy 146.533039 75.8802) (xy 146.466083 75.893518) 1945 | (xy 150.741716 71.617886) (xy 150.770986 71.615003) (xy 150.914247 71.571546) (xy 151.010681 71.52) (xy 151.168439 71.52) 1946 | (xy 151.368398 71.480226) (xy 151.556756 71.402205) (xy 151.726274 71.288937) (xy 151.870437 71.144774) (xy 151.983705 70.975256) 1947 | (xy 152.061726 70.786898) (xy 152.1015 70.586939) (xy 152.1015 70.461301) (xy 157.540802 65.022) (xy 159.062289 65.022) 1948 | (xy 159.106226 65.065937) (xy 159.275744 65.179205) (xy 159.464102 65.257226) (xy 159.664061 65.297) (xy 159.867939 65.297) 1949 | (xy 160.067898 65.257226) (xy 160.256256 65.179205) (xy 160.425774 65.065937) (xy 160.569937 64.921774) (xy 160.683205 64.752256) 1950 | (xy 160.761226 64.563898) (xy 160.801 64.363939) (xy 160.801 64.301802) (xy 161.039002 64.063799) (xy 161.068001 64.040001) 1951 | (xy 161.162974 63.924276) (xy 161.233546 63.792247) (xy 161.277003 63.648986) (xy 161.288 63.537333) (xy 161.288 63.537325) 1952 | (xy 161.291676 63.5) (xy 161.288 63.462675) (xy 161.288 59.27112) (xy 161.291676 59.233797) (xy 161.288 59.196475) 1953 | (xy 161.288 59.196465) (xy 161.277003 59.084812) (xy 161.233546 58.941551) (xy 161.162974 58.809522) (xy 161.068001 58.693797) 1954 | (xy 161.038998 58.669995) (xy 161.002409 58.633406) (xy 161.0024 58.633395) (xy 160.966005 58.597) (xy 163.145 58.597) 1955 | ) 1956 | ) 1957 | (filled_polygon 1958 | (pts 1959 | (xy 151.500525 77.603832) (xy 151.707368 77.810675) (xy 151.877105 77.92409) (xy 150.887724 77.923766) (xy 151.114269 77.754788) 1960 | (xy 151.309178 77.538555) (xy 151.378805 77.421666) 1961 | ) 1962 | ) 1963 | (filled_polygon 1964 | (pts 1965 | (xy 148.672519 76.300309) (xy 148.793186 76.5302) (xy 149.987 76.5302) (xy 149.987 76.5102) (xy 150.241 76.5102) 1966 | (xy 150.241 76.5302) (xy 150.261 76.5302) (xy 150.261 76.7842) (xy 150.241 76.7842) (xy 150.241 76.8042) 1967 | (xy 149.987 76.8042) (xy 149.987 76.7842) (xy 148.793186 76.7842) (xy 148.672519 77.014091) (xy 148.769843 77.288452) 1968 | (xy 148.918822 77.538555) (xy 149.113731 77.754788) (xy 149.339597 77.923259) (xy 147.698897 77.922722) (xy 147.798353 77.773876) 1969 | (xy 147.895219 77.540021) (xy 147.9446 77.291761) (xy 147.9446 77.038639) (xy 147.930724 76.968878) (xy 148.657403 76.242199) 1970 | (xy 148.693132 76.242199) 1971 | ) 1972 | ) 1973 | (filled_polygon 1974 | (pts 1975 | (xy 128.270924 60.523953) (xy 128.504779 60.620819) (xy 128.753039 60.6702) (xy 128.9332 60.6702) (xy 128.933201 61.724404) 1976 | (xy 128.929281 61.764202) (xy 128.936243 61.83488) (xy 128.944921 61.92299) (xy 128.988918 62.068027) (xy 128.991238 62.075675) 1977 | (xy 129.066451 62.216391) (xy 129.122052 62.284141) (xy 129.167673 62.33973) (xy 129.198583 62.365097) (xy 129.757604 62.924119) 1978 | (xy 129.782971 62.955029) (xy 129.850709 63.01062) (xy 129.906309 63.05625) (xy 129.942743 63.075724) (xy 130.047026 63.131464) 1979 | (xy 130.199711 63.177781) (xy 130.318708 63.189501) (xy 130.31871 63.189501) (xy 130.358498 63.19342) (xy 130.398286 63.189501) 1980 | (xy 140.889213 63.189501) (xy 140.929001 63.19342) (xy 140.968789 63.189501) (xy 140.968792 63.189501) (xy 141.087789 63.177781) 1981 | (xy 141.240474 63.131464) (xy 141.38119 63.05625) (xy 141.504529 62.955029) (xy 141.5299 62.924114) (xy 142.325516 62.128499) 1982 | (xy 145.040801 62.128499) (xy 145.201245 62.235704) (xy 145.389603 62.313725) (xy 145.589562 62.353499) (xy 145.79344 62.353499) 1983 | (xy 145.993399 62.313725) (xy 146.181757 62.235704) (xy 146.342201 62.128499) (xy 146.580987 62.128499) (xy 149.589129 65.136642) 1984 | (xy 149.626774 65.325898) (xy 149.704795 65.514256) (xy 149.818063 65.683774) (xy 149.962226 65.827937) (xy 150.131744 65.941205) 1985 | (xy 150.320102 66.019226) (xy 150.520061 66.059) (xy 150.723939 66.059) (xy 150.923898 66.019226) (xy 151.112256 65.941205) 1986 | (xy 151.281774 65.827937) (xy 151.425937 65.683774) (xy 151.539205 65.514256) (xy 151.617226 65.325898) (xy 151.657 65.125939) 1987 | (xy 151.657 64.922061) (xy 151.650107 64.887406) (xy 153.497513 63.04) (xy 156.525812 63.04) (xy 156.5656 63.043919) 1988 | (xy 156.605388 63.04) (xy 156.605391 63.04) (xy 156.724388 63.02828) (xy 156.877073 62.981963) (xy 157.017789 62.906749) 1989 | (xy 157.141128 62.805528) (xy 157.166499 62.774613) (xy 158.699541 61.241572) (xy 159.7016 61.241572) (xy 159.768 61.235032) 1990 | (xy 159.768001 63.185197) (xy 159.726198 63.227) (xy 159.664061 63.227) (xy 159.464102 63.266774) (xy 159.275744 63.344795) 1991 | (xy 159.106226 63.458063) (xy 159.062289 63.502) (xy 157.263322 63.502) (xy 157.225999 63.498324) (xy 157.188676 63.502) 1992 | (xy 157.188667 63.502) (xy 157.077014 63.512997) (xy 156.933753 63.556454) (xy 156.801724 63.627026) (xy 156.685999 63.721999) 1993 | (xy 156.662201 63.750997) (xy 150.962861 69.450338) (xy 150.764602 69.489774) (xy 150.576244 69.567795) (xy 150.406726 69.681063) 1994 | (xy 150.262563 69.825226) (xy 150.149295 69.994744) (xy 150.071274 70.183102) (xy 150.069738 70.190822) (xy 149.994523 70.231026) 1995 | (xy 149.917544 70.294202) (xy 149.878799 70.325999) (xy 149.855001 70.354997) (xy 144.315923 75.894076) (xy 144.246161 75.8802) 1996 | (xy 143.993039 75.8802) (xy 143.744779 75.929581) (xy 143.510924 76.026447) (xy 143.30046 76.167075) (xy 143.121475 76.34606) 1997 | (xy 142.980847 76.556524) (xy 142.883981 76.790379) (xy 142.8496 76.963227) (xy 142.815219 76.790379) (xy 142.718353 76.556524) 1998 | (xy 142.577725 76.34606) (xy 142.39874 76.167075) (xy 142.188276 76.026447) (xy 141.954421 75.929581) (xy 141.706161 75.8802) 1999 | (xy 141.453039 75.8802) (xy 141.204779 75.929581) (xy 140.970924 76.026447) (xy 140.76046 76.167075) (xy 140.581475 76.34606) 2000 | (xy 140.440847 76.556524) (xy 140.343981 76.790379) (xy 140.3096 76.963227) (xy 140.275219 76.790379) (xy 140.178353 76.556524) 2001 | (xy 140.037725 76.34606) (xy 139.85874 76.167075) (xy 139.648276 76.026447) (xy 139.414421 75.929581) (xy 139.166161 75.8802) 2002 | (xy 138.913039 75.8802) (xy 138.664779 75.929581) (xy 138.430924 76.026447) (xy 138.22046 76.167075) (xy 138.041475 76.34606) 2003 | (xy 137.900847 76.556524) (xy 137.803981 76.790379) (xy 137.7696 76.963227) (xy 137.735219 76.790379) (xy 137.638353 76.556524) 2004 | (xy 137.497725 76.34606) (xy 137.31874 76.167075) (xy 137.108276 76.026447) (xy 136.874421 75.929581) (xy 136.626161 75.8802) 2005 | (xy 136.373039 75.8802) (xy 136.124779 75.929581) (xy 135.890924 76.026447) (xy 135.68046 76.167075) (xy 135.501475 76.34606) 2006 | (xy 135.360847 76.556524) (xy 135.263981 76.790379) (xy 135.2296 76.963227) (xy 135.195219 76.790379) (xy 135.098353 76.556524) 2007 | (xy 134.957725 76.34606) (xy 134.77874 76.167075) (xy 134.568276 76.026447) (xy 134.334421 75.929581) (xy 134.086161 75.8802) 2008 | (xy 133.833039 75.8802) (xy 133.584779 75.929581) (xy 133.350924 76.026447) (xy 133.14046 76.167075) (xy 132.961475 76.34606) 2009 | (xy 132.820847 76.556524) (xy 132.723981 76.790379) (xy 132.6896 76.963227) (xy 132.655219 76.790379) (xy 132.558353 76.556524) 2010 | (xy 132.417725 76.34606) (xy 132.23874 76.167075) (xy 132.1796 76.127559) (xy 132.1796 75.453) (xy 132.206561 75.453) 2011 | (xy 132.454821 75.403619) (xy 132.688676 75.306753) (xy 132.89914 75.166125) (xy 133.078125 74.98714) (xy 133.218753 74.776676) 2012 | (xy 133.315619 74.542821) (xy 133.365 74.294561) (xy 133.365 74.041439) (xy 133.315619 73.793179) (xy 133.218753 73.559324) 2013 | (xy 133.078125 73.34886) (xy 132.89914 73.169875) (xy 132.688676 73.029247) (xy 132.454821 72.932381) (xy 132.206561 72.883) 2014 | (xy 131.953439 72.883) (xy 131.705179 72.932381) (xy 131.471324 73.029247) (xy 131.26086 73.169875) (xy 131.081875 73.34886) 2015 | (xy 130.941247 73.559324) (xy 130.844381 73.793179) (xy 130.81 73.966027) (xy 130.775619 73.793179) (xy 130.678753 73.559324) 2016 | (xy 130.538125 73.34886) (xy 130.35914 73.169875) (xy 130.148676 73.029247) (xy 129.914821 72.932381) (xy 129.666561 72.883) 2017 | (xy 129.413439 72.883) (xy 129.165179 72.932381) (xy 128.931324 73.029247) (xy 128.72086 73.169875) (xy 128.541875 73.34886) 2018 | (xy 128.401247 73.559324) (xy 128.304381 73.793179) (xy 128.288072 73.875172) (xy 128.288072 73.518) (xy 128.275812 73.393518) 2019 | (xy 128.239502 73.27382) (xy 128.180537 73.163506) (xy 128.101185 73.066815) (xy 128.004494 72.987463) (xy 127.89418 72.928498) 2020 | (xy 127.774482 72.892188) (xy 127.65 72.879928) (xy 126.35 72.879928) (xy 126.225518 72.892188) (xy 126.10582 72.928498) 2021 | (xy 125.995506 72.987463) (xy 125.898815 73.066815) (xy 125.819463 73.163506) (xy 125.760498 73.27382) (xy 125.724188 73.393518) 2022 | (xy 125.711928 73.518) (xy 125.711928 74.395227) (xy 125.706377 74.40199) (xy 125.708742 70.548862) (xy 125.778292 70.595334) 2023 | (xy 125.993948 70.684661) (xy 126.222888 70.7302) (xy 126.456312 70.7302) (xy 126.685252 70.684661) (xy 126.900908 70.595334) 2024 | (xy 127.094994 70.46565) (xy 127.26005 70.300594) (xy 127.389734 70.106508) (xy 127.479061 69.890852) (xy 127.5246 69.661912) 2025 | (xy 127.5246 69.428488) (xy 127.479061 69.199548) (xy 127.389734 68.983892) (xy 127.26005 68.789806) (xy 127.094994 68.62475) 2026 | (xy 126.900908 68.495066) (xy 126.685252 68.405739) (xy 126.456312 68.3602) (xy 126.229401 68.3602) (xy 126.224599 68.355398) 2027 | (xy 126.224599 68.1902) (xy 126.456312 68.1902) (xy 126.685252 68.144661) (xy 126.900908 68.055334) (xy 127.094994 67.92565) 2028 | (xy 127.26005 67.760594) (xy 127.389734 67.566508) (xy 127.432997 67.462061) (xy 130.029 67.462061) (xy 130.029 67.665939) 2029 | (xy 130.068774 67.865898) (xy 130.146795 68.054256) (xy 130.260063 68.223774) (xy 130.404226 68.367937) (xy 130.506209 68.43608) 2030 | (xy 130.387063 68.555226) (xy 130.273795 68.724744) (xy 130.195774 68.913102) (xy 130.156 69.113061) (xy 130.156 69.316939) 2031 | (xy 130.195774 69.516898) (xy 130.273795 69.705256) (xy 130.387063 69.874774) (xy 130.531226 70.018937) (xy 130.700744 70.132205) 2032 | (xy 130.889102 70.210226) (xy 131.089061 70.25) (xy 131.151199 70.25) (xy 133.8022 72.901002) (xy 133.825999 72.930001) 2033 | (xy 133.854997 72.953799) (xy 133.941723 73.024974) (xy 134.073753 73.095546) (xy 134.217014 73.139003) (xy 134.328667 73.15) 2034 | (xy 134.328676 73.15) (xy 134.365999 73.153676) (xy 134.403322 73.15) (xy 136.400699 73.15) (xy 137.421701 74.171003) 2035 | (xy 137.445499 74.200001) (xy 137.561224 74.294974) (xy 137.693253 74.365546) (xy 137.836514 74.409003) (xy 137.948167 74.42) 2036 | (xy 137.948176 74.42) (xy 137.985499 74.423676) (xy 138.022822 74.42) (xy 139.504289 74.42) (xy 139.548226 74.463937) 2037 | (xy 139.717744 74.577205) (xy 139.906102 74.655226) (xy 140.106061 74.695) (xy 140.309939 74.695) (xy 140.509898 74.655226) 2038 | (xy 140.698256 74.577205) (xy 140.867774 74.463937) (xy 141.011937 74.319774) (xy 141.125205 74.150256) (xy 141.203226 73.961898) 2039 | (xy 141.243 73.761939) (xy 141.243 73.558061) (xy 141.203226 73.358102) (xy 141.125205 73.169744) (xy 141.011937 73.000226) 2040 | (xy 140.867774 72.856063) (xy 140.698256 72.742795) (xy 140.509898 72.664774) (xy 140.309939 72.625) (xy 140.106061 72.625) 2041 | (xy 139.906102 72.664774) (xy 139.717744 72.742795) (xy 139.548226 72.856063) (xy 139.504289 72.9) (xy 138.300302 72.9) 2042 | (xy 138.005115 72.604813) (xy 138.073774 72.558937) (xy 138.117711 72.515) (xy 138.392678 72.515) (xy 138.43 72.518676) 2043 | (xy 138.467322 72.515) (xy 138.467333 72.515) (xy 138.578986 72.504003) (xy 138.722247 72.460546) (xy 138.854276 72.389974) 2044 | (xy 138.970001 72.295001) (xy 138.993804 72.265997) (xy 142.502052 68.75775) (xy 142.564189 68.75775) (xy 142.764148 68.717976) 2045 | (xy 142.952506 68.639955) (xy 143.122024 68.526687) (xy 143.266187 68.382524) (xy 143.357313 68.246144) (xy 143.535061 68.2815) 2046 | (xy 143.738939 68.2815) (xy 143.938503 68.241805) (xy 144.38 68.683302) (xy 144.38 68.745439) (xy 144.419774 68.945398) 2047 | (xy 144.497795 69.133756) (xy 144.611063 69.303274) (xy 144.755226 69.447437) (xy 144.924744 69.560705) (xy 145.113102 69.638726) 2048 | (xy 145.313061 69.6785) (xy 145.516939 69.6785) (xy 145.716898 69.638726) (xy 145.905256 69.560705) (xy 145.977503 69.512431) 2049 | (xy 146.129102 69.575226) (xy 146.329061 69.615) (xy 146.532939 69.615) (xy 146.732898 69.575226) (xy 146.921256 69.497205) 2050 | (xy 147.090774 69.383937) (xy 147.234937 69.239774) (xy 147.348205 69.070256) (xy 147.426226 68.881898) (xy 147.466 68.681939) 2051 | (xy 147.466 68.478061) (xy 147.426226 68.278102) (xy 147.348205 68.089744) (xy 147.234937 67.920226) (xy 147.090774 67.776063) 2052 | (xy 146.921256 67.662795) (xy 146.732898 67.584774) (xy 146.532939 67.545) (xy 146.470802 67.545) (xy 144.735162 65.809361) 2053 | (xy 144.695726 65.611102) (xy 144.617705 65.422744) (xy 144.504437 65.253226) (xy 144.360274 65.109063) (xy 144.190756 64.995795) 2054 | (xy 144.002398 64.917774) (xy 143.802439 64.878) (xy 143.598561 64.878) (xy 143.398602 64.917774) (xy 143.210244 64.995795) 2055 | (xy 143.040726 65.109063) (xy 142.896563 65.253226) (xy 142.783295 65.422744) (xy 142.705274 65.611102) (xy 142.6655 65.811061) 2056 | (xy 142.6655 66.014939) (xy 142.705274 66.214898) (xy 142.783295 66.403256) (xy 142.876717 66.543072) (xy 142.833063 66.586726) 2057 | (xy 142.741937 66.723106) (xy 142.564189 66.68775) (xy 142.360311 66.68775) (xy 142.160352 66.727524) (xy 141.971994 66.805545) 2058 | (xy 141.802476 66.918813) (xy 141.658313 67.062976) (xy 141.545045 67.232494) (xy 141.467024 67.420852) (xy 141.42725 67.620811) 2059 | (xy 141.42725 67.682948) (xy 138.116455 70.993744) (xy 138.073774 70.951063) (xy 137.904256 70.837795) (xy 137.715898 70.759774) 2060 | (xy 137.515939 70.72) (xy 137.312061 70.72) (xy 137.112102 70.759774) (xy 136.923744 70.837795) (xy 136.754226 70.951063) 2061 | (xy 136.710289 70.995) (xy 136.077802 70.995) (xy 134.385 69.302199) (xy 134.385 69.240061) (xy 134.345226 69.040102) 2062 | (xy 134.267205 68.851744) (xy 134.153937 68.682226) (xy 134.009774 68.538063) (xy 133.840256 68.424795) (xy 133.651898 68.346774) 2063 | (xy 133.451939 68.307) (xy 133.389802 68.307) (xy 132.135804 67.053003) (xy 132.112001 67.023999) (xy 131.996276 66.929026) 2064 | (xy 131.864247 66.858454) (xy 131.803842 66.840131) (xy 131.723774 66.760063) (xy 131.554256 66.646795) (xy 131.365898 66.568774) 2065 | (xy 131.165939 66.529) (xy 130.962061 66.529) (xy 130.762102 66.568774) (xy 130.573744 66.646795) (xy 130.404226 66.760063) 2066 | (xy 130.260063 66.904226) (xy 130.146795 67.073744) (xy 130.068774 67.262102) (xy 130.029 67.462061) (xy 127.432997 67.462061) 2067 | (xy 127.479061 67.350852) (xy 127.5246 67.121912) (xy 127.5246 66.888488) (xy 127.479061 66.659548) (xy 127.389734 66.443892) 2068 | (xy 127.26005 66.249806) (xy 127.094994 66.08475) (xy 127.061937 66.062662) (xy 127.825605 65.298995) (xy 127.854602 65.275198) 2069 | (xy 127.880933 65.243114) (xy 127.949575 65.159474) (xy 128.020147 65.027444) (xy 128.025134 65.011003) (xy 128.063604 64.884183) 2070 | (xy 128.074601 64.77253) (xy 128.074601 64.77252) (xy 128.078277 64.735197) (xy 128.074601 64.697874) (xy 128.074601 60.392774) 2071 | ) 2072 | ) 2073 | ) 2074 | (zone (net 6) (net_name /GND) (layer B.Cu) (tstamp 649488A7) (hatch edge 0.508) 2075 | (connect_pads (clearance 0.508)) 2076 | (min_thickness 0.254) 2077 | (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 2078 | (polygon 2079 | (pts 2080 | (xy 163.703 78.6765) (xy 124.587 78.6765) (xy 124.587 57.5945) (xy 163.703 57.5945) 2081 | ) 2082 | ) 2083 | (filled_polygon 2084 | (pts 2085 | (xy 163.145001 77.927777) (xy 161.600719 77.927271) (xy 161.654537 77.861694) (xy 161.713502 77.75138) (xy 161.749812 77.631682) 2086 | (xy 161.762072 77.5072) (xy 161.762072 76.243929) (xy 163.145001 74.861001) 2087 | ) 2088 | ) 2089 | (filled_polygon 2090 | (pts 2091 | (xy 151.818015 72.951585) (xy 151.914706 73.030937) (xy 152.02502 73.089902) (xy 152.144718 73.126212) (xy 152.2692 73.138472) 2092 | (xy 152.781105 73.138472) (xy 152.768015 73.149215) (xy 152.688663 73.245906) (xy 152.629698 73.35622) (xy 152.593388 73.475918) 2093 | (xy 152.581128 73.6004) (xy 152.581128 74.182071) (xy 152.142998 74.620201) (xy 152.114 74.643999) (xy 152.090202 74.672997) 2094 | (xy 152.090201 74.672998) (xy 152.019026 74.759724) (xy 151.948454 74.891754) (xy 151.904998 75.035015) (xy 151.890324 75.184) 2095 | (xy 151.894001 75.221332) (xy 151.894001 75.379021) (xy 151.707368 75.503725) (xy 151.500525 75.710568) (xy 151.378805 75.892734) 2096 | (xy 151.309178 75.775845) (xy 151.114269 75.559612) (xy 150.88092 75.385559) (xy 150.618099 75.260375) (xy 150.47089 75.215724) 2097 | (xy 150.241 75.337045) (xy 150.241 76.5302) (xy 150.261 76.5302) (xy 150.261 76.7842) (xy 150.241 76.7842) 2098 | (xy 150.241 76.8042) (xy 149.987 76.8042) (xy 149.987 76.7842) (xy 148.793186 76.7842) (xy 148.672519 77.014091) 2099 | (xy 148.769843 77.288452) (xy 148.918822 77.538555) (xy 149.113731 77.754788) (xy 149.339597 77.923259) (xy 147.698897 77.922722) 2100 | (xy 147.798353 77.773876) (xy 147.895219 77.540021) (xy 147.9446 77.291761) (xy 147.9446 77.038639) (xy 147.895219 76.790379) 2101 | (xy 147.798353 76.556524) (xy 147.657725 76.34606) (xy 147.611974 76.300309) (xy 148.672519 76.300309) (xy 148.793186 76.5302) 2102 | (xy 149.987 76.5302) (xy 149.987 75.337045) (xy 149.75711 75.215724) (xy 149.609901 75.260375) (xy 149.34708 75.385559) 2103 | (xy 149.113731 75.559612) (xy 148.918822 75.775845) (xy 148.769843 76.025948) (xy 148.672519 76.300309) (xy 147.611974 76.300309) 2104 | (xy 147.47874 76.167075) (xy 147.406425 76.118756) (xy 147.407802 76.11618) (xy 147.444112 75.996482) (xy 147.456372 75.872) 2105 | (xy 147.456372 74.972) (xy 147.444112 74.847518) (xy 147.407802 74.72782) (xy 147.348837 74.617506) (xy 147.269485 74.520815) 2106 | (xy 147.256395 74.510072) (xy 147.7683 74.510072) (xy 147.866504 74.5004) (xy 148.974328 74.5004) (xy 148.986588 74.624882) 2107 | (xy 149.022898 74.74458) (xy 149.081863 74.854894) (xy 149.161215 74.951585) (xy 149.257906 75.030937) (xy 149.36822 75.089902) 2108 | (xy 149.487918 75.126212) (xy 149.6124 75.138472) (xy 149.72665 75.1354) (xy 149.8854 74.97665) (xy 149.8854 74.1774) 2109 | (xy 150.1394 74.1774) (xy 150.1394 74.97665) (xy 150.29815 75.1354) (xy 150.4124 75.138472) (xy 150.536882 75.126212) 2110 | (xy 150.65658 75.089902) (xy 150.766894 75.030937) (xy 150.863585 74.951585) (xy 150.942937 74.854894) (xy 151.001902 74.74458) 2111 | (xy 151.038212 74.624882) (xy 151.050472 74.5004) (xy 151.0474 74.33615) (xy 150.88865 74.1774) (xy 150.1394 74.1774) 2112 | (xy 149.8854 74.1774) (xy 149.13615 74.1774) (xy 148.9774 74.33615) (xy 148.974328 74.5004) (xy 147.866504 74.5004) 2113 | (xy 147.892782 74.497812) (xy 148.01248 74.461502) (xy 148.122794 74.402537) (xy 148.219485 74.323185) (xy 148.298837 74.226494) 2114 | (xy 148.357802 74.11618) (xy 148.394112 73.996482) (xy 148.406372 73.872) (xy 148.406372 73.685401) (xy 148.975918 73.685401) 2115 | (xy 148.9774 73.76465) (xy 149.13615 73.9234) (xy 149.8854 73.9234) (xy 149.8854 73.9034) (xy 150.1394 73.9034) 2116 | (xy 150.1394 73.9234) (xy 150.88865 73.9234) (xy 151.0474 73.76465) (xy 151.050472 73.6004) (xy 151.038212 73.475918) 2117 | (xy 151.001902 73.35622) (xy 150.942937 73.245906) (xy 150.929175 73.229137) (xy 151.01984 73.138472) (xy 151.3624 73.138472) 2118 | (xy 151.486882 73.126212) (xy 151.60658 73.089902) (xy 151.716894 73.030937) (xy 151.813585 72.951585) (xy 151.8158 72.948886) 2119 | ) 2120 | ) 2121 | (filled_polygon 2122 | (pts 2123 | (xy 127.559916 69.666582) (xy 127.632742 69.802829) (xy 127.671454 69.85) (xy 127.632742 69.897171) (xy 127.559916 70.033418) 2124 | (xy 127.515071 70.181255) (xy 127.499928 70.335) (xy 127.499928 70.635) (xy 127.515071 70.788745) (xy 127.559916 70.936582) 2125 | (xy 127.632742 71.072829) (xy 127.730749 71.192251) (xy 127.850171 71.290258) (xy 127.986418 71.363084) (xy 128.134255 71.407929) 2126 | (xy 128.288 71.423072) (xy 129.888 71.423072) (xy 130.041745 71.407929) (xy 130.189582 71.363084) (xy 130.325829 71.290258) 2127 | (xy 130.380976 71.245) (xy 131.096676 71.245) (xy 131.133998 71.248676) (xy 131.17132 71.245) (xy 131.171331 71.245) 2128 | (xy 131.282984 71.234003) (xy 131.426245 71.190546) (xy 131.558274 71.119974) (xy 131.673999 71.025001) (xy 131.697802 70.995997) 2129 | (xy 131.908799 70.785) (xy 134.499928 70.785) (xy 134.512188 70.909482) (xy 134.548498 71.02918) (xy 134.607463 71.139494) 2130 | (xy 134.686815 71.236185) (xy 134.783506 71.315537) (xy 134.89382 71.374502) (xy 135.013518 71.410812) (xy 135.138 71.423072) 2131 | (xy 135.80225 71.42) (xy 135.961 71.26125) (xy 135.961 70.612) (xy 134.66175 70.612) (xy 134.503 70.77075) 2132 | (xy 134.499928 70.785) (xy 131.908799 70.785) (xy 132.619044 70.074755) (xy 132.690226 70.145937) (xy 132.859744 70.259205) 2133 | (xy 133.048102 70.337226) (xy 133.248061 70.377) (xy 133.451939 70.377) (xy 133.651898 70.337226) (xy 133.840256 70.259205) 2134 | (xy 134.009774 70.145937) (xy 134.053711 70.102) (xy 134.508103 70.102) (xy 134.499928 70.185) (xy 134.503 70.19925) 2135 | (xy 134.66175 70.358) (xy 135.961 70.358) (xy 135.961 70.338) (xy 136.215 70.338) (xy 136.215 70.358) 2136 | (xy 136.235 70.358) (xy 136.235 70.612) (xy 136.215 70.612) (xy 136.215 71.26125) (xy 136.37375 71.42) 2137 | (xy 136.432373 71.420271) (xy 136.418774 71.453102) (xy 136.379 71.653061) (xy 136.379 71.856939) (xy 136.418774 72.056898) 2138 | (xy 136.496795 72.245256) (xy 136.610063 72.414774) (xy 136.754226 72.558937) (xy 136.923744 72.672205) (xy 137.112102 72.750226) 2139 | (xy 137.312061 72.79) (xy 137.374199 72.79) (xy 137.696001 73.111803) (xy 137.696001 73.495298) (xy 137.562614 73.566595) 2140 | (xy 137.428038 73.677038) (xy 137.317595 73.811614) (xy 137.235528 73.96515) (xy 137.184992 74.131746) (xy 137.167928 74.305) 2141 | (xy 137.167928 75.555) (xy 137.184992 75.728254) (xy 137.235528 75.89485) (xy 137.317595 76.048386) (xy 137.428038 76.182962) 2142 | (xy 137.562614 76.293405) (xy 137.71615 76.375472) (xy 137.882746 76.426008) (xy 137.981553 76.43574) (xy 137.900847 76.556524) 2143 | (xy 137.803981 76.790379) (xy 137.7696 76.963227) (xy 137.735219 76.790379) (xy 137.638353 76.556524) (xy 137.497725 76.34606) 2144 | (xy 137.31874 76.167075) (xy 137.108276 76.026447) (xy 136.874421 75.929581) (xy 136.636464 75.882249) (xy 136.644072 75.805) 2145 | (xy 136.641 75.21575) (xy 136.48225 75.057) (xy 135.483 75.057) (xy 135.483 76.28125) (xy 135.524643 76.322893) 2146 | (xy 135.501475 76.34606) (xy 135.360847 76.556524) (xy 135.263981 76.790379) (xy 135.2296 76.963227) (xy 135.195219 76.790379) 2147 | (xy 135.098353 76.556524) (xy 135.020773 76.440417) (xy 135.07025 76.44) (xy 135.229 76.28125) (xy 135.229 75.057) 2148 | (xy 134.22975 75.057) (xy 134.071 75.21575) (xy 134.067928 75.805) (xy 134.075334 75.8802) (xy 133.833039 75.8802) 2149 | (xy 133.584779 75.929581) (xy 133.350924 76.026447) (xy 133.14046 76.167075) (xy 132.961475 76.34606) (xy 132.820847 76.556524) 2150 | (xy 132.723981 76.790379) (xy 132.6896 76.963227) (xy 132.655219 76.790379) (xy 132.558353 76.556524) (xy 132.417725 76.34606) 2151 | (xy 132.23874 76.167075) (xy 132.028276 76.026447) (xy 131.794421 75.929581) (xy 131.546161 75.8802) (xy 131.293039 75.8802) 2152 | (xy 131.044779 75.929581) (xy 130.810924 76.026447) (xy 130.60046 76.167075) (xy 130.421475 76.34606) (xy 130.280847 76.556524) 2153 | (xy 130.183981 76.790379) (xy 130.1496 76.963227) (xy 130.115219 76.790379) (xy 130.018353 76.556524) (xy 129.877725 76.34606) 2154 | (xy 129.69874 76.167075) (xy 129.488276 76.026447) (xy 129.254421 75.929581) (xy 129.006161 75.8802) (xy 128.753039 75.8802) 2155 | (xy 128.504779 75.929581) (xy 128.270924 76.026447) (xy 128.06046 76.167075) (xy 127.881475 76.34606) (xy 127.740847 76.556524) 2156 | (xy 127.643981 76.790379) (xy 127.6096 76.963227) (xy 127.575219 76.790379) (xy 127.478353 76.556524) (xy 127.337725 76.34606) 2157 | (xy 127.15874 76.167075) (xy 126.948276 76.026447) (xy 126.714421 75.929581) (xy 126.466161 75.8802) (xy 126.213039 75.8802) 2158 | (xy 125.964779 75.929581) (xy 125.730924 76.026447) (xy 125.705369 76.043522) (xy 125.708213 71.411014) (xy 127.177126 72.879928) 2159 | (xy 126.35 72.879928) (xy 126.225518 72.892188) (xy 126.10582 72.928498) (xy 125.995506 72.987463) (xy 125.898815 73.066815) 2160 | (xy 125.819463 73.163506) (xy 125.760498 73.27382) (xy 125.724188 73.393518) (xy 125.711928 73.518) (xy 125.711928 74.818) 2161 | (xy 125.724188 74.942482) (xy 125.760498 75.06218) (xy 125.819463 75.172494) (xy 125.898815 75.269185) (xy 125.995506 75.348537) 2162 | (xy 126.10582 75.407502) (xy 126.225518 75.443812) (xy 126.35 75.456072) (xy 127.65 75.456072) (xy 127.774482 75.443812) 2163 | (xy 127.89418 75.407502) (xy 128.004494 75.348537) (xy 128.101185 75.269185) (xy 128.180537 75.172494) (xy 128.239502 75.06218) 2164 | (xy 128.275812 74.942482) (xy 128.288072 74.818) (xy 128.288072 74.460828) (xy 128.304381 74.542821) (xy 128.401247 74.776676) 2165 | (xy 128.541875 74.98714) (xy 128.72086 75.166125) (xy 128.931324 75.306753) (xy 129.165179 75.403619) (xy 129.413439 75.453) 2166 | (xy 129.666561 75.453) (xy 129.914821 75.403619) (xy 130.148676 75.306753) (xy 130.35914 75.166125) (xy 130.538125 74.98714) 2167 | (xy 130.678753 74.776676) (xy 130.775619 74.542821) (xy 130.81 74.369973) (xy 130.844381 74.542821) (xy 130.941247 74.776676) 2168 | (xy 131.081875 74.98714) (xy 131.26086 75.166125) (xy 131.471324 75.306753) (xy 131.705179 75.403619) (xy 131.953439 75.453) 2169 | (xy 132.206561 75.453) (xy 132.454821 75.403619) (xy 132.688676 75.306753) (xy 132.89914 75.166125) (xy 133.078125 74.98714) 2170 | (xy 133.218753 74.776676) (xy 133.315619 74.542821) (xy 133.365 74.294561) (xy 133.365 74.055) (xy 134.067928 74.055) 2171 | (xy 134.071 74.64425) (xy 134.22975 74.803) (xy 135.229 74.803) (xy 135.229 73.57875) (xy 135.483 73.57875) 2172 | (xy 135.483 74.803) (xy 136.48225 74.803) (xy 136.641 74.64425) (xy 136.644072 74.055) (xy 136.631812 73.930518) 2173 | (xy 136.595502 73.81082) (xy 136.536537 73.700506) (xy 136.457185 73.603815) (xy 136.360494 73.524463) (xy 136.25018 73.465498) 2174 | (xy 136.130482 73.429188) (xy 136.006 73.416928) (xy 135.64175 73.42) (xy 135.483 73.57875) (xy 135.229 73.57875) 2175 | (xy 135.07025 73.42) (xy 134.706 73.416928) (xy 134.581518 73.429188) (xy 134.46182 73.465498) (xy 134.351506 73.524463) 2176 | (xy 134.254815 73.603815) (xy 134.175463 73.700506) (xy 134.116498 73.81082) (xy 134.080188 73.930518) (xy 134.067928 74.055) 2177 | (xy 133.365 74.055) (xy 133.365 74.041439) (xy 133.315619 73.793179) (xy 133.218753 73.559324) (xy 133.078125 73.34886) 2178 | (xy 132.89914 73.169875) (xy 132.688676 73.029247) (xy 132.454821 72.932381) (xy 132.206561 72.883) (xy 131.953439 72.883) 2179 | (xy 131.883678 72.896876) (xy 131.119803 72.133002) (xy 131.096001 72.103999) (xy 130.980276 72.009026) (xy 130.848247 71.938454) 2180 | (xy 130.704986 71.894997) (xy 130.593333 71.884) (xy 130.593322 71.884) (xy 130.556 71.880324) (xy 130.518678 71.884) 2181 | (xy 128.330802 71.884) (xy 126.985568 70.538766) (xy 127.094994 70.46565) (xy 127.26005 70.300594) (xy 127.389734 70.106508) 2182 | (xy 127.479061 69.890852) (xy 127.5246 69.661912) (xy 127.5246 69.550159) 2183 | ) 2184 | ) 2185 | (filled_polygon 2186 | (pts 2187 | (xy 145.6153 73.549) (xy 145.5953 73.549) (xy 145.5953 74.34825) (xy 145.658301 74.411251) (xy 145.658301 74.445981) 2188 | (xy 145.567115 74.520815) (xy 145.487763 74.617506) (xy 145.428798 74.72782) (xy 145.392488 74.847518) (xy 145.380228 74.972) 2189 | (xy 145.380228 75.872) (xy 145.392488 75.996482) (xy 145.428798 76.11618) (xy 145.487763 76.226494) (xy 145.567115 76.323185) 2190 | (xy 145.637928 76.3813) (xy 145.520847 76.556524) (xy 145.423981 76.790379) (xy 145.3896 76.963227) (xy 145.355219 76.790379) 2191 | (xy 145.258353 76.556524) (xy 145.117725 76.34606) (xy 144.93874 76.167075) (xy 144.80001 76.074378) (xy 144.866572 75.94985) 2192 | (xy 144.917108 75.783254) (xy 144.934172 75.61) (xy 144.934172 74.81) (xy 144.917108 74.636746) (xy 144.867985 74.474808) 2193 | (xy 144.943818 74.497812) (xy 145.0683 74.510072) (xy 145.18255 74.507) (xy 145.3413 74.34825) (xy 145.3413 73.549) 2194 | (xy 145.3213 73.549) (xy 145.3213 73.406999) (xy 145.6153 73.406999) 2195 | ) 2196 | ) 2197 | (filled_polygon 2198 | (pts 2199 | (xy 139.23271 68.258012) (xy 139.256509 68.287011) (xy 139.315315 68.335272) (xy 138.96975 68.337) (xy 138.811 68.49575) 2200 | (xy 138.811 69.5075) (xy 138.831 69.5075) (xy 138.831 69.7615) (xy 138.811 69.7615) (xy 138.811 70.77325) 2201 | (xy 138.96975 70.932) (xy 139.584 70.935072) (xy 139.708482 70.922812) (xy 139.82818 70.886502) (xy 139.938494 70.827537) 2202 | (xy 140.003473 70.774211) (xy 140.017113 70.785405) (xy 140.155447 70.859346) (xy 140.05595 70.889528) (xy 139.902414 70.971595) 2203 | (xy 139.767838 71.082038) (xy 139.657395 71.216614) (xy 139.575328 71.37015) (xy 139.524792 71.536746) (xy 139.507728 71.71) 2204 | (xy 139.507728 72.51) (xy 139.524792 72.683254) (xy 139.572328 72.839959) (xy 139.548226 72.856063) (xy 139.404063 73.000226) 2205 | (xy 139.290795 73.169744) (xy 139.216 73.350314) (xy 139.216 72.834333) (xy 139.219677 72.797) (xy 139.215634 72.755946) 2206 | (xy 139.205003 72.648014) (xy 139.161546 72.504753) (xy 139.090974 72.372724) (xy 138.996001 72.256999) (xy 138.967003 72.233201) 2207 | (xy 138.449 71.715199) (xy 138.449 71.653061) (xy 138.409226 71.453102) (xy 138.331205 71.264744) (xy 138.217937 71.095226) 2208 | (xy 138.073774 70.951063) (xy 138.047867 70.933752) (xy 138.39825 70.932) (xy 138.557 70.77325) (xy 138.557 69.7615) 2209 | (xy 138.537 69.7615) (xy 138.537 69.5075) (xy 138.557 69.5075) (xy 138.557 68.49575) (xy 138.39825 68.337) 2210 | (xy 138.392598 68.336972) (xy 138.852134 67.877436) 2211 | ) 2212 | ) 2213 | (filled_polygon 2214 | (pts 2215 | (xy 160.799038 67.041962) (xy 160.869878 67.100099) (xy 160.802774 67.262102) (xy 160.763 67.462061) (xy 160.763 67.665939) 2216 | (xy 160.802774 67.865898) (xy 160.869878 68.027901) (xy 160.799038 68.086038) (xy 160.688595 68.220614) (xy 160.606528 68.37415) 2217 | (xy 160.555992 68.540746) (xy 160.538928 68.714) (xy 160.538928 69.514) (xy 160.555992 69.687254) (xy 160.606528 69.85385) 2218 | (xy 160.688595 70.007386) (xy 160.799038 70.141962) (xy 160.933614 70.252405) (xy 161.08715 70.334472) (xy 161.1396 70.350383) 2219 | (xy 161.139601 71.023951) (xy 161.053706 71.069863) (xy 160.957015 71.149215) (xy 160.877663 71.245906) (xy 160.8582 71.282318) 2220 | (xy 160.838737 71.245906) (xy 160.759385 71.149215) (xy 160.662694 71.069863) (xy 160.55238 71.010898) (xy 160.432682 70.974588) 2221 | (xy 160.3082 70.962328) (xy 159.5082 70.962328) (xy 159.383718 70.974588) (xy 159.26402 71.010898) (xy 159.153706 71.069863) 2222 | (xy 159.057015 71.149215) (xy 159.0421 71.167389) (xy 159.027185 71.149215) (xy 158.930494 71.069863) (xy 158.896596 71.051744) 2223 | (xy 158.941972 70.966851) (xy 158.992508 70.800255) (xy 159.009572 70.627001) (xy 159.009572 69.326999) (xy 158.992508 69.153745) 2224 | (xy 158.941972 68.987149) (xy 158.859905 68.833613) (xy 158.749462 68.699038) (xy 158.614887 68.588595) (xy 158.461351 68.506528) 2225 | (xy 158.294755 68.455992) (xy 158.229208 68.449536) (xy 158.268494 68.428537) (xy 158.365185 68.349185) (xy 158.444537 68.252494) 2226 | (xy 158.503502 68.14218) (xy 158.539812 68.022482) (xy 158.552072 67.898) (xy 158.552072 67.098) (xy 158.544645 67.022592) 2227 | (xy 158.61065 67.057872) (xy 158.777246 67.108408) (xy 158.9505 67.125472) (xy 160.2005 67.125472) (xy 160.373754 67.108408) 2228 | (xy 160.54035 67.057872) (xy 160.693886 66.975805) (xy 160.724277 66.950864) 2229 | ) 2230 | ) 2231 | (filled_polygon 2232 | (pts 2233 | (xy 133.473214 65.244405) (xy 133.62675 65.326472) (xy 133.793346 65.377008) (xy 133.881963 65.385736) (xy 133.855003 65.412696) 2234 | (xy 133.825999 65.436499) (xy 133.779363 65.493326) (xy 133.731026 65.552224) (xy 133.68309 65.641905) (xy 133.660454 65.684254) 2235 | (xy 133.616997 65.827515) (xy 133.606 65.939168) (xy 133.606 65.939178) (xy 133.602324 65.9765) (xy 133.606 66.013823) 2236 | (xy 133.606001 67.135668) (xy 133.602324 67.173) (xy 133.603506 67.185) (xy 133.07491 67.185) (xy 133.037587 67.181324) 2237 | (xy 133.000264 67.185) (xy 133.000255 67.185) (xy 132.888602 67.195997) (xy 132.745341 67.239454) (xy 132.613312 67.310026) 2238 | (xy 132.497587 67.404999) (xy 132.473789 67.433997) (xy 132.063531 67.844255) (xy 132.099 67.665939) (xy 132.099 67.462061) 2239 | (xy 132.059226 67.262102) (xy 131.981205 67.073744) (xy 131.867937 66.904226) (xy 131.723774 66.760063) (xy 131.554256 66.646795) 2240 | (xy 131.365898 66.568774) (xy 131.165939 66.529) (xy 130.962061 66.529) (xy 130.762102 66.568774) (xy 130.673 66.605682) 2241 | (xy 130.673 66.547998) (xy 130.514252 66.547998) (xy 130.673 66.38925) (xy 130.676072 66.375) (xy 130.663812 66.250518) 2242 | (xy 130.627502 66.13082) (xy 130.577888 66.038) (xy 132.106178 66.038) (xy 132.1435 66.041676) (xy 132.180822 66.038) 2243 | (xy 132.180833 66.038) (xy 132.292486 66.027003) (xy 132.435747 65.983546) (xy 132.567776 65.912974) (xy 132.683501 65.818001) 2244 | (xy 132.707303 65.788998) (xy 133.351656 65.144646) 2245 | ) 2246 | ) 2247 | (filled_polygon 2248 | (pts 2249 | (xy 129.215 66.548) (xy 129.235 66.548) (xy 129.235 66.802) (xy 129.215 66.802) (xy 129.215 66.822) 2250 | (xy 128.961 66.822) (xy 128.961 66.802) (xy 128.941 66.802) (xy 128.941 66.548) (xy 128.961 66.548) 2251 | (xy 128.961 66.528) (xy 129.215 66.528) 2252 | ) 2253 | ) 2254 | ) 2255 | ) 2256 | -------------------------------------------------------------------------------- /kicad/SerialMouseBlasterPCB.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # RaspberryPi_Pico 5 | # 6 | DEF RaspberryPi_Pico U 0 40 Y Y 1 F N 7 | F0 "U" -700 -3500 50 H V C CNN 8 | F1 "RaspberryPi_Pico" -600 0 50 H V C CNN 9 | F2 "" -700 -3500 50 H I C CNN 10 | F3 "" -700 -3500 50 H I C CNN 11 | DRAW 12 | X GP0 1 -600 200 100 L 50 50 1 1 B 13 | X GP1 2 -600 100 100 L 50 50 1 1 B 14 | X GND 3 -600 0 100 L 50 50 1 1 I 15 | X GP27 32 -600 -2900 100 L 50 50 1 1 B 16 | X GND 33 -600 -3000 100 L 50 50 1 1 I 17 | X GP28 34 -600 -3100 100 L 50 50 1 1 B 18 | X ADC_VREF 35 -600 -3200 100 L 50 50 1 1 I 19 | X 3V3OUT 36 -600 -3300 100 L 50 50 1 1 w 20 | X 3V3_EN 37 -600 -3400 100 L 50 50 1 1 I 21 | X GND 38 -600 -3500 100 L 50 50 1 1 I 22 | X VSYS 39 -600 -3600 100 L 50 50 1 1 w 23 | X GP2 4 -600 -100 100 L 50 50 1 1 B 24 | X VBUS 40 -600 -3700 100 L 50 50 1 1 w 25 | X TP2_USB_DM 41 -600 -3900 100 L 50 50 1 1 B 26 | X TP3_USB_DP 42 -600 -4000 100 L 50 50 1 1 B 27 | X GP3 5 -600 -200 100 L 50 50 1 1 B 28 | X GP4 6 -600 -300 100 L 50 50 1 1 B 29 | X GP5 7 -600 -400 100 L 50 50 1 1 B 30 | X GND 8 -600 -500 100 L 50 50 1 1 B 31 | X GP6 9 -600 -600 100 L 50 50 1 1 B 32 | ENDDRAW 33 | ENDDEF 34 | # 35 | #End Library 36 | -------------------------------------------------------------------------------- /kicad/SerialMouseBlasterPCB.pretty/raspberry_pi_pico.kicad_mod: -------------------------------------------------------------------------------- 1 | (module raspberry_pi_pico (layer F.Cu) (tedit 648E76E1) 2 | (fp_text reference REF** (at 10.16 12.7) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value raspberry_pi_pico (at 0 -0.5) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -1.27 -1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 19.05 -1.27) (end 19.05 49.53) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 19.05 49.53) (end -1.27 49.53) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -1.27 49.53) (end -1.27 -1.27) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 5.08 0) (end 5.08 2.54) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 5.08 2.54) (end 12.7 2.54) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 12.7 2.54) (end 12.7 0) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start 5.08 0) (end 5.08 -1.27) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start 12.7 0) (end 12.7 -1.27) (layer F.SilkS) (width 0.15)) 17 | (fp_text user 1 (at -1.778 0) (layer F.SilkS) 18 | (effects (font (size 0.6 0.6) (thickness 0.1))) 19 | ) 20 | (fp_text user 40 (at 20.066 0) (layer F.SilkS) 21 | (effects (font (size 0.6 0.6) (thickness 0.1))) 22 | ) 23 | (fp_text user TP2 (at 11.684 0) (layer F.SilkS) 24 | (effects (font (size 0.5 0.5) (thickness 0.11))) 25 | ) 26 | (fp_text user TP3 (at 6.096 0) (layer F.SilkS) 27 | (effects (font (size 0.5 0.5) (thickness 0.11))) 28 | ) 29 | (pad 1 thru_hole circle (at 0 0) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 30 | (pad 2 thru_hole circle (at 0 2.54) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 31 | (pad 3 thru_hole circle (at 0 5.08) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 32 | (pad 4 thru_hole circle (at 0 7.62) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 33 | (pad 5 thru_hole circle (at 0 10.16) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 34 | (pad 6 thru_hole circle (at 0 12.7) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 35 | (pad 7 thru_hole circle (at 0 15.24) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 36 | (pad 8 thru_hole circle (at 0 17.78) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 37 | (pad 9 thru_hole circle (at 0 20.32) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 38 | (pad 32 thru_hole circle (at 17.78 20.32) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 39 | (pad 33 thru_hole circle (at 17.78 17.78) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 40 | (pad 34 thru_hole circle (at 17.78 15.24) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 41 | (pad 35 thru_hole circle (at 17.78 12.7) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 42 | (pad 36 thru_hole circle (at 17.78 10.16) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 43 | (pad 37 thru_hole circle (at 17.78 7.62) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 44 | (pad 38 thru_hole circle (at 17.78 5.08) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 45 | (pad 39 thru_hole circle (at 17.78 2.54) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 46 | (pad 40 thru_hole circle (at 17.78 0) (size 1.3 1.3) (drill 1) (layers *.Cu *.Mask)) 47 | (pad 42 thru_hole circle (at 7.62 0) (size 1.1 1.1) (drill 0.75) (layers *.Cu *.Mask)) 48 | (pad 41 thru_hole circle (at 10.16 0) (size 1.1 1.1) (drill 0.75) (layers *.Cu *.Mask)) 49 | ) 50 | -------------------------------------------------------------------------------- /kicad/SerialMouseBlasterPCB.pro: -------------------------------------------------------------------------------- 1 | update=Mon 05 Jun 2023 04:51:14 PM PDT 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 | [pcbnew] 16 | version=1 17 | PageLayoutDescrFile= 18 | LastNetListRead= 19 | CopperLayerCount=2 20 | BoardThickness=1.6 21 | AllowMicroVias=0 22 | AllowBlindVias=0 23 | RequireCourtyardDefinitions=0 24 | ProhibitOverlappingCourtyards=1 25 | MinTrackWidth=0.2 26 | MinViaDiameter=0.4 27 | MinViaDrill=0.3 28 | MinMicroViaDiameter=0.2 29 | MinMicroViaDrill=0.09999999999999999 30 | MinHoleToHole=0.25 31 | TrackWidth1=0.25 32 | TrackWidth2=0.35 33 | ViaDiameter1=0.8 34 | ViaDrill1=0.4 35 | dPairWidth1=0.2 36 | dPairGap1=0.25 37 | dPairViaGap1=0.25 38 | SilkLineWidth=0.12 39 | SilkTextSizeV=1 40 | SilkTextSizeH=1 41 | SilkTextSizeThickness=0.15 42 | SilkTextItalic=0 43 | SilkTextUpright=1 44 | CopperLineWidth=0.2 45 | CopperTextSizeV=1.5 46 | CopperTextSizeH=1.5 47 | CopperTextThickness=0.3 48 | CopperTextItalic=0 49 | CopperTextUpright=1 50 | EdgeCutLineWidth=0.05 51 | CourtyardLineWidth=0.05 52 | OthersLineWidth=0.15 53 | OthersTextSizeV=1 54 | OthersTextSizeH=1 55 | OthersTextSizeThickness=0.15 56 | OthersTextItalic=0 57 | OthersTextUpright=1 58 | SolderMaskClearance=0 59 | SolderMaskMinWidth=0 60 | SolderPasteClearance=0 61 | SolderPasteRatio=-0 62 | [pcbnew/Layer.F.Cu] 63 | Name=F.Cu 64 | Type=0 65 | Enabled=1 66 | [pcbnew/Layer.In1.Cu] 67 | Name=In1.Cu 68 | Type=0 69 | Enabled=0 70 | [pcbnew/Layer.In2.Cu] 71 | Name=In2.Cu 72 | Type=0 73 | Enabled=0 74 | [pcbnew/Layer.In3.Cu] 75 | Name=In3.Cu 76 | Type=0 77 | Enabled=0 78 | [pcbnew/Layer.In4.Cu] 79 | Name=In4.Cu 80 | Type=0 81 | Enabled=0 82 | [pcbnew/Layer.In5.Cu] 83 | Name=In5.Cu 84 | Type=0 85 | Enabled=0 86 | [pcbnew/Layer.In6.Cu] 87 | Name=In6.Cu 88 | Type=0 89 | Enabled=0 90 | [pcbnew/Layer.In7.Cu] 91 | Name=In7.Cu 92 | Type=0 93 | Enabled=0 94 | [pcbnew/Layer.In8.Cu] 95 | Name=In8.Cu 96 | Type=0 97 | Enabled=0 98 | [pcbnew/Layer.In9.Cu] 99 | Name=In9.Cu 100 | Type=0 101 | Enabled=0 102 | [pcbnew/Layer.In10.Cu] 103 | Name=In10.Cu 104 | Type=0 105 | Enabled=0 106 | [pcbnew/Layer.In11.Cu] 107 | Name=In11.Cu 108 | Type=0 109 | Enabled=0 110 | [pcbnew/Layer.In12.Cu] 111 | Name=In12.Cu 112 | Type=0 113 | Enabled=0 114 | [pcbnew/Layer.In13.Cu] 115 | Name=In13.Cu 116 | Type=0 117 | Enabled=0 118 | [pcbnew/Layer.In14.Cu] 119 | Name=In14.Cu 120 | Type=0 121 | Enabled=0 122 | [pcbnew/Layer.In15.Cu] 123 | Name=In15.Cu 124 | Type=0 125 | Enabled=0 126 | [pcbnew/Layer.In16.Cu] 127 | Name=In16.Cu 128 | Type=0 129 | Enabled=0 130 | [pcbnew/Layer.In17.Cu] 131 | Name=In17.Cu 132 | Type=0 133 | Enabled=0 134 | [pcbnew/Layer.In18.Cu] 135 | Name=In18.Cu 136 | Type=0 137 | Enabled=0 138 | [pcbnew/Layer.In19.Cu] 139 | Name=In19.Cu 140 | Type=0 141 | Enabled=0 142 | [pcbnew/Layer.In20.Cu] 143 | Name=In20.Cu 144 | Type=0 145 | Enabled=0 146 | [pcbnew/Layer.In21.Cu] 147 | Name=In21.Cu 148 | Type=0 149 | Enabled=0 150 | [pcbnew/Layer.In22.Cu] 151 | Name=In22.Cu 152 | Type=0 153 | Enabled=0 154 | [pcbnew/Layer.In23.Cu] 155 | Name=In23.Cu 156 | Type=0 157 | Enabled=0 158 | [pcbnew/Layer.In24.Cu] 159 | Name=In24.Cu 160 | Type=0 161 | Enabled=0 162 | [pcbnew/Layer.In25.Cu] 163 | Name=In25.Cu 164 | Type=0 165 | Enabled=0 166 | [pcbnew/Layer.In26.Cu] 167 | Name=In26.Cu 168 | Type=0 169 | Enabled=0 170 | [pcbnew/Layer.In27.Cu] 171 | Name=In27.Cu 172 | Type=0 173 | Enabled=0 174 | [pcbnew/Layer.In28.Cu] 175 | Name=In28.Cu 176 | Type=0 177 | Enabled=0 178 | [pcbnew/Layer.In29.Cu] 179 | Name=In29.Cu 180 | Type=0 181 | Enabled=0 182 | [pcbnew/Layer.In30.Cu] 183 | Name=In30.Cu 184 | Type=0 185 | Enabled=0 186 | [pcbnew/Layer.B.Cu] 187 | Name=B.Cu 188 | Type=0 189 | Enabled=1 190 | [pcbnew/Layer.B.Adhes] 191 | Enabled=1 192 | [pcbnew/Layer.F.Adhes] 193 | Enabled=1 194 | [pcbnew/Layer.B.Paste] 195 | Enabled=1 196 | [pcbnew/Layer.F.Paste] 197 | Enabled=1 198 | [pcbnew/Layer.B.SilkS] 199 | Enabled=1 200 | [pcbnew/Layer.F.SilkS] 201 | Enabled=1 202 | [pcbnew/Layer.B.Mask] 203 | Enabled=1 204 | [pcbnew/Layer.F.Mask] 205 | Enabled=1 206 | [pcbnew/Layer.Dwgs.User] 207 | Enabled=1 208 | [pcbnew/Layer.Cmts.User] 209 | Enabled=1 210 | [pcbnew/Layer.Eco1.User] 211 | Enabled=1 212 | [pcbnew/Layer.Eco2.User] 213 | Enabled=1 214 | [pcbnew/Layer.Edge.Cuts] 215 | Enabled=1 216 | [pcbnew/Layer.Margin] 217 | Enabled=1 218 | [pcbnew/Layer.B.CrtYd] 219 | Enabled=1 220 | [pcbnew/Layer.F.CrtYd] 221 | Enabled=1 222 | [pcbnew/Layer.B.Fab] 223 | Enabled=1 224 | [pcbnew/Layer.F.Fab] 225 | Enabled=1 226 | [pcbnew/Layer.Rescue] 227 | Enabled=0 228 | [pcbnew/Netclasses] 229 | [pcbnew/Netclasses/Default] 230 | Name=Default 231 | Clearance=0.2 232 | TrackWidth=0.25 233 | ViaDiameter=0.8 234 | ViaDrill=0.4 235 | uViaDiameter=0.3 236 | uViaDrill=0.1 237 | dPairWidth=0.2 238 | dPairGap=0.25 239 | dPairViaGap=0.25 240 | -------------------------------------------------------------------------------- /kicad/SerialMouseBlasterPCB.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 1 7 | Title "Serial Mouse Blaster PCB" 8 | Date "2023-06-22" 9 | Rev "rev0.4" 10 | Comp "Scrap Computing" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | Text Label 900 3850 0 50 ~ 0 17 | RTS 18 | Text Label 900 3650 0 50 ~ 0 19 | TX 20 | Text Label 900 3750 0 50 ~ 0 21 | RX 22 | Text Label 900 3950 0 50 ~ 0 23 | DTR 24 | Text Label 900 4050 0 50 ~ 0 25 | GND 26 | Text Label 6400 2400 0 50 ~ 0 27 | PWR+ 28 | Text Label 6600 5600 0 50 ~ 0 29 | RxIN 30 | Text Label 6450 3200 0 50 ~ 0 31 | RTS_ 32 | $Comp 33 | L Amplifier_Operational:LM358 U2 34 | U 1 1 6473E5F1 35 | P 3150 5500 36 | F 0 "U2" H 3150 5867 50 0000 C CNN 37 | F 1 "LM358" H 3150 5776 50 0000 C CNN 38 | F 2 "Package_SO:SO-8_5.3x6.2mm_P1.27mm" H 3150 5500 50 0001 C CNN 39 | F 3 "http://www.ti.com/lit/ds/symlink/lm2904-n.pdf" H 3150 5500 50 0001 C CNN 40 | 1 3150 5500 41 | -1 0 0 -1 42 | $EndComp 43 | $Comp 44 | L Amplifier_Operational:LM358 U2 45 | U 3 1 647494DA 46 | P 3800 3350 47 | F 0 "U2" H 3758 3396 50 0000 L CNN 48 | F 1 "LM358" H 3758 3305 50 0000 L CNN 49 | F 2 "Package_SO:SO-8_5.3x6.2mm_P1.27mm" H 3800 3350 50 0001 C CNN 50 | F 3 "http://www.ti.com/lit/ds/symlink/lm2904-n.pdf" H 3800 3350 50 0001 C CNN 51 | 3 3800 3350 52 | 1 0 0 -1 53 | $EndComp 54 | $Comp 55 | L Device:R R5 56 | U 1 1 647DE384 57 | P 4900 3000 58 | F 0 "R5" H 4970 3046 50 0000 L CNN 59 | F 1 "22K" H 4970 2955 50 0000 L CNN 60 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 4830 3000 50 0001 C CNN 61 | F 3 "~" H 4900 3000 50 0001 C CNN 62 | 1 4900 3000 63 | 1 0 0 -1 64 | $EndComp 65 | Wire Wire Line 66 | 3250 3600 3250 4800 67 | Wire Wire Line 68 | 3250 2400 3450 2400 69 | Connection ~ 3700 2400 70 | Connection ~ 3250 4800 71 | Connection ~ 5700 4800 72 | Wire Wire Line 73 | 2850 5500 2500 5500 74 | Wire Wire Line 75 | 3550 4200 3550 5400 76 | Wire Wire Line 77 | 3450 5400 3550 5400 78 | Wire Wire Line 79 | 4900 3150 4900 3200 80 | Connection ~ 4900 3200 81 | Wire Wire Line 82 | 4900 4200 3550 4200 83 | $Comp 84 | L Timer:ICM7555xP U1 85 | U 1 1 64CBB365 86 | P 2450 1350 87 | F 0 "U1" H 2450 1931 50 0000 C CNN 88 | F 1 "ICM7555xP" H 2450 1840 50 0000 C CNN 89 | F 2 "Package_SO:SO-8_5.3x6.2mm_P1.27mm" H 3300 950 50 0001 C CNN 90 | F 3 "http://www.intersil.com/content/dam/Intersil/documents/icm7/icm7555-56.pdf" H 3300 950 50 0001 C CNN 91 | 1 2450 1350 92 | 1 0 0 -1 93 | $EndComp 94 | $Comp 95 | L Device:R R2 96 | U 1 1 64CDB3EB 97 | P 1700 1150 98 | F 0 "R2" V 1493 1150 50 0000 C CNN 99 | F 1 "22K" V 1584 1150 50 0000 C CNN 100 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 1630 1150 50 0001 C CNN 101 | F 3 "~" H 1700 1150 50 0001 C CNN 102 | 1 1700 1150 103 | 0 1 1 0 104 | $EndComp 105 | $Comp 106 | L Device:R R1 107 | U 1 1 64CDB988 108 | P 1700 850 109 | F 0 "R1" V 1493 850 50 0000 C CNN 110 | F 1 "1K" V 1584 850 50 0000 C CNN 111 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 1630 850 50 0001 C CNN 112 | F 3 "~" H 1700 850 50 0001 C CNN 113 | 1 1700 850 114 | 0 1 1 0 115 | $EndComp 116 | Wire Wire Line 117 | 2450 1750 2450 1900 118 | Connection ~ 2450 1900 119 | Wire Wire Line 120 | 2450 1900 2950 1900 121 | Wire Wire Line 122 | 2950 1550 2950 1600 123 | Wire Wire Line 124 | 2950 550 2950 1150 125 | Connection ~ 2950 1150 126 | Wire Wire Line 127 | 2950 1150 2950 1350 128 | Wire Wire Line 129 | 1650 1350 1650 1450 130 | Wire Wire Line 131 | 1650 1750 1650 1900 132 | Wire Wire Line 133 | 1650 1350 1950 1350 134 | Wire Wire Line 135 | 1950 1550 1950 1750 136 | Wire Wire Line 137 | 1950 1750 2000 1750 138 | Wire Wire Line 139 | 1550 1150 1550 850 140 | Wire Wire Line 141 | 1550 550 1550 850 142 | Wire Wire Line 143 | 1550 550 2950 550 144 | Connection ~ 1550 850 145 | Wire Wire Line 146 | 1850 1150 1900 1150 147 | Wire Wire Line 148 | 1900 1150 1900 1450 149 | Wire Wire Line 150 | 1900 1450 2950 1450 151 | Wire Wire Line 152 | 2950 1450 2950 1550 153 | Connection ~ 1900 1150 154 | Wire Wire Line 155 | 1900 1150 1950 1150 156 | Connection ~ 2950 1550 157 | Wire Wire Line 158 | 1850 850 2450 850 159 | Wire Wire Line 160 | 2450 950 2450 850 161 | Connection ~ 2450 850 162 | Connection ~ 2000 2200 163 | Wire Wire Line 164 | 4050 850 4050 2200 165 | Wire Wire Line 166 | 2000 1750 2000 2200 167 | $Comp 168 | L Diode:BZX84Cxx D11 169 | U 1 1 64DA38E7 170 | P 5700 3600 171 | F 0 "D11" V 5654 3680 50 0000 L CNN 172 | F 1 "BZX84-C5V1" V 5745 3680 50 0000 L CNN 173 | F 2 "Diode_SMD:D_SOT-23_ANK" H 5700 3600 50 0001 C CNN 174 | F 3 "~" H 5700 3600 50 0001 C CNN 175 | 1 5700 3600 176 | 0 1 1 0 177 | $EndComp 178 | Connection ~ 5700 2400 179 | $Comp 180 | L Device:R R7 181 | U 1 1 647D1C09 182 | P 4900 4500 183 | F 0 "R7" H 4970 4546 50 0000 L CNN 184 | F 1 "22K" H 4970 4455 50 0000 L CNN 185 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 4830 4500 50 0001 C CNN 186 | F 3 "~" H 4900 4500 50 0001 C CNN 187 | 1 4900 4500 188 | 1 0 0 -1 189 | $EndComp 190 | $Comp 191 | L Device:R R6 192 | U 1 1 647D2C01 193 | P 4900 3700 194 | F 0 "R6" H 4970 3746 50 0000 L CNN 195 | F 1 "22K" H 4970 3655 50 0000 L CNN 196 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 4830 3700 50 0001 C CNN 197 | F 3 "~" H 4900 3700 50 0001 C CNN 198 | 1 4900 3700 199 | 1 0 0 -1 200 | $EndComp 201 | Wire Wire Line 202 | 4900 3850 4900 4200 203 | Wire Wire Line 204 | 3250 4800 4900 4800 205 | Wire Wire Line 206 | 4900 4200 4900 4350 207 | Connection ~ 4900 4200 208 | Wire Wire Line 209 | 4900 4650 4900 4800 210 | Connection ~ 4900 4800 211 | Wire Wire Line 212 | 4900 3200 4900 3550 213 | Wire Wire Line 214 | 4900 4800 5700 4800 215 | $Comp 216 | L Device:R R3 217 | U 1 1 647E70A9 218 | P 2350 5500 219 | F 0 "R3" V 2143 5500 50 0000 C CNN 220 | F 1 "1K" V 2234 5500 50 0000 C CNN 221 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 2280 5500 50 0001 C CNN 222 | F 3 "~" H 2350 5500 50 0001 C CNN 223 | 1 2350 5500 224 | 0 1 1 0 225 | $EndComp 226 | Wire Wire Line 227 | 2200 5500 1850 5500 228 | $Comp 229 | L Amplifier_Operational:LM358 U2 230 | U 2 1 647EE640 231 | P 4250 3550 232 | F 0 "U2" H 4250 3183 50 0000 C CNN 233 | F 1 "LM358" H 4250 3274 50 0000 C CNN 234 | F 2 "Package_SO:SO-8_5.3x6.2mm_P1.27mm" H 4250 3550 50 0001 C CNN 235 | F 3 "http://www.ti.com/lit/ds/symlink/lm2904-n.pdf" H 4250 3550 50 0001 C CNN 236 | 2 4250 3550 237 | 1 0 0 1 238 | $EndComp 239 | Wire Wire Line 240 | 3700 3650 3950 3650 241 | Connection ~ 3700 3650 242 | Connection ~ 3550 3650 243 | Wire Wire Line 244 | 3550 3650 3700 3650 245 | Wire Wire Line 246 | 3550 3050 3700 3050 247 | Connection ~ 3700 3050 248 | Wire Wire Line 249 | 3700 2400 3700 3050 250 | Wire Wire Line 251 | 3700 3050 3950 3050 252 | Wire Wire Line 253 | 3950 3050 3950 3450 254 | $Comp 255 | L SerialMouseBlasterPCB:RaspberryPi_Pico U3 256 | U 1 1 647D86AA 257 | P 6750 2000 258 | F 0 "U3" H 5431 161 50 0000 R CNN 259 | F 1 "RaspberryPi_Pico" H 5431 70 50 0000 R CNN 260 | F 2 "SerialMouseBlasterPCB:raspberry_pi_pico" H 6050 -1500 50 0001 C CNN 261 | F 3 "" H 6050 -1500 50 0001 C CNN 262 | 1 6750 2000 263 | -1 0 0 -1 264 | $EndComp 265 | Wire Wire Line 266 | 7350 5600 7100 5600 267 | Wire Wire Line 268 | 5700 2400 7100 2400 269 | Wire Wire Line 270 | 7200 4800 7200 5000 271 | Wire Wire Line 272 | 7200 5000 7350 5000 273 | Connection ~ 7200 4800 274 | Wire Wire Line 275 | 7200 2500 7350 2500 276 | Wire Wire Line 277 | 7200 2500 7200 2000 278 | Wire Wire Line 279 | 7200 2000 7350 2000 280 | Connection ~ 7200 2500 281 | Wire Wire Line 282 | 7350 2300 6950 2300 283 | Wire Wire Line 284 | 6950 2300 6950 5600 285 | Wire Wire Line 286 | 7350 2600 6750 2600 287 | Wire Wire Line 288 | 6750 2600 6750 3200 289 | Wire Wire Line 290 | 4900 3200 6750 3200 291 | Wire Wire Line 292 | 5700 3750 5700 4800 293 | Wire Wire Line 294 | 5700 2400 5700 3450 295 | Wire Wire Line 296 | 3550 3200 3550 3050 297 | Wire Wire Line 298 | 3550 3500 3550 3650 299 | $Comp 300 | L Connector_Generic:Conn_01x05 J1 301 | U 1 1 6488BF52 302 | P 700 3850 303 | F 0 "J1" H 618 4267 50 0000 C CNN 304 | F 1 "Conn_01x05" H 618 4176 50 0000 C CNN 305 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" H 700 3850 50 0001 C CNN 306 | F 3 "~" H 700 3850 50 0001 C CNN 307 | 1 700 3850 308 | -1 0 0 -1 309 | $EndComp 310 | Connection ~ 2100 3850 311 | Wire Wire Line 312 | 1850 3750 1850 5500 313 | $Comp 314 | L Connector:Conn_01x04_Male J2 315 | U 1 1 64866FCC 316 | P 6900 5900 317 | F 0 "J2" H 7008 6181 50 0000 C CNN 318 | F 1 "Conn_01x04_Male" H 7008 6090 50 0000 C CNN 319 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 6900 5900 50 0001 C CNN 320 | F 3 "~" H 6900 5900 50 0001 C CNN 321 | 1 6900 5900 322 | 1 0 0 -1 323 | $EndComp 324 | Wire Wire Line 325 | 7100 5900 7350 5900 326 | Wire Wire Line 327 | 7100 6000 7350 6000 328 | Wire Wire Line 329 | 7100 5600 7100 5800 330 | Connection ~ 7100 5600 331 | Wire Wire Line 332 | 7200 5000 7200 5500 333 | Wire Wire Line 334 | 7200 6100 7100 6100 335 | Connection ~ 7200 5000 336 | Text Label 7100 5900 0 50 ~ 0 337 | D- 338 | Text Label 7100 6000 0 50 ~ 0 339 | D+ 340 | Text Label 7100 6100 0 50 ~ 0 341 | PWR- 342 | Text Label 7100 5800 0 50 ~ 0 343 | PWR+ 344 | NoConn ~ 4550 3550 345 | NoConn ~ 7350 2100 346 | NoConn ~ 7350 2200 347 | NoConn ~ 7350 2400 348 | NoConn ~ 7350 4900 349 | NoConn ~ 7350 5100 350 | NoConn ~ 7350 5200 351 | NoConn ~ 7350 5700 352 | Wire Wire Line 353 | 7200 2500 7200 4800 354 | $Comp 355 | L Connector:Conn_01x03_Male J3 356 | U 1 1 648C467C 357 | P 6800 1900 358 | F 0 "J3" H 6908 2181 50 0000 C CNN 359 | F 1 "Conn_01x03_Male" H 6908 2090 50 0000 C CNN 360 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 6800 1900 50 0001 C CNN 361 | F 3 "~" H 6800 1900 50 0001 C CNN 362 | 1 6800 1900 363 | 1 0 0 -1 364 | $EndComp 365 | Wire Wire Line 366 | 7000 1800 7350 1800 367 | Wire Wire Line 368 | 7000 1900 7350 1900 369 | Wire Wire Line 370 | 7000 2000 7200 2000 371 | Connection ~ 7200 2000 372 | Text Label 7050 1800 0 50 ~ 0 373 | PicoTx 374 | Text Label 7050 1900 0 50 ~ 0 375 | PicoRx 376 | Text Label 7050 2000 0 50 ~ 0 377 | PicoGND 378 | Wire Wire Line 379 | 6750 5400 7350 5400 380 | NoConn ~ 7350 5300 381 | Wire Wire Line 382 | 7200 5500 7350 5500 383 | Connection ~ 7200 5500 384 | Wire Wire Line 385 | 7200 5500 7200 6100 386 | $Comp 387 | L Diode:BAS40-04 D2 388 | U 1 1 64938BAA 389 | P 2500 3200 390 | F 0 "D2" V 2546 3388 50 0000 L CNN 391 | F 1 "BAS40-04" V 2455 3388 50 0000 L CNN 392 | F 2 "Package_TO_SOT_SMD:SOT-23" H 2250 3500 50 0001 L CNN 393 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 2380 3300 50 0001 C CNN 394 | 1 2500 3200 395 | 0 1 -1 0 396 | $EndComp 397 | $Comp 398 | L Diode:BAS40-04 D3 399 | U 1 1 6494A88E 400 | P 2850 3200 401 | F 0 "D3" V 2896 3388 50 0000 L CNN 402 | F 1 "BAS40-04" V 2805 3388 50 0000 L CNN 403 | F 2 "Package_TO_SOT_SMD:SOT-23" H 2600 3500 50 0001 L CNN 404 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 2730 3300 50 0001 C CNN 405 | 1 2850 3200 406 | 0 1 -1 0 407 | $EndComp 408 | Wire Wire Line 409 | 2100 3850 4300 3850 410 | Wire Wire Line 411 | 2100 3200 2100 3850 412 | Wire Wire Line 413 | 2400 3200 2400 3950 414 | $Comp 415 | L Diode:BAS40-04 D1 416 | U 1 1 649742F4 417 | P 2200 3200 418 | F 0 "D1" V 2246 3388 50 0000 L CNN 419 | F 1 "BAS40-04" V 2155 3388 50 0000 L CNN 420 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1950 3500 50 0001 L CNN 421 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 2080 3300 50 0001 C CNN 422 | 1 2200 3200 423 | 0 1 -1 0 424 | $EndComp 425 | Wire Wire Line 426 | 2750 3200 2750 4050 427 | Wire Wire Line 428 | 3250 2400 3250 3300 429 | Wire Wire Line 430 | 2300 2900 2300 2400 431 | Wire Wire Line 432 | 2300 2400 2600 2400 433 | Connection ~ 3250 2400 434 | Wire Wire Line 435 | 2600 2900 2600 2400 436 | Connection ~ 2600 2400 437 | Wire Wire Line 438 | 2600 2400 2950 2400 439 | Wire Wire Line 440 | 2950 2900 2950 2400 441 | Connection ~ 2950 2400 442 | Wire Wire Line 443 | 2950 2400 3250 2400 444 | Wire Wire Line 445 | 2950 3500 2950 4800 446 | Connection ~ 2950 4800 447 | Wire Wire Line 448 | 2950 4800 3250 4800 449 | Wire Wire Line 450 | 2600 3500 2600 4800 451 | Connection ~ 2600 4800 452 | Wire Wire Line 453 | 2600 4800 2950 4800 454 | Wire Wire Line 455 | 2300 3500 2300 4800 456 | Wire Wire Line 457 | 2300 4800 2600 4800 458 | $Comp 459 | L Diode:BAS40-04 D4 460 | U 1 1 64B265D0 461 | P 3350 1150 462 | F 0 "D4" V 3304 1338 50 0000 L CNN 463 | F 1 "BAS40-04" V 3395 1338 50 0000 L CNN 464 | F 2 "Package_TO_SOT_SMD:SOT-23" H 3100 1450 50 0001 L CNN 465 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 3230 1250 50 0001 C CNN 466 | 1 3350 1150 467 | 0 1 1 0 468 | $EndComp 469 | Wire Wire Line 470 | 3700 2400 5700 2400 471 | Wire Wire Line 472 | 2450 850 3450 850 473 | Connection ~ 3450 850 474 | Wire Wire Line 475 | 3450 1450 3450 2400 476 | Connection ~ 3450 2400 477 | Wire Wire Line 478 | 3450 2400 3700 2400 479 | $Comp 480 | L Diode:BAS40-04 D5 481 | U 1 1 64B4A33F 482 | P 4600 2950 483 | F 0 "D5" H 4600 3275 50 0000 C CNN 484 | F 1 "BAS40-04" H 4600 3184 50 0000 C CNN 485 | F 2 "Package_TO_SOT_SMD:SOT-23" H 4350 3250 50 0001 L CNN 486 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 4480 3050 50 0001 C CNN 487 | 1 4600 2950 488 | 1 0 0 -1 489 | $EndComp 490 | Wire Wire Line 491 | 4300 2850 4300 3850 492 | NoConn ~ 4600 3050 493 | Wire Wire Line 494 | 3450 850 4050 850 495 | Wire Wire Line 496 | 5700 4800 7200 4800 497 | Wire Wire Line 498 | 7200 5500 6250 5500 499 | $Comp 500 | L Transistor_BJT:MMBTA92 Q1 501 | U 1 1 6491220D 502 | P 5700 5300 503 | F 0 "Q1" H 5890 5254 50 0000 L CNN 504 | F 1 "MMBTA92" H 5890 5345 50 0000 L CNN 505 | F 2 "Package_TO_SOT_SMD:SOT-23" H 5900 5225 50 0001 L CIN 506 | F 3 "https://www.onsemi.com/pub/Collateral/MMBTA92LT1-D.PDF" H 5700 5300 50 0001 L CNN 507 | 1 5700 5300 508 | 1 0 0 1 509 | $EndComp 510 | Connection ~ 6250 5500 511 | Wire Wire Line 512 | 6250 5100 6250 5200 513 | Wire Wire Line 514 | 5800 5500 6250 5500 515 | Wire Wire Line 516 | 6250 5100 6750 5100 517 | Connection ~ 6250 5100 518 | Wire Wire Line 519 | 6750 5100 6750 5400 520 | Wire Wire Line 521 | 5500 4900 7100 4900 522 | Connection ~ 7100 4900 523 | Wire Wire Line 524 | 7100 4900 7100 2400 525 | Wire Wire Line 526 | 5500 4900 5500 5300 527 | Wire Wire Line 528 | 7100 4900 7100 5600 529 | Wire Wire Line 530 | 5800 5100 5850 5100 531 | $Comp 532 | L Device:R R8 533 | U 1 1 6494F328 534 | P 6000 5100 535 | F 0 "R8" V 5793 5100 50 0000 C CNN 536 | F 1 "1K" V 5884 5100 50 0000 C CNN 537 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 5930 5100 50 0001 C CNN 538 | F 3 "~" H 6000 5100 50 0001 C CNN 539 | 1 6000 5100 540 | 0 1 1 0 541 | $EndComp 542 | Wire Wire Line 543 | 6150 5100 6250 5100 544 | $Comp 545 | L Device:C C2 546 | U 1 1 64CDADD9 547 | P 2950 1750 548 | F 0 "C2" H 3065 1796 50 0000 L CNN 549 | F 1 "10nF" H 3065 1705 50 0000 L CNN 550 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 2988 1600 50 0001 C CNN 551 | F 3 "~" H 2950 1750 50 0001 C CNN 552 | 1 2950 1750 553 | 1 0 0 -1 554 | $EndComp 555 | $Comp 556 | L Device:CP C3 557 | U 1 1 64CC957E 558 | P 3100 1150 559 | F 0 "C3" V 2845 1150 50 0000 C CNN 560 | F 1 "10uF" V 2936 1150 50 0000 C CNN 561 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 3138 1000 50 0001 C CNN 562 | F 3 "~" H 3100 1150 50 0001 C CNN 563 | 1 3100 1150 564 | 0 1 1 0 565 | $EndComp 566 | $Comp 567 | L Device:C C1 568 | U 1 1 64CDA703 569 | P 1650 1600 570 | F 0 "C1" H 1765 1646 50 0000 L CNN 571 | F 1 "1uF" H 1765 1555 50 0000 L CNN 572 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 1688 1450 50 0001 C CNN 573 | F 3 "~" H 1650 1600 50 0001 C CNN 574 | 1 1650 1600 575 | 1 0 0 -1 576 | $EndComp 577 | $Comp 578 | L Device:CP C4 579 | U 1 1 64762B46 580 | P 3250 3450 581 | F 0 "C4" H 3368 3496 50 0000 L CNN 582 | F 1 "10uF" H 3368 3405 50 0000 L CNN 583 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 3288 3300 50 0001 C CNN 584 | F 3 "~" H 3250 3450 50 0001 C CNN 585 | 1 3250 3450 586 | 1 0 0 -1 587 | $EndComp 588 | $Comp 589 | L Device:C C7 590 | U 1 1 64821DCE 591 | P 3550 3350 592 | F 0 "C7" H 3665 3396 50 0000 L CNN 593 | F 1 "1uF" H 3665 3305 50 0000 L CNN 594 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 3588 3200 50 0001 C CNN 595 | F 3 "~" H 3550 3350 50 0001 C CNN 596 | 1 3550 3350 597 | 1 0 0 -1 598 | $EndComp 599 | $Comp 600 | L Device:CP C8 601 | U 1 1 647E80AA 602 | P 6250 5350 603 | F 0 "C8" H 6368 5396 50 0000 L CNN 604 | F 1 "10uF" H 6368 5305 50 0000 L CNN 605 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 6288 5200 50 0001 C CNN 606 | F 3 "~" H 6250 5350 50 0001 C CNN 607 | 1 6250 5350 608 | 1 0 0 -1 609 | $EndComp 610 | $Comp 611 | L Diode:BAS40-04 D6 612 | U 1 1 6493E745 613 | P 1900 3200 614 | F 0 "D6" V 1946 3388 50 0000 L CNN 615 | F 1 "BAS40-04" V 1855 3388 50 0000 L CNN 616 | F 2 "Package_TO_SOT_SMD:SOT-23" H 1650 3500 50 0001 L CNN 617 | F 3 "http://www.vishay.com/docs/85701/bas40v.pdf" H 1780 3300 50 0001 C CNN 618 | 1 1900 3200 619 | 0 1 -1 0 620 | $EndComp 621 | Wire Wire Line 622 | 900 3750 1850 3750 623 | Wire Wire Line 624 | 900 3850 2100 3850 625 | Wire Wire Line 626 | 900 3950 2400 3950 627 | Connection ~ 1650 1900 628 | Wire Wire Line 629 | 1650 1900 2450 1900 630 | Wire Wire Line 631 | 2000 2200 1450 2200 632 | Wire Wire Line 633 | 1800 3200 1800 3650 634 | Connection ~ 1800 3650 635 | Wire Wire Line 636 | 1800 3650 3550 3650 637 | Wire Wire Line 638 | 2000 2900 2000 2400 639 | Wire Wire Line 640 | 2000 2400 2300 2400 641 | Connection ~ 2300 2400 642 | Wire Wire Line 643 | 2000 2200 4050 2200 644 | Wire Wire Line 645 | 900 3650 1800 3650 646 | Wire Wire Line 647 | 2000 3500 1150 3500 648 | Wire Wire Line 649 | 1150 1900 1650 1900 650 | Connection ~ 1450 4050 651 | Wire Wire Line 652 | 1450 4050 2750 4050 653 | Wire Wire Line 654 | 900 4050 1450 4050 655 | Connection ~ 1450 2200 656 | Connection ~ 1150 2200 657 | Wire Wire Line 658 | 1150 2200 1150 1900 659 | Wire Wire Line 660 | 1150 2200 1150 3500 661 | Wire Wire Line 662 | 1450 2200 1450 4050 663 | $Comp 664 | L Device:CP C6 665 | U 1 1 64D7B06C 666 | P 1300 2200 667 | F 0 "C6" H 1182 2154 50 0000 R CNN 668 | F 1 "10uF" H 1182 2245 50 0000 R CNN 669 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 1338 2050 50 0001 C CNN 670 | F 3 "~" H 1300 2200 50 0001 C CNN 671 | 1 1300 2200 672 | 0 1 1 0 673 | $EndComp 674 | Wire Wire Line 675 | 3750 5600 6950 5600 676 | $Comp 677 | L Device:R R4 678 | U 1 1 6484D5CC 679 | P 3600 5600 680 | F 0 "R4" V 3393 5600 50 0000 C CNN 681 | F 1 "1K" V 3484 5600 50 0000 C CNN 682 | F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" V 3530 5600 50 0001 C CNN 683 | F 3 "~" H 3600 5600 50 0001 C CNN 684 | 1 3600 5600 685 | 0 1 1 0 686 | $EndComp 687 | $EndSCHEMATC 688 | -------------------------------------------------------------------------------- /kicad/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name SerialMouseBlasterPCB)(type KiCad)(uri ${KIPRJMOD}/SerialMouseBlasterPCB.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /kicad/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name SerialMouseBlasterPCB)(type Legacy)(uri ${KIPRJMOD}/SerialMouseBlasterPCB.lib)(options "")(descr "")) 3 | (lib (name SerialMouseBlasterPCB-rescue)(type Legacy)(uri ${KIPRJMOD}/SerialMouseBlasterPCB-rescue.lib)(options "")(descr "")) 4 | ) 5 | --------------------------------------------------------------------------------