├── .gitignore ├── LICENSE ├── README.md ├── images ├── assembled.jpg ├── debugprobe.jpg ├── headers.jpg ├── pcb.png ├── tiny-picoprobe.jpg └── tiny-picoprobe.png ├── kerbers ├── tiny-picoprobe-v1.1.zip └── tiny-picoprobe-v1.zip ├── picoprobe-pcb.kicad_pcb ├── picoprobe-pcb.kicad_pro └── picoprobe-pcb.kicad_sch /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | 17 | # Netlist files (exported from Eeschema) 18 | *.net 19 | 20 | # Autorouter files (exported from Pcbnew) 21 | *.dsn 22 | *.ses 23 | 24 | # Exported BOM files 25 | *.xml 26 | *.csv 27 | 28 | .DS_Store 29 | 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tiny-picoprobe 2 | 3 | Tiny PicoProbe is a small PCB to mount Raspberry Pi Pico, when you want to use [PicoProbe](https://github.com/raspberrypi/picoprobe) to debug your [Raspberry Pi Pico](https://www.raspberrypi.com/products/raspberry-pi-pico/) projects without a breadboard... 4 | 5 | ![Shrinkwrapped Tiny PicoProbe](images/tiny-picoprobe.jpg) 6 | 7 | This was created to make it "handsfree" to update firmware when developing [Fanpico (Smart PWM (PC) Fan Controller)](https://github.com/tjko/fanpico). 8 | 9 | If you are not already familiar with PicoProbe see Appendix A in [Getting Started With Pico (PDF)](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf). 10 | 11 | There is also tutorial here: [Raspberry Pi Pico and RP2040 - C/C++ Part 2: Debugging with VS Code](https://www.digikey.com/en/maker/projects/raspberry-pi-pico-and-rp2040-cc-part-2-debugging-with-vs-code/470abc7efb07432b82c95f6f67f184c0) 12 | 13 | **Update (February 2023)**: There is finally official "picoprobe" available: [Raspberry Pi Debug Probe](https://www.raspberrypi.com/products/debug-probe/). 14 | which may be better choice if you're looking for ready-made solution. But if you prefer a DIY solution, continue reading... 15 | 16 | 17 | New Debug Probe makes "tiny-picoprobe" look not so small anymore: 18 | 19 | ![size comparison](images/debugprobe.jpg) 20 | 21 | 22 | 23 | ## PCB 24 | PCB provides pinout to connect to Pico's SWD ("DEBUG") connector with flat (3-pin) ribbon cable, and it also has pinouts for UART and powering the Pico being programmed/debugged. 25 | 26 | ![Tiny PicoProbe PCB](images/tiny-picoprobe.png) 27 | 28 | Designed with [KiCad](https://www.kicad.org/) 6.0. PCB allows mounting Pico directly or using headers: 29 | 30 | ![Assembled Tiny PicoProbe](images/assembled.jpg) 31 | ![Tiny PicoProbe with headers](images/headers.jpg) 32 | 33 | ## Kerbers 34 | Kerber files ready to be sent to a PCB maker (like JLCPCB, PCBWay, etc...): 35 | * [PCB Version 1.0](kerbers/tiny-picoprobe-v1.zip) 36 | * [PCB Version 1.1](kerbers/tiny-picoprobe-v1.1.zip) 37 | 38 | You will only need the ZIP file (link above) to order PCBs. Simply upload the ZIP file to a PCB maker website. Then you typically only need to only select quantity and PCB color. If ordering from JLCPCB you can also choose to "Specify a location" in the Remove Order Number option (this will place order number on the PCB so that the Pico will cover it). 39 | 40 | ![Tiny PicoProbe PCB](images/pcb.png) 41 | 42 | ## Assembly 43 | PCB contains footprints for a 0805 size SMD LED and resistor to provide power indicator. Power indicator is optional. 44 | 45 | ID|Type|Description|Mouser P/N|LCSC P/N 46 | --|----|-----------|----------|--------- 47 | D1|LED (0805)|Pad is suitable for handsoldering 0805 size LEDs, 0603 should work as well...|710-150080GS75000 (?)|C434432 48 | R1|7.5k (0805)|Depending on LED used choose appropriate resistor. Green high-intensity 0805 LEDs typically work nicely with resistor in 5k to 10k range|603-RC0805FR-077K5L|C229003 49 | 50 | Note, if soldering Pico directly on the PCB, then 1" diameter shrink tubing can be used to wrap the pico and PCB in nice insulated package. 51 | 52 | ## DIY Kits 53 | 54 | If you'd like to support Open Source Hardware development. DIY Kits are made available in limited quantity. 55 | 56 | Check availability here: [eBay](https://www.ebay.com/usr/oh6lxv) 57 | 58 | ## Credits 59 | Idea for this PCB came from [Fabien-Chouteau/picoprobe-pcb](https://github.com/Fabien-Chouteau/picoprobe-pcb) (check his version as he sells it on Tindie). 60 | 61 | KiCad Pico model/footprint that was used can be found here [ncarandini/KiCad-RP-Pico](https://github.com/ncarandini/KiCad-RP-Pico) 62 | -------------------------------------------------------------------------------- /images/assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/assembled.jpg -------------------------------------------------------------------------------- /images/debugprobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/debugprobe.jpg -------------------------------------------------------------------------------- /images/headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/headers.jpg -------------------------------------------------------------------------------- /images/pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/pcb.png -------------------------------------------------------------------------------- /images/tiny-picoprobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/tiny-picoprobe.jpg -------------------------------------------------------------------------------- /images/tiny-picoprobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/images/tiny-picoprobe.png -------------------------------------------------------------------------------- /kerbers/tiny-picoprobe-v1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/kerbers/tiny-picoprobe-v1.1.zip -------------------------------------------------------------------------------- /kerbers/tiny-picoprobe-v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjko/tiny-picoprobe/00a04edcba9d8133a492e771712a0b0eb427cb85/kerbers/tiny-picoprobe-v1.zip -------------------------------------------------------------------------------- /picoprobe-pcb.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.09999999999999999, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.15, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.0 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "version": 2 61 | }, 62 | "rule_severities": { 63 | "annular_width": "error", 64 | "clearance": "error", 65 | "copper_edge_clearance": "error", 66 | "courtyards_overlap": "error", 67 | "diff_pair_gap_out_of_range": "error", 68 | "diff_pair_uncoupled_length_too_long": "error", 69 | "drill_out_of_range": "error", 70 | "duplicate_footprints": "warning", 71 | "extra_footprint": "warning", 72 | "footprint_type_mismatch": "error", 73 | "hole_clearance": "error", 74 | "hole_near_hole": "error", 75 | "invalid_outline": "error", 76 | "item_on_disabled_layer": "error", 77 | "items_not_allowed": "error", 78 | "length_out_of_range": "error", 79 | "malformed_courtyard": "error", 80 | "microvia_drill_out_of_range": "error", 81 | "missing_courtyard": "ignore", 82 | "missing_footprint": "warning", 83 | "net_conflict": "warning", 84 | "npth_inside_courtyard": "ignore", 85 | "padstack": "error", 86 | "pth_inside_courtyard": "ignore", 87 | "shorting_items": "error", 88 | "silk_over_copper": "warning", 89 | "silk_overlap": "warning", 90 | "skew_out_of_range": "error", 91 | "through_hole_pad_without_hole": "error", 92 | "too_many_vias": "error", 93 | "track_dangling": "warning", 94 | "track_width": "error", 95 | "tracks_crossing": "error", 96 | "unconnected_items": "error", 97 | "unresolved_variable": "error", 98 | "via_dangling": "warning", 99 | "zone_has_empty_net": "error", 100 | "zones_intersect": "error" 101 | }, 102 | "rules": { 103 | "allow_blind_buried_vias": false, 104 | "allow_microvias": false, 105 | "max_error": 0.005, 106 | "min_clearance": 0.0, 107 | "min_copper_edge_clearance": 0.0, 108 | "min_hole_clearance": 0.25, 109 | "min_hole_to_hole": 0.25, 110 | "min_microvia_diameter": 0.19999999999999998, 111 | "min_microvia_drill": 0.09999999999999999, 112 | "min_silk_clearance": 0.0, 113 | "min_through_hole_diameter": 0.3, 114 | "min_track_width": 0.19999999999999998, 115 | "min_via_annular_width": 0.049999999999999996, 116 | "min_via_diameter": 0.39999999999999997, 117 | "solder_mask_clearance": 0.0, 118 | "solder_mask_min_width": 0.0, 119 | "use_height_for_length_calcs": true 120 | }, 121 | "track_widths": [ 122 | 0.0, 123 | 0.2, 124 | 0.5, 125 | 0.75 126 | ], 127 | "via_dimensions": [ 128 | { 129 | "diameter": 0.0, 130 | "drill": 0.0 131 | } 132 | ], 133 | "zones_allow_external_fillets": false, 134 | "zones_use_no_outline": true 135 | }, 136 | "layer_presets": [] 137 | }, 138 | "boards": [], 139 | "cvpcb": { 140 | "equivalence_files": [] 141 | }, 142 | "erc": { 143 | "erc_exclusions": [], 144 | "meta": { 145 | "version": 0 146 | }, 147 | "pin_map": [ 148 | [ 149 | 0, 150 | 0, 151 | 0, 152 | 0, 153 | 0, 154 | 0, 155 | 1, 156 | 0, 157 | 0, 158 | 0, 159 | 0, 160 | 2 161 | ], 162 | [ 163 | 0, 164 | 2, 165 | 0, 166 | 1, 167 | 0, 168 | 0, 169 | 1, 170 | 0, 171 | 2, 172 | 2, 173 | 2, 174 | 2 175 | ], 176 | [ 177 | 0, 178 | 0, 179 | 0, 180 | 0, 181 | 0, 182 | 0, 183 | 1, 184 | 0, 185 | 1, 186 | 0, 187 | 1, 188 | 2 189 | ], 190 | [ 191 | 0, 192 | 1, 193 | 0, 194 | 0, 195 | 0, 196 | 0, 197 | 1, 198 | 1, 199 | 2, 200 | 1, 201 | 1, 202 | 2 203 | ], 204 | [ 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 1, 212 | 0, 213 | 0, 214 | 0, 215 | 0, 216 | 2 217 | ], 218 | [ 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 0, 228 | 0, 229 | 0, 230 | 2 231 | ], 232 | [ 233 | 1, 234 | 1, 235 | 1, 236 | 1, 237 | 1, 238 | 0, 239 | 1, 240 | 1, 241 | 1, 242 | 1, 243 | 1, 244 | 2 245 | ], 246 | [ 247 | 0, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 1, 254 | 0, 255 | 0, 256 | 0, 257 | 0, 258 | 2 259 | ], 260 | [ 261 | 0, 262 | 2, 263 | 1, 264 | 2, 265 | 0, 266 | 0, 267 | 1, 268 | 0, 269 | 2, 270 | 2, 271 | 2, 272 | 2 273 | ], 274 | [ 275 | 0, 276 | 2, 277 | 0, 278 | 1, 279 | 0, 280 | 0, 281 | 1, 282 | 0, 283 | 2, 284 | 0, 285 | 0, 286 | 2 287 | ], 288 | [ 289 | 0, 290 | 2, 291 | 1, 292 | 1, 293 | 0, 294 | 0, 295 | 1, 296 | 0, 297 | 2, 298 | 0, 299 | 0, 300 | 2 301 | ], 302 | [ 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2, 312 | 2, 313 | 2, 314 | 2 315 | ] 316 | ], 317 | "rule_severities": { 318 | "bus_definition_conflict": "error", 319 | "bus_entry_needed": "error", 320 | "bus_label_syntax": "error", 321 | "bus_to_bus_conflict": "error", 322 | "bus_to_net_conflict": "error", 323 | "different_unit_footprint": "error", 324 | "different_unit_net": "error", 325 | "duplicate_reference": "error", 326 | "duplicate_sheet_names": "error", 327 | "extra_units": "error", 328 | "global_label_dangling": "warning", 329 | "hier_label_mismatch": "error", 330 | "label_dangling": "error", 331 | "lib_symbol_issues": "warning", 332 | "multiple_net_names": "warning", 333 | "net_not_bus_member": "warning", 334 | "no_connect_connected": "warning", 335 | "no_connect_dangling": "warning", 336 | "pin_not_connected": "error", 337 | "pin_not_driven": "error", 338 | "pin_to_pin": "warning", 339 | "power_pin_not_driven": "error", 340 | "similar_labels": "warning", 341 | "unannotated": "error", 342 | "unit_value_mismatch": "error", 343 | "unresolved_variable": "error", 344 | "wire_dangling": "error" 345 | } 346 | }, 347 | "libraries": { 348 | "pinned_footprint_libs": [], 349 | "pinned_symbol_libs": [] 350 | }, 351 | "meta": { 352 | "filename": "picoprobe-pcb.kicad_pro", 353 | "version": 1 354 | }, 355 | "net_settings": { 356 | "classes": [ 357 | { 358 | "bus_width": 12.0, 359 | "clearance": 0.2, 360 | "diff_pair_gap": 0.25, 361 | "diff_pair_via_gap": 0.25, 362 | "diff_pair_width": 0.2, 363 | "line_style": 0, 364 | "microvia_diameter": 0.3, 365 | "microvia_drill": 0.1, 366 | "name": "Default", 367 | "pcb_color": "rgba(0, 0, 0, 0.000)", 368 | "schematic_color": "rgba(0, 0, 0, 0.000)", 369 | "track_width": 0.25, 370 | "via_diameter": 0.8, 371 | "via_drill": 0.4, 372 | "wire_width": 6.0 373 | } 374 | ], 375 | "meta": { 376 | "version": 2 377 | }, 378 | "net_colors": null 379 | }, 380 | "pcbnew": { 381 | "last_paths": { 382 | "gencad": "", 383 | "idf": "", 384 | "netlist": "", 385 | "specctra_dsn": "", 386 | "step": "", 387 | "vrml": "" 388 | }, 389 | "page_layout_descr_file": "" 390 | }, 391 | "schematic": { 392 | "annotate_start_num": 0, 393 | "drawing": { 394 | "default_line_thickness": 6.0, 395 | "default_text_size": 50.0, 396 | "field_names": [], 397 | "intersheets_ref_own_page": false, 398 | "intersheets_ref_prefix": "", 399 | "intersheets_ref_short": false, 400 | "intersheets_ref_show": false, 401 | "intersheets_ref_suffix": "", 402 | "junction_size_choice": 3, 403 | "label_size_ratio": 0.375, 404 | "pin_symbol_size": 25.0, 405 | "text_offset_ratio": 0.15 406 | }, 407 | "legacy_lib_dir": "", 408 | "legacy_lib_list": [], 409 | "meta": { 410 | "version": 1 411 | }, 412 | "net_format_name": "", 413 | "ngspice": { 414 | "fix_include_paths": true, 415 | "fix_passive_vals": false, 416 | "meta": { 417 | "version": 0 418 | }, 419 | "model_mode": 0, 420 | "workbook_filename": "" 421 | }, 422 | "page_layout_descr_file": "", 423 | "plot_directory": "", 424 | "spice_adjust_passive_values": false, 425 | "spice_external_command": "spice \"%I\"", 426 | "subpart_first_id": 65, 427 | "subpart_id_separator": 0 428 | }, 429 | "sheets": [ 430 | [ 431 | "76d14182-5fab-4f07-b34a-9bc7b5ea7c05", 432 | "" 433 | ] 434 | ], 435 | "text_variables": {} 436 | } 437 | -------------------------------------------------------------------------------- /picoprobe-pcb.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 76d14182-5fab-4f07-b34a-9bc7b5ea7c05) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PicoProbe PCB") 9 | (date "2022-02-04") 10 | (rev "1.0") 11 | (comment 3 "Compact PicoProbe, no breadboard needed.") 12 | ) 13 | 14 | (lib_symbols 15 | (symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 16 | (property "Reference" "J" (id 0) (at 0 10.16 0) 17 | (effects (font (size 1.27 1.27))) 18 | ) 19 | (property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0) 20 | (effects (font (size 1.27 1.27))) 21 | ) 22 | (property "Footprint" "" (id 2) (at 0 0 0) 23 | (effects (font (size 1.27 1.27)) hide) 24 | ) 25 | (property "Datasheet" "~" (id 3) (at 0 0 0) 26 | (effects (font (size 1.27 1.27)) hide) 27 | ) 28 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 29 | (effects (font (size 1.27 1.27)) hide) 30 | ) 31 | (property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 32 | (effects (font (size 1.27 1.27)) hide) 33 | ) 34 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 35 | (effects (font (size 1.27 1.27)) hide) 36 | ) 37 | (symbol "Conn_01x08_1_1" 38 | (rectangle (start -1.27 -10.033) (end 0 -10.287) 39 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 40 | (fill (type none)) 41 | ) 42 | (rectangle (start -1.27 -7.493) (end 0 -7.747) 43 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 44 | (fill (type none)) 45 | ) 46 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 47 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 48 | (fill (type none)) 49 | ) 50 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 51 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 52 | (fill (type none)) 53 | ) 54 | (rectangle (start -1.27 0.127) (end 0 -0.127) 55 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 56 | (fill (type none)) 57 | ) 58 | (rectangle (start -1.27 2.667) (end 0 2.413) 59 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 60 | (fill (type none)) 61 | ) 62 | (rectangle (start -1.27 5.207) (end 0 4.953) 63 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 64 | (fill (type none)) 65 | ) 66 | (rectangle (start -1.27 7.747) (end 0 7.493) 67 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 68 | (fill (type none)) 69 | ) 70 | (rectangle (start -1.27 8.89) (end 1.27 -11.43) 71 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 72 | (fill (type background)) 73 | ) 74 | (pin passive line (at -5.08 7.62 0) (length 3.81) 75 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 76 | (number "1" (effects (font (size 1.27 1.27)))) 77 | ) 78 | (pin passive line (at -5.08 5.08 0) (length 3.81) 79 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 80 | (number "2" (effects (font (size 1.27 1.27)))) 81 | ) 82 | (pin passive line (at -5.08 2.54 0) (length 3.81) 83 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 84 | (number "3" (effects (font (size 1.27 1.27)))) 85 | ) 86 | (pin passive line (at -5.08 0 0) (length 3.81) 87 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 88 | (number "4" (effects (font (size 1.27 1.27)))) 89 | ) 90 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 91 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 92 | (number "5" (effects (font (size 1.27 1.27)))) 93 | ) 94 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 95 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 96 | (number "6" (effects (font (size 1.27 1.27)))) 97 | ) 98 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 99 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 100 | (number "7" (effects (font (size 1.27 1.27)))) 101 | ) 102 | (pin passive line (at -5.08 -10.16 0) (length 3.81) 103 | (name "Pin_8" (effects (font (size 1.27 1.27)))) 104 | (number "8" (effects (font (size 1.27 1.27)))) 105 | ) 106 | ) 107 | ) 108 | (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 109 | (property "Reference" "D" (id 0) (at 0 2.54 0) 110 | (effects (font (size 1.27 1.27))) 111 | ) 112 | (property "Value" "LED" (id 1) (at 0 -2.54 0) 113 | (effects (font (size 1.27 1.27))) 114 | ) 115 | (property "Footprint" "" (id 2) (at 0 0 0) 116 | (effects (font (size 1.27 1.27)) hide) 117 | ) 118 | (property "Datasheet" "~" (id 3) (at 0 0 0) 119 | (effects (font (size 1.27 1.27)) hide) 120 | ) 121 | (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) 128 | (effects (font (size 1.27 1.27)) hide) 129 | ) 130 | (symbol "LED_0_1" 131 | (polyline 132 | (pts 133 | (xy -1.27 -1.27) 134 | (xy -1.27 1.27) 135 | ) 136 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 137 | (fill (type none)) 138 | ) 139 | (polyline 140 | (pts 141 | (xy -1.27 0) 142 | (xy 1.27 0) 143 | ) 144 | (stroke (width 0) (type default) (color 0 0 0 0)) 145 | (fill (type none)) 146 | ) 147 | (polyline 148 | (pts 149 | (xy 1.27 -1.27) 150 | (xy 1.27 1.27) 151 | (xy -1.27 0) 152 | (xy 1.27 -1.27) 153 | ) 154 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 155 | (fill (type none)) 156 | ) 157 | (polyline 158 | (pts 159 | (xy -3.048 -0.762) 160 | (xy -4.572 -2.286) 161 | (xy -3.81 -2.286) 162 | (xy -4.572 -2.286) 163 | (xy -4.572 -1.524) 164 | ) 165 | (stroke (width 0) (type default) (color 0 0 0 0)) 166 | (fill (type none)) 167 | ) 168 | (polyline 169 | (pts 170 | (xy -1.778 -0.762) 171 | (xy -3.302 -2.286) 172 | (xy -2.54 -2.286) 173 | (xy -3.302 -2.286) 174 | (xy -3.302 -1.524) 175 | ) 176 | (stroke (width 0) (type default) (color 0 0 0 0)) 177 | (fill (type none)) 178 | ) 179 | ) 180 | (symbol "LED_1_1" 181 | (pin passive line (at -3.81 0 0) (length 2.54) 182 | (name "K" (effects (font (size 1.27 1.27)))) 183 | (number "1" (effects (font (size 1.27 1.27)))) 184 | ) 185 | (pin passive line (at 3.81 0 180) (length 2.54) 186 | (name "A" (effects (font (size 1.27 1.27)))) 187 | (number "2" (effects (font (size 1.27 1.27)))) 188 | ) 189 | ) 190 | ) 191 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 192 | (property "Reference" "R" (id 0) (at 2.032 0 90) 193 | (effects (font (size 1.27 1.27))) 194 | ) 195 | (property "Value" "R" (id 1) (at 0 0 90) 196 | (effects (font (size 1.27 1.27))) 197 | ) 198 | (property "Footprint" "" (id 2) (at -1.778 0 90) 199 | (effects (font (size 1.27 1.27)) hide) 200 | ) 201 | (property "Datasheet" "~" (id 3) (at 0 0 0) 202 | (effects (font (size 1.27 1.27)) hide) 203 | ) 204 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 205 | (effects (font (size 1.27 1.27)) hide) 206 | ) 207 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 208 | (effects (font (size 1.27 1.27)) hide) 209 | ) 210 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 211 | (effects (font (size 1.27 1.27)) hide) 212 | ) 213 | (symbol "R_0_1" 214 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 215 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 216 | (fill (type none)) 217 | ) 218 | ) 219 | (symbol "R_1_1" 220 | (pin passive line (at 0 3.81 270) (length 1.27) 221 | (name "~" (effects (font (size 1.27 1.27)))) 222 | (number "1" (effects (font (size 1.27 1.27)))) 223 | ) 224 | (pin passive line (at 0 -3.81 90) (length 1.27) 225 | (name "~" (effects (font (size 1.27 1.27)))) 226 | (number "2" (effects (font (size 1.27 1.27)))) 227 | ) 228 | ) 229 | ) 230 | (symbol "Graphic:Logo_Open_Hardware_Small" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 231 | (property "Reference" "#LOGO" (id 0) (at 0 6.985 0) 232 | (effects (font (size 1.27 1.27)) hide) 233 | ) 234 | (property "Value" "Logo_Open_Hardware_Small" (id 1) (at 0 -5.715 0) 235 | (effects (font (size 1.27 1.27)) hide) 236 | ) 237 | (property "Footprint" "" (id 2) (at 0 0 0) 238 | (effects (font (size 1.27 1.27)) hide) 239 | ) 240 | (property "Datasheet" "~" (id 3) (at 0 0 0) 241 | (effects (font (size 1.27 1.27)) hide) 242 | ) 243 | (property "ki_keywords" "Logo" (id 4) (at 0 0 0) 244 | (effects (font (size 1.27 1.27)) hide) 245 | ) 246 | (property "ki_description" "Open Hardware logo, small" (id 5) (at 0 0 0) 247 | (effects (font (size 1.27 1.27)) hide) 248 | ) 249 | (symbol "Logo_Open_Hardware_Small_0_1" 250 | (polyline 251 | (pts 252 | (xy 3.3528 -4.3434) 253 | (xy 3.302 -4.318) 254 | (xy 3.175 -4.2418) 255 | (xy 2.9972 -4.1148) 256 | (xy 2.7686 -3.9624) 257 | (xy 2.54 -3.81) 258 | (xy 2.3622 -3.7084) 259 | (xy 2.2352 -3.6068) 260 | (xy 2.1844 -3.5814) 261 | (xy 2.159 -3.6068) 262 | (xy 2.0574 -3.6576) 263 | (xy 1.905 -3.7338) 264 | (xy 1.8034 -3.7846) 265 | (xy 1.6764 -3.8354) 266 | (xy 1.6002 -3.8354) 267 | (xy 1.6002 -3.8354) 268 | (xy 1.5494 -3.7338) 269 | (xy 1.4732 -3.5306) 270 | (xy 1.3462 -3.302) 271 | (xy 1.2446 -3.0226) 272 | (xy 1.1176 -2.7178) 273 | (xy 0.9652 -2.413) 274 | (xy 0.8636 -2.1082) 275 | (xy 0.7366 -1.8288) 276 | (xy 0.6604 -1.6256) 277 | (xy 0.6096 -1.4732) 278 | (xy 0.5842 -1.397) 279 | (xy 0.5842 -1.397) 280 | (xy 0.6604 -1.3208) 281 | (xy 0.7874 -1.2446) 282 | (xy 1.0414 -1.016) 283 | (xy 1.2954 -0.6858) 284 | (xy 1.4478 -0.3302) 285 | (xy 1.524 0.0762) 286 | (xy 1.4732 0.4572) 287 | (xy 1.3208 0.8128) 288 | (xy 1.0668 1.143) 289 | (xy 0.762 1.3716) 290 | (xy 0.4064 1.524) 291 | (xy 0 1.5748) 292 | (xy -0.381 1.5494) 293 | (xy -0.7366 1.397) 294 | (xy -1.0668 1.143) 295 | (xy -1.2192 0.9906) 296 | (xy -1.397 0.6604) 297 | (xy -1.524 0.3048) 298 | (xy -1.524 0.2286) 299 | (xy -1.4986 -0.1778) 300 | (xy -1.397 -0.5334) 301 | (xy -1.1938 -0.8636) 302 | (xy -0.9144 -1.143) 303 | (xy -0.8636 -1.1684) 304 | (xy -0.7366 -1.27) 305 | (xy -0.635 -1.3462) 306 | (xy -0.5842 -1.397) 307 | (xy -1.0668 -2.5908) 308 | (xy -1.143 -2.794) 309 | (xy -1.2954 -3.1242) 310 | (xy -1.397 -3.4036) 311 | (xy -1.4986 -3.6322) 312 | (xy -1.5748 -3.7846) 313 | (xy -1.6002 -3.8354) 314 | (xy -1.6002 -3.8354) 315 | (xy -1.651 -3.8354) 316 | (xy -1.7272 -3.81) 317 | (xy -1.905 -3.7338) 318 | (xy -2.0066 -3.683) 319 | (xy -2.1336 -3.6068) 320 | (xy -2.2098 -3.5814) 321 | (xy -2.2606 -3.6068) 322 | (xy -2.3622 -3.683) 323 | (xy -2.54 -3.81) 324 | (xy -2.7686 -3.9624) 325 | (xy -2.9718 -4.0894) 326 | (xy -3.1496 -4.2164) 327 | (xy -3.302 -4.318) 328 | (xy -3.3528 -4.3434) 329 | (xy -3.3782 -4.3434) 330 | (xy -3.429 -4.318) 331 | (xy -3.5306 -4.2164) 332 | (xy -3.7084 -4.064) 333 | (xy -3.937 -3.8354) 334 | (xy -3.9624 -3.81) 335 | (xy -4.1656 -3.6068) 336 | (xy -4.318 -3.4544) 337 | (xy -4.4196 -3.3274) 338 | (xy -4.445 -3.2766) 339 | (xy -4.445 -3.2766) 340 | (xy -4.4196 -3.2258) 341 | (xy -4.318 -3.0734) 342 | (xy -4.2164 -2.8956) 343 | (xy -4.064 -2.667) 344 | (xy -3.6576 -2.0828) 345 | (xy -3.8862 -1.5494) 346 | (xy -3.937 -1.3716) 347 | (xy -4.0386 -1.1684) 348 | (xy -4.0894 -1.0414) 349 | (xy -4.1148 -0.9652) 350 | (xy -4.191 -0.9398) 351 | (xy -4.318 -0.9144) 352 | (xy -4.5466 -0.8636) 353 | (xy -4.8006 -0.8128) 354 | (xy -5.0546 -0.7874) 355 | (xy -5.2578 -0.7366) 356 | (xy -5.4356 -0.7112) 357 | (xy -5.5118 -0.6858) 358 | (xy -5.5118 -0.6858) 359 | (xy -5.5372 -0.635) 360 | (xy -5.5372 -0.5588) 361 | (xy -5.5372 -0.4318) 362 | (xy -5.5626 -0.2286) 363 | (xy -5.5626 0.0762) 364 | (xy -5.5626 0.127) 365 | (xy -5.5372 0.4064) 366 | (xy -5.5372 0.635) 367 | (xy -5.5372 0.762) 368 | (xy -5.5372 0.8382) 369 | (xy -5.5372 0.8382) 370 | (xy -5.461 0.8382) 371 | (xy -5.3086 0.889) 372 | (xy -5.08 0.9144) 373 | (xy -4.826 0.9652) 374 | (xy -4.8006 0.9906) 375 | (xy -4.5466 1.0414) 376 | (xy -4.318 1.0668) 377 | (xy -4.1656 1.1176) 378 | (xy -4.0894 1.143) 379 | (xy -4.0894 1.143) 380 | (xy -4.0386 1.2446) 381 | (xy -3.9624 1.4224) 382 | (xy -3.8608 1.6256) 383 | (xy -3.7846 1.8288) 384 | (xy -3.7084 2.0066) 385 | (xy -3.6576 2.159) 386 | (xy -3.6322 2.2098) 387 | (xy -3.6322 2.2098) 388 | (xy -3.683 2.286) 389 | (xy -3.7592 2.413) 390 | (xy -3.8862 2.5908) 391 | (xy -4.064 2.8194) 392 | (xy -4.064 2.8448) 393 | (xy -4.2164 3.0734) 394 | (xy -4.3434 3.2512) 395 | (xy -4.4196 3.3782) 396 | (xy -4.445 3.4544) 397 | (xy -4.445 3.4544) 398 | (xy -4.3942 3.5052) 399 | (xy -4.2926 3.6322) 400 | (xy -4.1148 3.81) 401 | (xy -3.937 4.0132) 402 | (xy -3.8608 4.064) 403 | (xy -3.6576 4.2926) 404 | (xy -3.5052 4.4196) 405 | (xy -3.4036 4.4958) 406 | (xy -3.3528 4.5212) 407 | (xy -3.3528 4.5212) 408 | (xy -3.302 4.4704) 409 | (xy -3.1496 4.3688) 410 | (xy -2.9718 4.2418) 411 | (xy -2.7432 4.0894) 412 | (xy -2.7178 4.0894) 413 | (xy -2.4892 3.937) 414 | (xy -2.3114 3.81) 415 | (xy -2.1844 3.7084) 416 | (xy -2.1336 3.683) 417 | (xy -2.1082 3.683) 418 | (xy -2.032 3.7084) 419 | (xy -1.8542 3.7592) 420 | (xy -1.6764 3.8354) 421 | (xy -1.4732 3.937) 422 | (xy -1.27 4.0132) 423 | (xy -1.143 4.064) 424 | (xy -1.0668 4.1148) 425 | (xy -1.0668 4.1148) 426 | (xy -1.0414 4.191) 427 | (xy -1.016 4.3434) 428 | (xy -0.9652 4.572) 429 | (xy -0.9144 4.8514) 430 | (xy -0.889 4.9022) 431 | (xy -0.8382 5.1562) 432 | (xy -0.8128 5.3848) 433 | (xy -0.7874 5.5372) 434 | (xy -0.762 5.588) 435 | (xy -0.7112 5.6134) 436 | (xy -0.5842 5.6134) 437 | (xy -0.4064 5.6134) 438 | (xy -0.1524 5.6134) 439 | (xy 0.0762 5.6134) 440 | (xy 0.3302 5.6134) 441 | (xy 0.5334 5.6134) 442 | (xy 0.6858 5.588) 443 | (xy 0.7366 5.588) 444 | (xy 0.7366 5.588) 445 | (xy 0.762 5.5118) 446 | (xy 0.8128 5.334) 447 | (xy 0.8382 5.1054) 448 | (xy 0.9144 4.826) 449 | (xy 0.9144 4.7752) 450 | (xy 0.9652 4.5212) 451 | (xy 1.016 4.2926) 452 | (xy 1.0414 4.1402) 453 | (xy 1.0668 4.0894) 454 | (xy 1.0668 4.0894) 455 | (xy 1.1938 4.0386) 456 | (xy 1.3716 3.9624) 457 | (xy 1.5748 3.8608) 458 | (xy 2.0828 3.6576) 459 | (xy 2.7178 4.0894) 460 | (xy 2.7686 4.1402) 461 | (xy 2.9972 4.2926) 462 | (xy 3.175 4.4196) 463 | (xy 3.302 4.4958) 464 | (xy 3.3782 4.5212) 465 | (xy 3.3782 4.5212) 466 | (xy 3.429 4.4704) 467 | (xy 3.556 4.3434) 468 | (xy 3.7338 4.191) 469 | (xy 3.9116 3.9878) 470 | (xy 4.064 3.8354) 471 | (xy 4.2418 3.6576) 472 | (xy 4.3434 3.556) 473 | (xy 4.4196 3.4798) 474 | (xy 4.4196 3.429) 475 | (xy 4.4196 3.4036) 476 | (xy 4.3942 3.3274) 477 | (xy 4.2926 3.2004) 478 | (xy 4.1656 2.9972) 479 | (xy 4.0132 2.794) 480 | (xy 3.8862 2.5908) 481 | (xy 3.7592 2.3876) 482 | (xy 3.6576 2.2352) 483 | (xy 3.6322 2.159) 484 | (xy 3.6322 2.1336) 485 | (xy 3.683 2.0066) 486 | (xy 3.7592 1.8288) 487 | (xy 3.8608 1.6002) 488 | (xy 4.064 1.1176) 489 | (xy 4.3942 1.0414) 490 | (xy 4.5974 1.016) 491 | (xy 4.8768 0.9652) 492 | (xy 5.1308 0.9144) 493 | (xy 5.5372 0.8382) 494 | (xy 5.5626 -0.6604) 495 | (xy 5.4864 -0.6858) 496 | (xy 5.4356 -0.6858) 497 | (xy 5.2832 -0.7366) 498 | (xy 5.0546 -0.762) 499 | (xy 4.8006 -0.8128) 500 | (xy 4.5974 -0.8636) 501 | (xy 4.3688 -0.9144) 502 | (xy 4.2164 -0.9398) 503 | (xy 4.1402 -0.9398) 504 | (xy 4.1148 -0.9652) 505 | (xy 4.064 -1.0668) 506 | (xy 3.9878 -1.2446) 507 | (xy 3.9116 -1.4478) 508 | (xy 3.81 -1.651) 509 | (xy 3.7338 -1.8542) 510 | (xy 3.683 -2.0066) 511 | (xy 3.6576 -2.0828) 512 | (xy 3.683 -2.1336) 513 | (xy 3.7846 -2.2606) 514 | (xy 3.8862 -2.4638) 515 | (xy 4.0386 -2.667) 516 | (xy 4.191 -2.8956) 517 | (xy 4.318 -3.0734) 518 | (xy 4.3942 -3.2004) 519 | (xy 4.445 -3.2766) 520 | (xy 4.4196 -3.3274) 521 | (xy 4.3434 -3.429) 522 | (xy 4.1656 -3.5814) 523 | (xy 3.937 -3.8354) 524 | (xy 3.8862 -3.8608) 525 | (xy 3.683 -4.064) 526 | (xy 3.5306 -4.2164) 527 | (xy 3.4036 -4.318) 528 | (xy 3.3528 -4.3434) 529 | ) 530 | (stroke (width 0) (type default) (color 0 0 0 0)) 531 | (fill (type outline)) 532 | ) 533 | ) 534 | ) 535 | (symbol "RaspberryPi Pico:Pico" (in_bom yes) (on_board yes) 536 | (property "Reference" "U" (id 0) (at -13.97 27.94 0) 537 | (effects (font (size 1.27 1.27))) 538 | ) 539 | (property "Value" "Pico" (id 1) (at 0 19.05 0) 540 | (effects (font (size 1.27 1.27))) 541 | ) 542 | (property "Footprint" "RPi_Pico:RPi_Pico_SMD_TH" (id 2) (at 0 0 90) 543 | (effects (font (size 1.27 1.27)) hide) 544 | ) 545 | (property "Datasheet" "" (id 3) (at 0 0 0) 546 | (effects (font (size 1.27 1.27)) hide) 547 | ) 548 | (symbol "Pico_0_0" 549 | (text "Raspberry Pi Pico" (at 0 21.59 0) 550 | (effects (font (size 1.27 1.27))) 551 | ) 552 | ) 553 | (symbol "Pico_0_1" 554 | (rectangle (start -15.24 26.67) (end 15.24 -26.67) 555 | (stroke (width 0) (type default) (color 0 0 0 0)) 556 | (fill (type background)) 557 | ) 558 | ) 559 | (symbol "Pico_1_1" 560 | (pin bidirectional line (at -17.78 24.13 0) (length 2.54) 561 | (name "GPIO0" (effects (font (size 1.27 1.27)))) 562 | (number "1" (effects (font (size 1.27 1.27)))) 563 | ) 564 | (pin bidirectional line (at -17.78 1.27 0) (length 2.54) 565 | (name "GPIO7" (effects (font (size 1.27 1.27)))) 566 | (number "10" (effects (font (size 1.27 1.27)))) 567 | ) 568 | (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) 569 | (name "GPIO8" (effects (font (size 1.27 1.27)))) 570 | (number "11" (effects (font (size 1.27 1.27)))) 571 | ) 572 | (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) 573 | (name "GPIO9" (effects (font (size 1.27 1.27)))) 574 | (number "12" (effects (font (size 1.27 1.27)))) 575 | ) 576 | (pin power_in line (at -17.78 -6.35 0) (length 2.54) 577 | (name "GND" (effects (font (size 1.27 1.27)))) 578 | (number "13" (effects (font (size 1.27 1.27)))) 579 | ) 580 | (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) 581 | (name "GPIO10" (effects (font (size 1.27 1.27)))) 582 | (number "14" (effects (font (size 1.27 1.27)))) 583 | ) 584 | (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) 585 | (name "GPIO11" (effects (font (size 1.27 1.27)))) 586 | (number "15" (effects (font (size 1.27 1.27)))) 587 | ) 588 | (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) 589 | (name "GPIO12" (effects (font (size 1.27 1.27)))) 590 | (number "16" (effects (font (size 1.27 1.27)))) 591 | ) 592 | (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) 593 | (name "GPIO13" (effects (font (size 1.27 1.27)))) 594 | (number "17" (effects (font (size 1.27 1.27)))) 595 | ) 596 | (pin power_in line (at -17.78 -19.05 0) (length 2.54) 597 | (name "GND" (effects (font (size 1.27 1.27)))) 598 | (number "18" (effects (font (size 1.27 1.27)))) 599 | ) 600 | (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) 601 | (name "GPIO14" (effects (font (size 1.27 1.27)))) 602 | (number "19" (effects (font (size 1.27 1.27)))) 603 | ) 604 | (pin bidirectional line (at -17.78 21.59 0) (length 2.54) 605 | (name "GPIO1" (effects (font (size 1.27 1.27)))) 606 | (number "2" (effects (font (size 1.27 1.27)))) 607 | ) 608 | (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) 609 | (name "GPIO15" (effects (font (size 1.27 1.27)))) 610 | (number "20" (effects (font (size 1.27 1.27)))) 611 | ) 612 | (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) 613 | (name "GPIO16" (effects (font (size 1.27 1.27)))) 614 | (number "21" (effects (font (size 1.27 1.27)))) 615 | ) 616 | (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) 617 | (name "GPIO17" (effects (font (size 1.27 1.27)))) 618 | (number "22" (effects (font (size 1.27 1.27)))) 619 | ) 620 | (pin power_in line (at 17.78 -19.05 180) (length 2.54) 621 | (name "GND" (effects (font (size 1.27 1.27)))) 622 | (number "23" (effects (font (size 1.27 1.27)))) 623 | ) 624 | (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) 625 | (name "GPIO18" (effects (font (size 1.27 1.27)))) 626 | (number "24" (effects (font (size 1.27 1.27)))) 627 | ) 628 | (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) 629 | (name "GPIO19" (effects (font (size 1.27 1.27)))) 630 | (number "25" (effects (font (size 1.27 1.27)))) 631 | ) 632 | (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) 633 | (name "GPIO20" (effects (font (size 1.27 1.27)))) 634 | (number "26" (effects (font (size 1.27 1.27)))) 635 | ) 636 | (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) 637 | (name "GPIO21" (effects (font (size 1.27 1.27)))) 638 | (number "27" (effects (font (size 1.27 1.27)))) 639 | ) 640 | (pin power_in line (at 17.78 -6.35 180) (length 2.54) 641 | (name "GND" (effects (font (size 1.27 1.27)))) 642 | (number "28" (effects (font (size 1.27 1.27)))) 643 | ) 644 | (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) 645 | (name "GPIO22" (effects (font (size 1.27 1.27)))) 646 | (number "29" (effects (font (size 1.27 1.27)))) 647 | ) 648 | (pin power_in line (at -17.78 19.05 0) (length 2.54) 649 | (name "GND" (effects (font (size 1.27 1.27)))) 650 | (number "3" (effects (font (size 1.27 1.27)))) 651 | ) 652 | (pin input line (at 17.78 -1.27 180) (length 2.54) 653 | (name "RUN" (effects (font (size 1.27 1.27)))) 654 | (number "30" (effects (font (size 1.27 1.27)))) 655 | ) 656 | (pin bidirectional line (at 17.78 1.27 180) (length 2.54) 657 | (name "GPIO26_ADC0" (effects (font (size 1.27 1.27)))) 658 | (number "31" (effects (font (size 1.27 1.27)))) 659 | ) 660 | (pin bidirectional line (at 17.78 3.81 180) (length 2.54) 661 | (name "GPIO27_ADC1" (effects (font (size 1.27 1.27)))) 662 | (number "32" (effects (font (size 1.27 1.27)))) 663 | ) 664 | (pin power_in line (at 17.78 6.35 180) (length 2.54) 665 | (name "AGND" (effects (font (size 1.27 1.27)))) 666 | (number "33" (effects (font (size 1.27 1.27)))) 667 | ) 668 | (pin bidirectional line (at 17.78 8.89 180) (length 2.54) 669 | (name "GPIO28_ADC2" (effects (font (size 1.27 1.27)))) 670 | (number "34" (effects (font (size 1.27 1.27)))) 671 | ) 672 | (pin power_in line (at 17.78 11.43 180) (length 2.54) 673 | (name "ADC_VREF" (effects (font (size 1.27 1.27)))) 674 | (number "35" (effects (font (size 1.27 1.27)))) 675 | ) 676 | (pin power_in line (at 17.78 13.97 180) (length 2.54) 677 | (name "3V3" (effects (font (size 1.27 1.27)))) 678 | (number "36" (effects (font (size 1.27 1.27)))) 679 | ) 680 | (pin input line (at 17.78 16.51 180) (length 2.54) 681 | (name "3V3_EN" (effects (font (size 1.27 1.27)))) 682 | (number "37" (effects (font (size 1.27 1.27)))) 683 | ) 684 | (pin power_in line (at 17.78 19.05 180) (length 2.54) 685 | (name "GND" (effects (font (size 1.27 1.27)))) 686 | (number "38" (effects (font (size 1.27 1.27)))) 687 | ) 688 | (pin power_in line (at 17.78 21.59 180) (length 2.54) 689 | (name "VSYS" (effects (font (size 1.27 1.27)))) 690 | (number "39" (effects (font (size 1.27 1.27)))) 691 | ) 692 | (pin bidirectional line (at -17.78 16.51 0) (length 2.54) 693 | (name "GPIO2" (effects (font (size 1.27 1.27)))) 694 | (number "4" (effects (font (size 1.27 1.27)))) 695 | ) 696 | (pin power_in line (at 17.78 24.13 180) (length 2.54) 697 | (name "VBUS" (effects (font (size 1.27 1.27)))) 698 | (number "40" (effects (font (size 1.27 1.27)))) 699 | ) 700 | (pin input line (at -2.54 -29.21 90) (length 2.54) 701 | (name "SWCLK" (effects (font (size 1.27 1.27)))) 702 | (number "41" (effects (font (size 1.27 1.27)))) 703 | ) 704 | (pin power_in line (at 0 -29.21 90) (length 2.54) 705 | (name "GND" (effects (font (size 1.27 1.27)))) 706 | (number "42" (effects (font (size 1.27 1.27)))) 707 | ) 708 | (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) 709 | (name "SWDIO" (effects (font (size 1.27 1.27)))) 710 | (number "43" (effects (font (size 1.27 1.27)))) 711 | ) 712 | (pin bidirectional line (at -17.78 13.97 0) (length 2.54) 713 | (name "GPIO3" (effects (font (size 1.27 1.27)))) 714 | (number "5" (effects (font (size 1.27 1.27)))) 715 | ) 716 | (pin bidirectional line (at -17.78 11.43 0) (length 2.54) 717 | (name "GPIO4" (effects (font (size 1.27 1.27)))) 718 | (number "6" (effects (font (size 1.27 1.27)))) 719 | ) 720 | (pin bidirectional line (at -17.78 8.89 0) (length 2.54) 721 | (name "GPIO5" (effects (font (size 1.27 1.27)))) 722 | (number "7" (effects (font (size 1.27 1.27)))) 723 | ) 724 | (pin power_in line (at -17.78 6.35 0) (length 2.54) 725 | (name "GND" (effects (font (size 1.27 1.27)))) 726 | (number "8" (effects (font (size 1.27 1.27)))) 727 | ) 728 | (pin bidirectional line (at -17.78 3.81 0) (length 2.54) 729 | (name "GPIO6" (effects (font (size 1.27 1.27)))) 730 | (number "9" (effects (font (size 1.27 1.27)))) 731 | ) 732 | ) 733 | ) 734 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 735 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 736 | (effects (font (size 1.27 1.27)) hide) 737 | ) 738 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 739 | (effects (font (size 1.27 1.27))) 740 | ) 741 | (property "Footprint" "" (id 2) (at 0 0 0) 742 | (effects (font (size 1.27 1.27)) hide) 743 | ) 744 | (property "Datasheet" "" (id 3) (at 0 0 0) 745 | (effects (font (size 1.27 1.27)) hide) 746 | ) 747 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 748 | (effects (font (size 1.27 1.27)) hide) 749 | ) 750 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 751 | (effects (font (size 1.27 1.27)) hide) 752 | ) 753 | (symbol "GND_0_1" 754 | (polyline 755 | (pts 756 | (xy 0 0) 757 | (xy 0 -1.27) 758 | (xy 1.27 -1.27) 759 | (xy 0 -2.54) 760 | (xy -1.27 -1.27) 761 | (xy 0 -1.27) 762 | ) 763 | (stroke (width 0) (type default) (color 0 0 0 0)) 764 | (fill (type none)) 765 | ) 766 | ) 767 | (symbol "GND_1_1" 768 | (pin power_in line (at 0 0 270) (length 0) hide 769 | (name "GND" (effects (font (size 1.27 1.27)))) 770 | (number "1" (effects (font (size 1.27 1.27)))) 771 | ) 772 | ) 773 | ) 774 | (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 775 | (property "Reference" "#FLG" (id 0) (at 0 1.905 0) 776 | (effects (font (size 1.27 1.27)) hide) 777 | ) 778 | (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0) 779 | (effects (font (size 1.27 1.27))) 780 | ) 781 | (property "Footprint" "" (id 2) (at 0 0 0) 782 | (effects (font (size 1.27 1.27)) hide) 783 | ) 784 | (property "Datasheet" "~" (id 3) (at 0 0 0) 785 | (effects (font (size 1.27 1.27)) hide) 786 | ) 787 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 788 | (effects (font (size 1.27 1.27)) hide) 789 | ) 790 | (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) 791 | (effects (font (size 1.27 1.27)) hide) 792 | ) 793 | (symbol "PWR_FLAG_0_0" 794 | (pin power_out line (at 0 0 90) (length 0) 795 | (name "pwr" (effects (font (size 1.27 1.27)))) 796 | (number "1" (effects (font (size 1.27 1.27)))) 797 | ) 798 | ) 799 | (symbol "PWR_FLAG_0_1" 800 | (polyline 801 | (pts 802 | (xy 0 0) 803 | (xy 0 1.27) 804 | (xy -1.016 1.905) 805 | (xy 0 2.54) 806 | (xy 1.016 1.905) 807 | (xy 0 1.27) 808 | ) 809 | (stroke (width 0) (type default) (color 0 0 0 0)) 810 | (fill (type none)) 811 | ) 812 | ) 813 | ) 814 | ) 815 | 816 | 817 | (no_connect (at 71.12 64.77) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abcb)) 818 | (no_connect (at 71.12 67.31) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abcc)) 819 | (no_connect (at 71.12 92.71) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abcd)) 820 | (no_connect (at 71.12 90.17) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abce)) 821 | (no_connect (at 71.12 72.39) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abcf)) 822 | (no_connect (at 71.12 77.47) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd0)) 823 | (no_connect (at 71.12 69.85) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd1)) 824 | (no_connect (at 71.12 44.45) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd2)) 825 | (no_connect (at 71.12 46.99) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd3)) 826 | (no_connect (at 71.12 80.01) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd4)) 827 | (no_connect (at 71.12 82.55) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd5)) 828 | (no_connect (at 71.12 85.09) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd6)) 829 | (no_connect (at 106.68 52.07) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd7)) 830 | (no_connect (at 106.68 64.77) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd8)) 831 | (no_connect (at 106.68 85.09) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abd9)) 832 | (no_connect (at 106.68 90.17) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abda)) 833 | (no_connect (at 106.68 80.01) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abdb)) 834 | (no_connect (at 106.68 72.39) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abdc)) 835 | (no_connect (at 106.68 77.47) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abdd)) 836 | (no_connect (at 106.68 82.55) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abde)) 837 | (no_connect (at 106.68 57.15) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abdf)) 838 | (no_connect (at 106.68 59.69) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abe0)) 839 | (no_connect (at 106.68 69.85) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abe1)) 840 | (no_connect (at 106.68 67.31) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abe2)) 841 | (no_connect (at 106.68 92.71) (uuid 78795c59-1794-4755-a7fc-1cff9cf0abe3)) 842 | (no_connect (at 86.36 97.79) (uuid 8ba91b5c-159f-44bf-a481-9b337cbf01ee)) 843 | (no_connect (at 91.44 97.79) (uuid 8ba91b5c-159f-44bf-a481-9b337cbf01ef)) 844 | 845 | (wire (pts (xy 148.59 180.34) (xy 153.67 180.34)) 846 | (stroke (width 0) (type default) (color 0 0 0 0)) 847 | (uuid 025bbe41-7b48-41ab-a547-5c3ab944b117) 848 | ) 849 | (wire (pts (xy 200.66 63.5) (xy 205.74 63.5)) 850 | (stroke (width 0) (type default) (color 0 0 0 0)) 851 | (uuid 0696bb4d-e8f1-49f3-b815-320baa628e0d) 852 | ) 853 | (wire (pts (xy 106.68 49.53) (xy 113.03 49.53)) 854 | (stroke (width 0) (type default) (color 0 0 0 0)) 855 | (uuid 143dd9f9-62fc-434d-8f1c-9119a2979368) 856 | ) 857 | (wire (pts (xy 200.66 50.8) (xy 205.74 50.8)) 858 | (stroke (width 0) (type default) (color 0 0 0 0)) 859 | (uuid 1dea9f61-5366-468c-a4ab-aefb09b3e5c3) 860 | ) 861 | (wire (pts (xy 66.04 59.69) (xy 71.12 59.69)) 862 | (stroke (width 0) (type default) (color 0 0 0 0)) 863 | (uuid 25e5c3a9-6adf-4d07-b23d-ed835e9398a1) 864 | ) 865 | (wire (pts (xy 106.68 62.23) (xy 113.03 62.23)) 866 | (stroke (width 0) (type default) (color 0 0 0 0)) 867 | (uuid 26d6e849-8105-49a9-9a5c-e15dcec499b8) 868 | ) 869 | (wire (pts (xy 200.66 53.34) (xy 205.74 53.34)) 870 | (stroke (width 0) (type default) (color 0 0 0 0)) 871 | (uuid 2a9fc020-14ec-41d3-8ab5-4b5a46d2da31) 872 | ) 873 | (polyline (pts (xy 167.64 105.41) (xy 167.64 154.94)) 874 | (stroke (width 0) (type default) (color 0 0 0 0)) 875 | (uuid 2ab56252-87ac-4bf0-a633-076ad6a1f466) 876 | ) 877 | (polyline (pts (xy 245.11 27.94) (xy 167.64 27.94)) 878 | (stroke (width 0) (type default) (color 0 0 0 0)) 879 | (uuid 30c2a1e3-61d7-48cb-97dc-98c094c7967e) 880 | ) 881 | (polyline (pts (xy 167.64 27.94) (xy 167.64 82.55)) 882 | (stroke (width 0) (type default) (color 0 0 0 0)) 883 | (uuid 32c22b93-81a1-4c08-9ecf-33371c15dd93) 884 | ) 885 | 886 | (wire (pts (xy 200.66 45.72) (xy 205.74 45.72)) 887 | (stroke (width 0) (type default) (color 0 0 0 0)) 888 | (uuid 38152d3f-2124-4543-ac01-de70fc149876) 889 | ) 890 | (wire (pts (xy 106.68 44.45) (xy 113.03 44.45)) 891 | (stroke (width 0) (type default) (color 0 0 0 0)) 892 | (uuid 3a4626a6-a107-42f7-b0a2-07576af34cb2) 893 | ) 894 | (polyline (pts (xy 245.11 154.94) (xy 167.64 154.94)) 895 | (stroke (width 0) (type default) (color 0 0 0 0)) 896 | (uuid 3e87caf0-55a2-4f05-b882-b2a190a535d4) 897 | ) 898 | 899 | (wire (pts (xy 200.66 60.96) (xy 205.74 60.96)) 900 | (stroke (width 0) (type default) (color 0 0 0 0)) 901 | (uuid 411e172a-ac3d-4b59-b510-190432740e75) 902 | ) 903 | (wire (pts (xy 215.9 128.27) (xy 224.79 128.27)) 904 | (stroke (width 0) (type default) (color 0 0 0 0)) 905 | (uuid 554b4268-3b6b-4efa-ae16-4b6d5120fa51) 906 | ) 907 | (polyline (pts (xy 167.64 82.55) (xy 245.11 82.55)) 908 | (stroke (width 0) (type default) (color 0 0 0 0)) 909 | (uuid 6350fed3-bd8e-403b-b971-be107b47a1a6) 910 | ) 911 | 912 | (wire (pts (xy 66.04 74.93) (xy 71.12 74.93)) 913 | (stroke (width 0) (type default) (color 0 0 0 0)) 914 | (uuid 6b8136be-9e31-4fe7-8a45-8597a961bbf1) 915 | ) 916 | (wire (pts (xy 148.59 167.64) (xy 153.67 167.64)) 917 | (stroke (width 0) (type default) (color 0 0 0 0)) 918 | (uuid 6dd19de4-4d39-4a5b-be22-ca4eecdff545) 919 | ) 920 | (wire (pts (xy 200.66 128.27) (xy 208.28 128.27)) 921 | (stroke (width 0) (type default) (color 0 0 0 0)) 922 | (uuid 6fd5f1d3-291d-400f-8324-1642c5b63834) 923 | ) 924 | (wire (pts (xy 148.59 186.69) (xy 153.67 186.69)) 925 | (stroke (width 0) (type default) (color 0 0 0 0)) 926 | (uuid 7437fec1-00b4-4c53-be49-1817c84b20ca) 927 | ) 928 | (wire (pts (xy 106.68 54.61) (xy 113.03 54.61)) 929 | (stroke (width 0) (type default) (color 0 0 0 0)) 930 | (uuid 76b5165a-98e4-41fd-bd5a-ebe1042628f3) 931 | ) 932 | (wire (pts (xy 66.04 52.07) (xy 71.12 52.07)) 933 | (stroke (width 0) (type default) (color 0 0 0 0)) 934 | (uuid 7b56d902-fe20-4bc8-9b02-21b6ea4acbc9) 935 | ) 936 | (wire (pts (xy 66.04 54.61) (xy 71.12 54.61)) 937 | (stroke (width 0) (type default) (color 0 0 0 0)) 938 | (uuid 86aabb77-0f42-4387-9525-c8048d3c3205) 939 | ) 940 | (wire (pts (xy 88.9 97.79) (xy 88.9 102.87)) 941 | (stroke (width 0) (type default) (color 0 0 0 0)) 942 | (uuid 905adf9a-32f8-4a6f-a270-46f0515a3a5d) 943 | ) 944 | (wire (pts (xy 200.66 48.26) (xy 205.74 48.26)) 945 | (stroke (width 0) (type default) (color 0 0 0 0)) 946 | (uuid 983c6d62-15d1-480b-a2fc-acaf13df4ae6) 947 | ) 948 | (polyline (pts (xy 245.11 82.55) (xy 245.11 27.94)) 949 | (stroke (width 0) (type default) (color 0 0 0 0)) 950 | (uuid 9b124b12-b7a2-4355-87c1-215f861e8ed7) 951 | ) 952 | (polyline (pts (xy 167.64 105.41) (xy 245.11 105.41)) 953 | (stroke (width 0) (type default) (color 0 0 0 0)) 954 | (uuid ba878fa5-42d4-4c56-9a22-19ce94ea17d3) 955 | ) 956 | 957 | (wire (pts (xy 66.04 57.15) (xy 71.12 57.15)) 958 | (stroke (width 0) (type default) (color 0 0 0 0)) 959 | (uuid bcd8a653-fe5d-4b14-ba75-93cc9e8b15ef) 960 | ) 961 | (polyline (pts (xy 245.11 105.41) (xy 245.11 154.94)) 962 | (stroke (width 0) (type default) (color 0 0 0 0)) 963 | (uuid c171e450-47b2-489d-a179-a8c3a12ffc84) 964 | ) 965 | 966 | (wire (pts (xy 106.68 87.63) (xy 113.03 87.63)) 967 | (stroke (width 0) (type default) (color 0 0 0 0)) 968 | (uuid c52e36f9-6ec4-4b30-a807-135629b6e9cc) 969 | ) 970 | (wire (pts (xy 106.68 46.99) (xy 113.03 46.99)) 971 | (stroke (width 0) (type default) (color 0 0 0 0)) 972 | (uuid c7075872-f793-4f8b-96ac-cf2c4bbf3672) 973 | ) 974 | (wire (pts (xy 106.68 74.93) (xy 113.03 74.93)) 975 | (stroke (width 0) (type default) (color 0 0 0 0)) 976 | (uuid ca44be6d-a505-4c7e-892f-77b306f7b644) 977 | ) 978 | (wire (pts (xy 200.66 55.88) (xy 205.74 55.88)) 979 | (stroke (width 0) (type default) (color 0 0 0 0)) 980 | (uuid ccc2fcfe-5fa0-4c6a-aaee-445014f5027f) 981 | ) 982 | (wire (pts (xy 148.59 173.99) (xy 153.67 173.99)) 983 | (stroke (width 0) (type default) (color 0 0 0 0)) 984 | (uuid d6b07cbc-1c38-4a31-8937-a44071d71c14) 985 | ) 986 | (wire (pts (xy 200.66 58.42) (xy 205.74 58.42)) 987 | (stroke (width 0) (type default) (color 0 0 0 0)) 988 | (uuid dfbef705-6c54-43aa-a161-d6449927b091) 989 | ) 990 | (wire (pts (xy 184.15 128.27) (xy 193.04 128.27)) 991 | (stroke (width 0) (type default) (color 0 0 0 0)) 992 | (uuid e7cc6f4c-246b-4c95-bf8a-f340cd71b043) 993 | ) 994 | (wire (pts (xy 66.04 49.53) (xy 71.12 49.53)) 995 | (stroke (width 0) (type default) (color 0 0 0 0)) 996 | (uuid e8a51c0c-80f0-4075-94dc-a22c97282b94) 997 | ) 998 | (wire (pts (xy 66.04 62.23) (xy 71.12 62.23)) 999 | (stroke (width 0) (type default) (color 0 0 0 0)) 1000 | (uuid e906d969-2a43-4e17-bf8d-0bbcb121c973) 1001 | ) 1002 | (wire (pts (xy 66.04 87.63) (xy 71.12 87.63)) 1003 | (stroke (width 0) (type default) (color 0 0 0 0)) 1004 | (uuid ef1cb73a-9510-46f8-b200-cf24979de2cc) 1005 | ) 1006 | (wire (pts (xy 224.79 128.27) (xy 224.79 135.89)) 1007 | (stroke (width 0) (type default) (color 0 0 0 0)) 1008 | (uuid fd0b0ee7-b73a-4704-9632-2a7e892b8315) 1009 | ) 1010 | 1011 | (text "Header for connecting to Pico being debugged" (at 182.88 33.02 0) 1012 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1013 | (uuid 38ce90ab-8b08-4f27-8082-517ff2eb4c7e) 1014 | ) 1015 | (text "D1: 0805 SMD LED (Green)\nR1: 500 or higher (4.99k is often good value for very bright green LEDs)" 1016 | (at 170.18 151.13 0) 1017 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1018 | (uuid 483a68ba-a314-47e6-9837-bfebdcbabe7d) 1019 | ) 1020 | (text "Power Indicator LED (optional)" (at 191.77 109.22 0) 1021 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1022 | (uuid c4a9b0b3-d58c-44e5-860b-30a9cc02eace) 1023 | ) 1024 | 1025 | (global_label "GND" (shape input) (at 88.9 102.87 270) (fields_autoplaced) 1026 | (effects (font (size 1.27 1.27)) (justify right)) 1027 | (uuid 1ac0e321-c40d-4557-b730-e4479078c543) 1028 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.9794 109.1536 90) 1029 | (effects (font (size 1.27 1.27)) (justify right) hide) 1030 | ) 1031 | ) 1032 | (global_label "SWCLK" (shape input) (at 66.04 52.07 180) (fields_autoplaced) 1033 | (effects (font (size 1.27 1.27)) (justify right)) 1034 | (uuid 1b833b47-135d-4e4a-82d3-60766d331726) 1035 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.3979 51.9906 0) 1036 | (effects (font (size 1.27 1.27)) (justify right) hide) 1037 | ) 1038 | ) 1039 | (global_label "RX" (shape input) (at 200.66 53.34 180) (fields_autoplaced) 1040 | (effects (font (size 1.27 1.27)) (justify right)) 1041 | (uuid 26a8feac-2568-4b40-8943-f92149dfe15d) 1042 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.7674 53.2606 0) 1043 | (effects (font (size 1.27 1.27)) (justify right) hide) 1044 | ) 1045 | ) 1046 | (global_label "GND" (shape input) (at 113.03 49.53 0) (fields_autoplaced) 1047 | (effects (font (size 1.27 1.27)) (justify left)) 1048 | (uuid 295e4d47-748b-491f-835d-e1cd021d7473) 1049 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3136 49.4506 0) 1050 | (effects (font (size 1.27 1.27)) (justify left) hide) 1051 | ) 1052 | ) 1053 | (global_label "VSYS" (shape input) (at 200.66 60.96 180) (fields_autoplaced) 1054 | (effects (font (size 1.27 1.27)) (justify right)) 1055 | (uuid 2acb0149-4da7-4715-93e0-b2ee7a0cb090) 1056 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.6507 60.8806 0) 1057 | (effects (font (size 1.27 1.27)) (justify right) hide) 1058 | ) 1059 | ) 1060 | (global_label "GND" (shape input) (at 113.03 74.93 0) (fields_autoplaced) 1061 | (effects (font (size 1.27 1.27)) (justify left)) 1062 | (uuid 3573e998-d366-42d0-b2f4-7b310c1ad257) 1063 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3136 74.8506 0) 1064 | (effects (font (size 1.27 1.27)) (justify left) hide) 1065 | ) 1066 | ) 1067 | (global_label "GND" (shape input) (at 200.66 58.42 180) (fields_autoplaced) 1068 | (effects (font (size 1.27 1.27)) (justify right)) 1069 | (uuid 403bea84-bff5-4580-8789-bea6467d5f84) 1070 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 194.3764 58.4994 0) 1071 | (effects (font (size 1.27 1.27)) (justify right) hide) 1072 | ) 1073 | ) 1074 | (global_label "GND" (shape input) (at 113.03 62.23 0) (fields_autoplaced) 1075 | (effects (font (size 1.27 1.27)) (justify left)) 1076 | (uuid 4288f2d7-78fb-4a5a-9170-4b5d38f43f7f) 1077 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3136 62.1506 0) 1078 | (effects (font (size 1.27 1.27)) (justify left) hide) 1079 | ) 1080 | ) 1081 | (global_label "SWCLK" (shape input) (at 200.66 45.72 180) (fields_autoplaced) 1082 | (effects (font (size 1.27 1.27)) (justify right)) 1083 | (uuid 501e1496-be22-4cee-8b4c-cbf8c46e7943) 1084 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.0179 45.6406 0) 1085 | (effects (font (size 1.27 1.27)) (justify right) hide) 1086 | ) 1087 | ) 1088 | (global_label "GND" (shape input) (at 200.66 48.26 180) (fields_autoplaced) 1089 | (effects (font (size 1.27 1.27)) (justify right)) 1090 | (uuid 508e9bba-8500-42f0-a35d-f3e0fc643ca0) 1091 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 194.3764 48.3394 0) 1092 | (effects (font (size 1.27 1.27)) (justify right) hide) 1093 | ) 1094 | ) 1095 | (global_label "SWDIO" (shape input) (at 66.04 54.61 180) (fields_autoplaced) 1096 | (effects (font (size 1.27 1.27)) (justify right)) 1097 | (uuid 559dca71-873b-4231-b1ec-430d977b895c) 1098 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.7607 54.5306 0) 1099 | (effects (font (size 1.27 1.27)) (justify right) hide) 1100 | ) 1101 | ) 1102 | (global_label "RX" (shape input) (at 66.04 57.15 180) (fields_autoplaced) 1103 | (effects (font (size 1.27 1.27)) (justify right)) 1104 | (uuid 690d7273-3b98-4ddd-b9b5-8dc34cc4a0e2) 1105 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 61.1474 57.0706 0) 1106 | (effects (font (size 1.27 1.27)) (justify right) hide) 1107 | ) 1108 | ) 1109 | (global_label "TX" (shape input) (at 200.66 55.88 180) (fields_autoplaced) 1110 | (effects (font (size 1.27 1.27)) (justify right)) 1111 | (uuid 70d967b3-32b0-4cb7-b29a-44b4a43a7d11) 1112 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 196.0698 55.8006 0) 1113 | (effects (font (size 1.27 1.27)) (justify right) hide) 1114 | ) 1115 | ) 1116 | (global_label "GND" (shape input) (at 66.04 74.93 180) (fields_autoplaced) 1117 | (effects (font (size 1.27 1.27)) (justify right)) 1118 | (uuid 713be6f7-8cf7-4544-9325-2e4c7e43968d) 1119 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 59.7564 75.0094 0) 1120 | (effects (font (size 1.27 1.27)) (justify right) hide) 1121 | ) 1122 | ) 1123 | (global_label "VSYS" (shape input) (at 113.03 46.99 0) (fields_autoplaced) 1124 | (effects (font (size 1.27 1.27)) (justify left)) 1125 | (uuid 78bfc133-a3c9-4c59-a190-bc033d3dd715) 1126 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 120.0393 46.9106 0) 1127 | (effects (font (size 1.27 1.27)) (justify left) hide) 1128 | ) 1129 | ) 1130 | (global_label "VSYS" (shape input) (at 153.67 180.34 0) (fields_autoplaced) 1131 | (effects (font (size 1.27 1.27)) (justify left)) 1132 | (uuid 8475da1f-3b2c-4fcc-be81-a8abc1cc40a6) 1133 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 160.6793 180.2606 0) 1134 | (effects (font (size 1.27 1.27)) (justify left) hide) 1135 | ) 1136 | ) 1137 | (global_label "VBUS" (shape input) (at 153.67 173.99 0) (fields_autoplaced) 1138 | (effects (font (size 1.27 1.27)) (justify left)) 1139 | (uuid 9215b5d7-9773-4a35-b883-00f270990b60) 1140 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 160.9817 173.9106 0) 1141 | (effects (font (size 1.27 1.27)) (justify left) hide) 1142 | ) 1143 | ) 1144 | (global_label "GND" (shape input) (at 66.04 87.63 180) (fields_autoplaced) 1145 | (effects (font (size 1.27 1.27)) (justify right)) 1146 | (uuid b00fe1dd-f024-4dcc-b525-03bca34d7eab) 1147 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 59.7564 87.7094 0) 1148 | (effects (font (size 1.27 1.27)) (justify right) hide) 1149 | ) 1150 | ) 1151 | (global_label "VBUS" (shape input) (at 113.03 44.45 0) (fields_autoplaced) 1152 | (effects (font (size 1.27 1.27)) (justify left)) 1153 | (uuid bc0b0f4f-1d85-4e48-b6b2-a4edede16db9) 1154 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 120.3417 44.3706 0) 1155 | (effects (font (size 1.27 1.27)) (justify left) hide) 1156 | ) 1157 | ) 1158 | (global_label "GND" (shape input) (at 113.03 87.63 0) (fields_autoplaced) 1159 | (effects (font (size 1.27 1.27)) (justify left)) 1160 | (uuid c26eee2a-cca5-445c-ab08-171d7654596a) 1161 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3136 87.5506 0) 1162 | (effects (font (size 1.27 1.27)) (justify left) hide) 1163 | ) 1164 | ) 1165 | (global_label "VBUS" (shape input) (at 200.66 63.5 180) (fields_autoplaced) 1166 | (effects (font (size 1.27 1.27)) (justify right)) 1167 | (uuid c4fdc796-4ae3-46b7-bfa3-cbef0c4cbe43) 1168 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.3483 63.4206 0) 1169 | (effects (font (size 1.27 1.27)) (justify right) hide) 1170 | ) 1171 | ) 1172 | (global_label "SWDIO" (shape input) (at 200.66 50.8 180) (fields_autoplaced) 1173 | (effects (font (size 1.27 1.27)) (justify right)) 1174 | (uuid ccd28bff-0a8e-4d5c-8a16-892ab0cc9985) 1175 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.3807 50.7206 0) 1176 | (effects (font (size 1.27 1.27)) (justify right) hide) 1177 | ) 1178 | ) 1179 | (global_label "3V3" (shape input) (at 184.15 128.27 180) (fields_autoplaced) 1180 | (effects (font (size 1.27 1.27)) (justify right)) 1181 | (uuid d58d5d1d-932e-4c78-ad81-086727d3c09a) 1182 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 178.2293 128.3494 0) 1183 | (effects (font (size 1.27 1.27)) (justify right) hide) 1184 | ) 1185 | ) 1186 | (global_label "GND" (shape input) (at 66.04 62.23 180) (fields_autoplaced) 1187 | (effects (font (size 1.27 1.27)) (justify right)) 1188 | (uuid dce83085-f2d5-44d6-b86e-a5cd0d02377c) 1189 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 59.7564 62.3094 0) 1190 | (effects (font (size 1.27 1.27)) (justify right) hide) 1191 | ) 1192 | ) 1193 | (global_label "3V3" (shape input) (at 113.03 54.61 0) (fields_autoplaced) 1194 | (effects (font (size 1.27 1.27)) (justify left)) 1195 | (uuid dd2f3840-f39b-456f-9d1f-1aad768ee7b5) 1196 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 118.9507 54.5306 0) 1197 | (effects (font (size 1.27 1.27)) (justify left) hide) 1198 | ) 1199 | ) 1200 | (global_label "TX" (shape input) (at 66.04 59.69 180) (fields_autoplaced) 1201 | (effects (font (size 1.27 1.27)) (justify right)) 1202 | (uuid e90a36c7-1880-41c9-8fe2-9ae254fff384) 1203 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 61.4498 59.6106 0) 1204 | (effects (font (size 1.27 1.27)) (justify right) hide) 1205 | ) 1206 | ) 1207 | (global_label "GND" (shape input) (at 66.04 49.53 180) (fields_autoplaced) 1208 | (effects (font (size 1.27 1.27)) (justify right)) 1209 | (uuid f3888ac3-cceb-4ddb-9160-d21b7107ae98) 1210 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 59.7564 49.6094 0) 1211 | (effects (font (size 1.27 1.27)) (justify right) hide) 1212 | ) 1213 | ) 1214 | (global_label "3V3" (shape input) (at 153.67 167.64 0) (fields_autoplaced) 1215 | (effects (font (size 1.27 1.27)) (justify left)) 1216 | (uuid fcfddbc7-5974-4271-a7ea-caa726d11492) 1217 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 159.5907 167.5606 0) 1218 | (effects (font (size 1.27 1.27)) (justify left) hide) 1219 | ) 1220 | ) 1221 | (global_label "GND" (shape input) (at 153.67 186.69 0) (fields_autoplaced) 1222 | (effects (font (size 1.27 1.27)) (justify left)) 1223 | (uuid fd95c56d-9ce5-4bde-bb09-1c1dbeeaf245) 1224 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 159.9536 186.6106 0) 1225 | (effects (font (size 1.27 1.27)) (justify left) hide) 1226 | ) 1227 | ) 1228 | 1229 | (symbol (lib_id "Connector_Generic:Conn_01x08") (at 210.82 53.34 0) (unit 1) 1230 | (in_bom yes) (on_board yes) (fields_autoplaced) 1231 | (uuid 15e6da14-57da-4fcd-a7a8-a004cc23da9e) 1232 | (property "Reference" "J1" (id 0) (at 213.36 53.3399 0) 1233 | (effects (font (size 1.27 1.27)) (justify left)) 1234 | ) 1235 | (property "Value" "Conn_01x08" (id 1) (at 213.36 55.8799 0) 1236 | (effects (font (size 1.27 1.27)) (justify left)) 1237 | ) 1238 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (id 2) (at 210.82 53.34 0) 1239 | (effects (font (size 1.27 1.27)) hide) 1240 | ) 1241 | (property "Datasheet" "~" (id 3) (at 210.82 53.34 0) 1242 | (effects (font (size 1.27 1.27)) hide) 1243 | ) 1244 | (pin "1" (uuid 4e5464fb-a8f9-4946-8ab8-aef7e8a31e39)) 1245 | (pin "2" (uuid d28de701-b93a-450d-a7e5-ede272361ed9)) 1246 | (pin "3" (uuid 93d883cc-a970-4e6e-ba32-19be116365fe)) 1247 | (pin "4" (uuid 82c1eb8e-f340-41cc-850a-1f8654c821a4)) 1248 | (pin "5" (uuid 075d495a-39b8-4d44-aedf-835e4890677d)) 1249 | (pin "6" (uuid 93225b66-9f41-4d0a-8842-84d4aad7a525)) 1250 | (pin "7" (uuid fb37fbce-a11c-442f-ba71-f2a022dbdf43)) 1251 | (pin "8" (uuid be099efd-a40d-44ec-a98d-0a2f258f8d0a)) 1252 | ) 1253 | 1254 | (symbol (lib_id "power:PWR_FLAG") (at 148.59 180.34 90) (unit 1) 1255 | (in_bom yes) (on_board yes) (fields_autoplaced) 1256 | (uuid 30002114-bb65-4369-a18c-d1b76eca52c9) 1257 | (property "Reference" "#FLG03" (id 0) (at 146.685 180.34 0) 1258 | (effects (font (size 1.27 1.27)) hide) 1259 | ) 1260 | (property "Value" "PWR_FLAG" (id 1) (at 144.78 180.3399 90) 1261 | (effects (font (size 1.27 1.27)) (justify left)) 1262 | ) 1263 | (property "Footprint" "" (id 2) (at 148.59 180.34 0) 1264 | (effects (font (size 1.27 1.27)) hide) 1265 | ) 1266 | (property "Datasheet" "~" (id 3) (at 148.59 180.34 0) 1267 | (effects (font (size 1.27 1.27)) hide) 1268 | ) 1269 | (pin "1" (uuid 8933b012-a423-496e-9ad1-b638c72b1ce0)) 1270 | ) 1271 | 1272 | (symbol (lib_id "RaspberryPi Pico:Pico") (at 88.9 68.58 0) (unit 1) 1273 | (in_bom yes) (on_board yes) (fields_autoplaced) 1274 | (uuid 376ca56a-29ee-4f83-81b0-a39eae9d6ea3) 1275 | (property "Reference" "U1" (id 0) (at 88.9 36.83 0)) 1276 | (property "Value" "Pico" (id 1) (at 88.9 39.37 0)) 1277 | (property "Footprint" "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (id 2) (at 88.9 68.58 90) 1278 | (effects (font (size 1.27 1.27)) hide) 1279 | ) 1280 | (property "Datasheet" "" (id 3) (at 88.9 68.58 0) 1281 | (effects (font (size 1.27 1.27)) hide) 1282 | ) 1283 | (pin "1" (uuid 944edb35-9f5b-4576-8b54-6d6a09845a77)) 1284 | (pin "10" (uuid fb527929-5a76-4386-92c7-ed3f3a2f2a66)) 1285 | (pin "11" (uuid c806ca64-4076-499b-9029-155759542c55)) 1286 | (pin "12" (uuid 95ceb3ed-a7d7-4f46-a5b5-e573dd4a910f)) 1287 | (pin "13" (uuid 2c11cd86-c17d-4d8f-89a3-4b809d7b5b0d)) 1288 | (pin "14" (uuid b68c71cf-bc60-42db-9be0-09ce7c79f3ac)) 1289 | (pin "15" (uuid 8781291e-cbb2-406c-8d33-4c9ef34481d5)) 1290 | (pin "16" (uuid 8778d1c5-07c3-4374-9b2c-eb48d2f32042)) 1291 | (pin "17" (uuid 5310e544-c28f-4fe1-8665-5377bc79757f)) 1292 | (pin "18" (uuid eb420a5f-fed2-401e-af84-af7a622b2a76)) 1293 | (pin "19" (uuid 1f612e70-0c34-4c1b-9a81-56417c9c8822)) 1294 | (pin "2" (uuid be982124-ae0b-4add-a6d8-2344db80a9aa)) 1295 | (pin "20" (uuid a43a3659-882e-4070-9e47-a5404e6e1e6a)) 1296 | (pin "21" (uuid 3c2b8904-a734-4a85-a82f-6473c641e8e2)) 1297 | (pin "22" (uuid 77aa92e7-fbdc-48fb-aa69-35a8ea21ae59)) 1298 | (pin "23" (uuid 06fcb724-535c-414c-9bd9-2c4253d1061a)) 1299 | (pin "24" (uuid 175390ca-dcdb-4f63-8291-35ba8b07b140)) 1300 | (pin "25" (uuid 55e5b7d2-eb43-4f5b-9f89-b1eff1e119d9)) 1301 | (pin "26" (uuid 169ff030-0e51-4ebc-85c7-e586ef119eec)) 1302 | (pin "27" (uuid f50dd647-c734-445d-8b14-8c68d6377091)) 1303 | (pin "28" (uuid 1200673d-b2ca-414e-bac3-885bbdf7d3d1)) 1304 | (pin "29" (uuid d5f0102a-ccd2-481d-aac9-a500663069d8)) 1305 | (pin "3" (uuid 8dbd1a68-f406-4c7f-8b06-9547e6122f38)) 1306 | (pin "30" (uuid b3ed612d-4b95-418f-bfae-ed954c910011)) 1307 | (pin "31" (uuid 946ab5b8-e96e-4804-a78e-a4b89c867544)) 1308 | (pin "32" (uuid 2bb33282-4f9f-4778-8fe0-6f53edcd3452)) 1309 | (pin "33" (uuid b0417074-2887-4d2d-b55d-004cff435a65)) 1310 | (pin "34" (uuid 02d9daae-b6cd-4a84-8ffb-baec648fb565)) 1311 | (pin "35" (uuid d4d7af4a-bdba-41a7-93c2-da79d93aaec5)) 1312 | (pin "36" (uuid f63f3c64-d980-4ae0-b129-a351881a850f)) 1313 | (pin "37" (uuid 19947266-d718-4a7e-8ce7-a9e04db709cf)) 1314 | (pin "38" (uuid 835102f4-9b14-413b-a145-1f010f51931f)) 1315 | (pin "39" (uuid c031f799-3699-4973-829d-1bc94d1dc5d0)) 1316 | (pin "4" (uuid 9a2b75a3-2170-46bd-a4ae-f41d05639556)) 1317 | (pin "40" (uuid 172ae4b5-4844-4ae8-a220-06196fc931d3)) 1318 | (pin "41" (uuid f232b395-a0ab-4461-b901-fad8834664e8)) 1319 | (pin "42" (uuid 42d1103b-01a9-4ce4-8c43-2c32be677f5a)) 1320 | (pin "43" (uuid 3c1baf09-a0fa-4d5b-9e19-dad36989c504)) 1321 | (pin "5" (uuid 38283c07-56ee-45a4-9359-035eeacc2402)) 1322 | (pin "6" (uuid a771c02c-8b53-42d8-99ed-0a81252d0009)) 1323 | (pin "7" (uuid 92f3f87e-5e1a-419d-afde-68dd17a44605)) 1324 | (pin "8" (uuid 3a343692-2c55-4f37-9ead-c72b1953e9cb)) 1325 | (pin "9" (uuid 83d289e8-09e9-450f-aa29-e4a965c20aed)) 1326 | ) 1327 | 1328 | (symbol (lib_id "Device:LED") (at 212.09 128.27 180) (unit 1) 1329 | (in_bom yes) (on_board yes) (fields_autoplaced) 1330 | (uuid 3ce23121-b2d7-417a-a2ec-5114305fbf94) 1331 | (property "Reference" "D1" (id 0) (at 213.6775 120.65 0)) 1332 | (property "Value" "LED (0805 Green)" (id 1) (at 213.6775 123.19 0)) 1333 | (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 212.09 128.27 0) 1334 | (effects (font (size 1.27 1.27)) hide) 1335 | ) 1336 | (property "Datasheet" "~" (id 3) (at 212.09 128.27 0) 1337 | (effects (font (size 1.27 1.27)) hide) 1338 | ) 1339 | (pin "1" (uuid b0ae8824-57b2-4d15-b202-3a048ada861a)) 1340 | (pin "2" (uuid 619f7d39-2375-48d5-aa6c-03edab403a0a)) 1341 | ) 1342 | 1343 | (symbol (lib_id "power:PWR_FLAG") (at 148.59 173.99 90) (unit 1) 1344 | (in_bom yes) (on_board yes) (fields_autoplaced) 1345 | (uuid 6e0155db-83db-4a84-93aa-f70c0d00e0ed) 1346 | (property "Reference" "#FLG02" (id 0) (at 146.685 173.99 0) 1347 | (effects (font (size 1.27 1.27)) hide) 1348 | ) 1349 | (property "Value" "PWR_FLAG" (id 1) (at 144.78 173.9899 90) 1350 | (effects (font (size 1.27 1.27)) (justify left)) 1351 | ) 1352 | (property "Footprint" "" (id 2) (at 148.59 173.99 0) 1353 | (effects (font (size 1.27 1.27)) hide) 1354 | ) 1355 | (property "Datasheet" "~" (id 3) (at 148.59 173.99 0) 1356 | (effects (font (size 1.27 1.27)) hide) 1357 | ) 1358 | (pin "1" (uuid 8a434250-e9ef-407d-91c4-2bbe591e0528)) 1359 | ) 1360 | 1361 | (symbol (lib_id "power:PWR_FLAG") (at 148.59 186.69 90) (unit 1) 1362 | (in_bom yes) (on_board yes) (fields_autoplaced) 1363 | (uuid 807597f0-84e3-4986-b753-f7ef40d3ce6c) 1364 | (property "Reference" "#FLG04" (id 0) (at 146.685 186.69 0) 1365 | (effects (font (size 1.27 1.27)) hide) 1366 | ) 1367 | (property "Value" "PWR_FLAG" (id 1) (at 144.78 186.6899 90) 1368 | (effects (font (size 1.27 1.27)) (justify left)) 1369 | ) 1370 | (property "Footprint" "" (id 2) (at 148.59 186.69 0) 1371 | (effects (font (size 1.27 1.27)) hide) 1372 | ) 1373 | (property "Datasheet" "~" (id 3) (at 148.59 186.69 0) 1374 | (effects (font (size 1.27 1.27)) hide) 1375 | ) 1376 | (pin "1" (uuid c8d28666-39c6-4167-a487-6dcf647fff2f)) 1377 | ) 1378 | 1379 | (symbol (lib_id "power:PWR_FLAG") (at 148.59 167.64 90) (unit 1) 1380 | (in_bom yes) (on_board yes) (fields_autoplaced) 1381 | (uuid b4787e7a-373f-4fd9-9fa0-7d19e2d1f623) 1382 | (property "Reference" "#FLG01" (id 0) (at 146.685 167.64 0) 1383 | (effects (font (size 1.27 1.27)) hide) 1384 | ) 1385 | (property "Value" "PWR_FLAG" (id 1) (at 144.78 167.6399 90) 1386 | (effects (font (size 1.27 1.27)) (justify left)) 1387 | ) 1388 | (property "Footprint" "" (id 2) (at 148.59 167.64 0) 1389 | (effects (font (size 1.27 1.27)) hide) 1390 | ) 1391 | (property "Datasheet" "~" (id 3) (at 148.59 167.64 0) 1392 | (effects (font (size 1.27 1.27)) hide) 1393 | ) 1394 | (pin "1" (uuid 9d1773b6-ad1c-465e-8976-f75cb3982ef7)) 1395 | ) 1396 | 1397 | (symbol (lib_id "power:GND") (at 224.79 135.89 0) (unit 1) 1398 | (in_bom yes) (on_board yes) (fields_autoplaced) 1399 | (uuid cac17e13-3994-4ef9-9943-ba474c42df5b) 1400 | (property "Reference" "#PWR01" (id 0) (at 224.79 142.24 0) 1401 | (effects (font (size 1.27 1.27)) hide) 1402 | ) 1403 | (property "Value" "GND" (id 1) (at 224.79 140.97 0)) 1404 | (property "Footprint" "" (id 2) (at 224.79 135.89 0) 1405 | (effects (font (size 1.27 1.27)) hide) 1406 | ) 1407 | (property "Datasheet" "" (id 3) (at 224.79 135.89 0) 1408 | (effects (font (size 1.27 1.27)) hide) 1409 | ) 1410 | (pin "1" (uuid 410601ce-8685-40ea-9c6b-646e93eed4d3)) 1411 | ) 1412 | 1413 | (symbol (lib_id "Device:R") (at 196.85 128.27 90) (unit 1) 1414 | (in_bom yes) (on_board yes) (fields_autoplaced) 1415 | (uuid cf8e1a47-139e-4ae0-acd3-69303999804e) 1416 | (property "Reference" "R1" (id 0) (at 196.85 121.92 90)) 1417 | (property "Value" "5k" (id 1) (at 196.85 124.46 90)) 1418 | (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (id 2) (at 196.85 130.048 90) 1419 | (effects (font (size 1.27 1.27)) hide) 1420 | ) 1421 | (property "Datasheet" "~" (id 3) (at 196.85 128.27 0) 1422 | (effects (font (size 1.27 1.27)) hide) 1423 | ) 1424 | (pin "1" (uuid 4591423b-f157-4575-8815-d1a69ec32525)) 1425 | (pin "2" (uuid ba14c37a-09e0-4e68-938c-f9d296535fec)) 1426 | ) 1427 | 1428 | (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 275.59 173.99 0) (unit 1) 1429 | (in_bom yes) (on_board yes) (fields_autoplaced) 1430 | (uuid d7afdb97-a7f1-4179-b6e1-69fa586362bc) 1431 | (property "Reference" "#LOGO1" (id 0) (at 275.59 167.005 0) 1432 | (effects (font (size 1.27 1.27)) hide) 1433 | ) 1434 | (property "Value" "Logo_Open_Hardware_Small" (id 1) (at 275.59 179.705 0) 1435 | (effects (font (size 1.27 1.27)) hide) 1436 | ) 1437 | (property "Footprint" "" (id 2) (at 275.59 173.99 0) 1438 | (effects (font (size 1.27 1.27)) hide) 1439 | ) 1440 | (property "Datasheet" "~" (id 3) (at 275.59 173.99 0) 1441 | (effects (font (size 1.27 1.27)) hide) 1442 | ) 1443 | ) 1444 | 1445 | (sheet_instances 1446 | (path "/" (page "1")) 1447 | ) 1448 | 1449 | (symbol_instances 1450 | (path "/b4787e7a-373f-4fd9-9fa0-7d19e2d1f623" 1451 | (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "") 1452 | ) 1453 | (path "/6e0155db-83db-4a84-93aa-f70c0d00e0ed" 1454 | (reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "") 1455 | ) 1456 | (path "/30002114-bb65-4369-a18c-d1b76eca52c9" 1457 | (reference "#FLG03") (unit 1) (value "PWR_FLAG") (footprint "") 1458 | ) 1459 | (path "/807597f0-84e3-4986-b753-f7ef40d3ce6c" 1460 | (reference "#FLG04") (unit 1) (value "PWR_FLAG") (footprint "") 1461 | ) 1462 | (path "/d7afdb97-a7f1-4179-b6e1-69fa586362bc" 1463 | (reference "#LOGO1") (unit 1) (value "Logo_Open_Hardware_Small") (footprint "") 1464 | ) 1465 | (path "/cac17e13-3994-4ef9-9943-ba474c42df5b" 1466 | (reference "#PWR01") (unit 1) (value "GND") (footprint "") 1467 | ) 1468 | (path "/3ce23121-b2d7-417a-a2ec-5114305fbf94" 1469 | (reference "D1") (unit 1) (value "LED (0805 Green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") 1470 | ) 1471 | (path "/15e6da14-57da-4fcd-a7a8-a004cc23da9e" 1472 | (reference "J1") (unit 1) (value "Conn_01x08") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical") 1473 | ) 1474 | (path "/cf8e1a47-139e-4ae0-acd3-69303999804e" 1475 | (reference "R1") (unit 1) (value "5k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder") 1476 | ) 1477 | (path "/376ca56a-29ee-4f83-81b0-a39eae9d6ea3" 1478 | (reference "U1") (unit 1) (value "Pico") (footprint "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH") 1479 | ) 1480 | ) 1481 | ) 1482 | --------------------------------------------------------------------------------