├── .gitignore ├── Images ├── Mini_ELRS.jpg └── Mini_ELRS2.jpg ├── LICENSE ├── Mini_ELRS.kicad_pcb ├── Mini_ELRS.kicad_pro ├── Mini_ELRS.kicad_sch ├── README.md ├── datasheets ├── esp32-pico-d4_datasheet_cn.pdf ├── esp32_datasheet_cn.pdf └── esp32_technical_reference_manual_cn.pdf ├── docs └── Mini_ELRS.pdf ├── fp-lib-table └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/kicad 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=kicad 4 | 5 | ### KiCad ### 6 | # For PCBs designed using KiCad: https://www.kicad.org/ 7 | # Format documentation: https://kicad.org/help/file-formats/ 8 | 9 | # Temporary files 10 | *.000 11 | *.bak 12 | *.bck 13 | *.kicad_pcb-bak 14 | *.kicad_sch-bak 15 | *-backups 16 | *.kicad_prl 17 | *.sch-bak 18 | *~ 19 | _autosave-* 20 | *auto_saved_files* 21 | *.tmp 22 | *-save.pro 23 | *-save.kicad_pcb 24 | fp-info-cache 25 | 26 | # Netlist files (exported from Eeschema) 27 | *.net 28 | 29 | # Autorouter files (exported from Pcbnew) 30 | *.dsn 31 | *.ses 32 | 33 | # Exported BOM files 34 | *.xml 35 | *.csv 36 | 37 | ### KiCad Patch ### 38 | rescue-backup/ 39 | 40 | *.tsv 41 | bom/ 42 | 43 | # Gerber export output 44 | out/ 45 | gerber/ 46 | # End of https://www.toptal.com/developers/gitignore/api/kicad -------------------------------------------------------------------------------- /Images/Mini_ELRS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/Images/Mini_ELRS.jpg -------------------------------------------------------------------------------- /Images/Mini_ELRS2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/Images/Mini_ELRS2.jpg -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Mini_ELRS.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.0, 37 | "height": 1.7, 38 | "width": 1.7 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.127 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.09989999999999999, 107 | "min_copper_edge_clearance": 0.39999999999999997, 108 | "min_hole_clearance": 0.127, 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.19999999999999998, 114 | "min_track_width": 0.08889999999999999, 115 | "min_via_annular_width": 0.049999999999999996, 116 | "min_via_diameter": 0.44999999999999996, 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.254, 124 | 0.29337, 125 | 0.34925, 126 | 0.508, 127 | 0.762 128 | ], 129 | "via_dimensions": [ 130 | { 131 | "diameter": 0.0, 132 | "drill": 0.0 133 | } 134 | ], 135 | "zones_allow_external_fillets": false, 136 | "zones_use_no_outline": true 137 | }, 138 | "layer_presets": [] 139 | }, 140 | "boards": [], 141 | "cvpcb": { 142 | "equivalence_files": [] 143 | }, 144 | "erc": { 145 | "erc_exclusions": [], 146 | "meta": { 147 | "version": 0 148 | }, 149 | "pin_map": [ 150 | [ 151 | 0, 152 | 0, 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 1, 158 | 0, 159 | 0, 160 | 0, 161 | 0, 162 | 2 163 | ], 164 | [ 165 | 0, 166 | 2, 167 | 0, 168 | 1, 169 | 0, 170 | 0, 171 | 1, 172 | 0, 173 | 2, 174 | 2, 175 | 2, 176 | 2 177 | ], 178 | [ 179 | 0, 180 | 0, 181 | 0, 182 | 0, 183 | 0, 184 | 0, 185 | 1, 186 | 0, 187 | 1, 188 | 0, 189 | 1, 190 | 2 191 | ], 192 | [ 193 | 0, 194 | 1, 195 | 0, 196 | 0, 197 | 0, 198 | 0, 199 | 1, 200 | 1, 201 | 2, 202 | 1, 203 | 1, 204 | 2 205 | ], 206 | [ 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 1, 214 | 0, 215 | 0, 216 | 0, 217 | 0, 218 | 2 219 | ], 220 | [ 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 0, 228 | 0, 229 | 0, 230 | 0, 231 | 0, 232 | 2 233 | ], 234 | [ 235 | 1, 236 | 1, 237 | 1, 238 | 1, 239 | 1, 240 | 0, 241 | 1, 242 | 1, 243 | 1, 244 | 1, 245 | 1, 246 | 2 247 | ], 248 | [ 249 | 0, 250 | 0, 251 | 0, 252 | 1, 253 | 0, 254 | 0, 255 | 1, 256 | 0, 257 | 0, 258 | 0, 259 | 0, 260 | 2 261 | ], 262 | [ 263 | 0, 264 | 2, 265 | 1, 266 | 2, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 2, 272 | 2, 273 | 2, 274 | 2 275 | ], 276 | [ 277 | 0, 278 | 2, 279 | 0, 280 | 1, 281 | 0, 282 | 0, 283 | 1, 284 | 0, 285 | 2, 286 | 0, 287 | 0, 288 | 2 289 | ], 290 | [ 291 | 0, 292 | 2, 293 | 1, 294 | 1, 295 | 0, 296 | 0, 297 | 1, 298 | 0, 299 | 2, 300 | 0, 301 | 0, 302 | 2 303 | ], 304 | [ 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2, 312 | 2, 313 | 2, 314 | 2, 315 | 2, 316 | 2 317 | ] 318 | ], 319 | "rule_severities": { 320 | "bus_definition_conflict": "error", 321 | "bus_entry_needed": "error", 322 | "bus_label_syntax": "error", 323 | "bus_to_bus_conflict": "error", 324 | "bus_to_net_conflict": "error", 325 | "different_unit_footprint": "error", 326 | "different_unit_net": "error", 327 | "duplicate_reference": "error", 328 | "duplicate_sheet_names": "error", 329 | "extra_units": "error", 330 | "global_label_dangling": "warning", 331 | "hier_label_mismatch": "error", 332 | "label_dangling": "error", 333 | "lib_symbol_issues": "warning", 334 | "multiple_net_names": "warning", 335 | "net_not_bus_member": "warning", 336 | "no_connect_connected": "warning", 337 | "no_connect_dangling": "warning", 338 | "pin_not_connected": "error", 339 | "pin_not_driven": "error", 340 | "pin_to_pin": "warning", 341 | "power_pin_not_driven": "error", 342 | "similar_labels": "warning", 343 | "unannotated": "error", 344 | "unit_value_mismatch": "error", 345 | "unresolved_variable": "error", 346 | "wire_dangling": "error" 347 | } 348 | }, 349 | "libraries": { 350 | "pinned_footprint_libs": [ 351 | "ic_footprint" 352 | ], 353 | "pinned_symbol_libs": [] 354 | }, 355 | "meta": { 356 | "filename": "Mini_ELRS.kicad_pro", 357 | "version": 1 358 | }, 359 | "net_settings": { 360 | "classes": [ 361 | { 362 | "bus_width": 12.0, 363 | "clearance": 0.0999, 364 | "diff_pair_gap": 0.25, 365 | "diff_pair_via_gap": 0.25, 366 | "diff_pair_width": 0.2, 367 | "line_style": 0, 368 | "microvia_diameter": 0.3, 369 | "microvia_drill": 0.1, 370 | "name": "Default", 371 | "pcb_color": "rgba(0, 0, 0, 0.000)", 372 | "schematic_color": "rgba(0, 0, 0, 0.000)", 373 | "track_width": 0.1524, 374 | "via_diameter": 0.45, 375 | "via_drill": 0.2, 376 | "wire_width": 6.0 377 | } 378 | ], 379 | "meta": { 380 | "version": 2 381 | }, 382 | "net_colors": null 383 | }, 384 | "pcbnew": { 385 | "last_paths": { 386 | "gencad": "", 387 | "idf": "", 388 | "netlist": "", 389 | "specctra_dsn": "", 390 | "step": "", 391 | "vrml": "" 392 | }, 393 | "page_layout_descr_file": "" 394 | }, 395 | "schematic": { 396 | "annotate_start_num": 0, 397 | "drawing": { 398 | "default_line_thickness": 6.0, 399 | "default_text_size": 50.0, 400 | "field_names": [], 401 | "intersheets_ref_own_page": false, 402 | "intersheets_ref_prefix": "", 403 | "intersheets_ref_short": false, 404 | "intersheets_ref_show": false, 405 | "intersheets_ref_suffix": "", 406 | "junction_size_choice": 3, 407 | "label_size_ratio": 0.375, 408 | "pin_symbol_size": 25.0, 409 | "text_offset_ratio": 0.15 410 | }, 411 | "legacy_lib_dir": "", 412 | "legacy_lib_list": [], 413 | "meta": { 414 | "version": 1 415 | }, 416 | "net_format_name": "", 417 | "ngspice": { 418 | "fix_include_paths": true, 419 | "fix_passive_vals": false, 420 | "meta": { 421 | "version": 0 422 | }, 423 | "model_mode": 0, 424 | "workbook_filename": "" 425 | }, 426 | "page_layout_descr_file": "", 427 | "plot_directory": "docs/", 428 | "spice_adjust_passive_values": false, 429 | "spice_external_command": "spice \"%I\"", 430 | "subpart_first_id": 65, 431 | "subpart_id_separator": 0 432 | }, 433 | "sheets": [ 434 | [ 435 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 436 | "" 437 | ] 438 | ], 439 | "text_variables": {} 440 | } 441 | -------------------------------------------------------------------------------- /Mini_ELRS.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) 4 | 5 | (paper "A4") 6 | 7 | (lib_symbols 8 | (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 9 | (property "Reference" "J" (id 0) (at 0 2.54 0) 10 | (effects (font (size 1.27 1.27))) 11 | ) 12 | (property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0) 13 | (effects (font (size 1.27 1.27))) 14 | ) 15 | (property "Footprint" "" (id 2) (at 0 0 0) 16 | (effects (font (size 1.27 1.27)) hide) 17 | ) 18 | (property "Datasheet" "~" (id 3) (at 0 0 0) 19 | (effects (font (size 1.27 1.27)) hide) 20 | ) 21 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 22 | (effects (font (size 1.27 1.27)) hide) 23 | ) 24 | (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 25 | (effects (font (size 1.27 1.27)) hide) 26 | ) 27 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 28 | (effects (font (size 1.27 1.27)) hide) 29 | ) 30 | (symbol "Conn_01x02_1_1" 31 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 32 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 33 | (fill (type none)) 34 | ) 35 | (rectangle (start -1.27 0.127) (end 0 -0.127) 36 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 37 | (fill (type none)) 38 | ) 39 | (rectangle (start -1.27 1.27) (end 1.27 -3.81) 40 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 41 | (fill (type background)) 42 | ) 43 | (pin passive line (at -5.08 0 0) (length 3.81) 44 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 45 | (number "1" (effects (font (size 1.27 1.27)))) 46 | ) 47 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 48 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 49 | (number "2" (effects (font (size 1.27 1.27)))) 50 | ) 51 | ) 52 | ) 53 | (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 54 | (property "Reference" "J" (id 0) (at 0 5.08 0) 55 | (effects (font (size 1.27 1.27))) 56 | ) 57 | (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0) 58 | (effects (font (size 1.27 1.27))) 59 | ) 60 | (property "Footprint" "" (id 2) (at 0 0 0) 61 | (effects (font (size 1.27 1.27)) hide) 62 | ) 63 | (property "Datasheet" "~" (id 3) (at 0 0 0) 64 | (effects (font (size 1.27 1.27)) hide) 65 | ) 66 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 67 | (effects (font (size 1.27 1.27)) hide) 68 | ) 69 | (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 70 | (effects (font (size 1.27 1.27)) hide) 71 | ) 72 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 73 | (effects (font (size 1.27 1.27)) hide) 74 | ) 75 | (symbol "Conn_01x04_1_1" 76 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 77 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 78 | (fill (type none)) 79 | ) 80 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 81 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | (rectangle (start -1.27 0.127) (end 0 -0.127) 85 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 86 | (fill (type none)) 87 | ) 88 | (rectangle (start -1.27 2.667) (end 0 2.413) 89 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 90 | (fill (type none)) 91 | ) 92 | (rectangle (start -1.27 3.81) (end 1.27 -6.35) 93 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 94 | (fill (type background)) 95 | ) 96 | (pin passive line (at -5.08 2.54 0) (length 3.81) 97 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 98 | (number "1" (effects (font (size 1.27 1.27)))) 99 | ) 100 | (pin passive line (at -5.08 0 0) (length 3.81) 101 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 102 | (number "2" (effects (font (size 1.27 1.27)))) 103 | ) 104 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 105 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 106 | (number "3" (effects (font (size 1.27 1.27)))) 107 | ) 108 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 109 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 110 | (number "4" (effects (font (size 1.27 1.27)))) 111 | ) 112 | ) 113 | ) 114 | (symbol "Connector_Generic_MountingPin:Conn_01x03_MountingPin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 115 | (property "Reference" "J" (id 0) (at 0 5.08 0) 116 | (effects (font (size 1.27 1.27))) 117 | ) 118 | (property "Value" "Conn_01x03_MountingPin" (id 1) (at 1.27 -5.08 0) 119 | (effects (font (size 1.27 1.27)) (justify left)) 120 | ) 121 | (property "Footprint" "" (id 2) (at 0 0 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 0 0 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 128 | (effects (font (size 1.27 1.27)) hide) 129 | ) 130 | (property "ki_description" "Generic connectable mounting pin connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 131 | (effects (font (size 1.27 1.27)) hide) 132 | ) 133 | (property "ki_fp_filters" "Connector*:*_1x??-1MP*" (id 6) (at 0 0 0) 134 | (effects (font (size 1.27 1.27)) hide) 135 | ) 136 | (symbol "Conn_01x03_MountingPin_1_1" 137 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 138 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 139 | (fill (type none)) 140 | ) 141 | (rectangle (start -1.27 0.127) (end 0 -0.127) 142 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 143 | (fill (type none)) 144 | ) 145 | (rectangle (start -1.27 2.667) (end 0 2.413) 146 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 147 | (fill (type none)) 148 | ) 149 | (rectangle (start -1.27 3.81) (end 1.27 -3.81) 150 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 151 | (fill (type background)) 152 | ) 153 | (polyline 154 | (pts 155 | (xy -1.016 -4.572) 156 | (xy 1.016 -4.572) 157 | ) 158 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 159 | (fill (type none)) 160 | ) 161 | (text "Mounting" (at 0 -4.191 0) 162 | (effects (font (size 0.381 0.381))) 163 | ) 164 | (pin passive line (at -5.08 2.54 0) (length 3.81) 165 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 166 | (number "1" (effects (font (size 1.27 1.27)))) 167 | ) 168 | (pin passive line (at -5.08 0 0) (length 3.81) 169 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 170 | (number "2" (effects (font (size 1.27 1.27)))) 171 | ) 172 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 173 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 174 | (number "3" (effects (font (size 1.27 1.27)))) 175 | ) 176 | (pin passive line (at 0 -7.62 90) (length 3.048) 177 | (name "MountPin" (effects (font (size 1.27 1.27)))) 178 | (number "MP" (effects (font (size 1.27 1.27)))) 179 | ) 180 | ) 181 | ) 182 | (symbol "Device:Antenna" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 183 | (property "Reference" "AE" (id 0) (at -1.905 1.905 0) 184 | (effects (font (size 1.27 1.27)) (justify right)) 185 | ) 186 | (property "Value" "Antenna" (id 1) (at -1.905 0 0) 187 | (effects (font (size 1.27 1.27)) (justify right)) 188 | ) 189 | (property "Footprint" "" (id 2) (at 0 0 0) 190 | (effects (font (size 1.27 1.27)) hide) 191 | ) 192 | (property "Datasheet" "~" (id 3) (at 0 0 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "ki_keywords" "antenna" (id 4) (at 0 0 0) 196 | (effects (font (size 1.27 1.27)) hide) 197 | ) 198 | (property "ki_description" "Antenna" (id 5) (at 0 0 0) 199 | (effects (font (size 1.27 1.27)) hide) 200 | ) 201 | (symbol "Antenna_0_1" 202 | (polyline 203 | (pts 204 | (xy 0 2.54) 205 | (xy 0 -3.81) 206 | ) 207 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 208 | (fill (type none)) 209 | ) 210 | (polyline 211 | (pts 212 | (xy 1.27 2.54) 213 | (xy 0 -2.54) 214 | (xy -1.27 2.54) 215 | ) 216 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 217 | (fill (type none)) 218 | ) 219 | ) 220 | (symbol "Antenna_1_1" 221 | (pin input line (at 0 -5.08 90) (length 2.54) 222 | (name "A" (effects (font (size 1.27 1.27)))) 223 | (number "1" (effects (font (size 1.27 1.27)))) 224 | ) 225 | ) 226 | ) 227 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 228 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 229 | (effects (font (size 1.27 1.27)) (justify left)) 230 | ) 231 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 232 | (effects (font (size 1.27 1.27)) (justify left)) 233 | ) 234 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 235 | (effects (font (size 1.27 1.27)) hide) 236 | ) 237 | (property "Datasheet" "~" (id 3) (at 0 0 0) 238 | (effects (font (size 1.27 1.27)) hide) 239 | ) 240 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 241 | (effects (font (size 1.27 1.27)) hide) 242 | ) 243 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 244 | (effects (font (size 1.27 1.27)) hide) 245 | ) 246 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 247 | (effects (font (size 1.27 1.27)) hide) 248 | ) 249 | (symbol "C_0_1" 250 | (polyline 251 | (pts 252 | (xy -2.032 -0.762) 253 | (xy 2.032 -0.762) 254 | ) 255 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 256 | (fill (type none)) 257 | ) 258 | (polyline 259 | (pts 260 | (xy -2.032 0.762) 261 | (xy 2.032 0.762) 262 | ) 263 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 264 | (fill (type none)) 265 | ) 266 | ) 267 | (symbol "C_1_1" 268 | (pin passive line (at 0 3.81 270) (length 2.794) 269 | (name "~" (effects (font (size 1.27 1.27)))) 270 | (number "1" (effects (font (size 1.27 1.27)))) 271 | ) 272 | (pin passive line (at 0 -3.81 90) (length 2.794) 273 | (name "~" (effects (font (size 1.27 1.27)))) 274 | (number "2" (effects (font (size 1.27 1.27)))) 275 | ) 276 | ) 277 | ) 278 | (symbol "Device:Crystal_GND24_Small" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 279 | (property "Reference" "Y" (id 0) (at 1.27 4.445 0) 280 | (effects (font (size 1.27 1.27)) (justify left)) 281 | ) 282 | (property "Value" "Crystal_GND24_Small" (id 1) (at 1.27 2.54 0) 283 | (effects (font (size 1.27 1.27)) (justify left)) 284 | ) 285 | (property "Footprint" "" (id 2) (at 0 0 0) 286 | (effects (font (size 1.27 1.27)) hide) 287 | ) 288 | (property "Datasheet" "~" (id 3) (at 0 0 0) 289 | (effects (font (size 1.27 1.27)) hide) 290 | ) 291 | (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0) 292 | (effects (font (size 1.27 1.27)) hide) 293 | ) 294 | (property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol" (id 5) (at 0 0 0) 295 | (effects (font (size 1.27 1.27)) hide) 296 | ) 297 | (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0) 298 | (effects (font (size 1.27 1.27)) hide) 299 | ) 300 | (symbol "Crystal_GND24_Small_0_1" 301 | (rectangle (start -0.762 -1.524) (end 0.762 1.524) 302 | (stroke (width 0) (type default) (color 0 0 0 0)) 303 | (fill (type none)) 304 | ) 305 | (polyline 306 | (pts 307 | (xy -1.27 -0.762) 308 | (xy -1.27 0.762) 309 | ) 310 | (stroke (width 0.381) (type default) (color 0 0 0 0)) 311 | (fill (type none)) 312 | ) 313 | (polyline 314 | (pts 315 | (xy 1.27 -0.762) 316 | (xy 1.27 0.762) 317 | ) 318 | (stroke (width 0.381) (type default) (color 0 0 0 0)) 319 | (fill (type none)) 320 | ) 321 | (polyline 322 | (pts 323 | (xy -1.27 -1.27) 324 | (xy -1.27 -1.905) 325 | (xy 1.27 -1.905) 326 | (xy 1.27 -1.27) 327 | ) 328 | (stroke (width 0) (type default) (color 0 0 0 0)) 329 | (fill (type none)) 330 | ) 331 | (polyline 332 | (pts 333 | (xy -1.27 1.27) 334 | (xy -1.27 1.905) 335 | (xy 1.27 1.905) 336 | (xy 1.27 1.27) 337 | ) 338 | (stroke (width 0) (type default) (color 0 0 0 0)) 339 | (fill (type none)) 340 | ) 341 | ) 342 | (symbol "Crystal_GND24_Small_1_1" 343 | (pin passive line (at -2.54 0 0) (length 1.27) 344 | (name "1" (effects (font (size 1.27 1.27)))) 345 | (number "1" (effects (font (size 0.762 0.762)))) 346 | ) 347 | (pin passive line (at 0 -2.54 90) (length 0.635) 348 | (name "2" (effects (font (size 1.27 1.27)))) 349 | (number "2" (effects (font (size 0.762 0.762)))) 350 | ) 351 | (pin passive line (at 2.54 0 180) (length 1.27) 352 | (name "3" (effects (font (size 1.27 1.27)))) 353 | (number "3" (effects (font (size 0.762 0.762)))) 354 | ) 355 | (pin passive line (at 0 2.54 270) (length 0.635) 356 | (name "4" (effects (font (size 1.27 1.27)))) 357 | (number "4" (effects (font (size 0.762 0.762)))) 358 | ) 359 | ) 360 | ) 361 | (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 362 | (property "Reference" "D" (id 0) (at 0 2.54 0) 363 | (effects (font (size 1.27 1.27))) 364 | ) 365 | (property "Value" "LED" (id 1) (at 0 -2.54 0) 366 | (effects (font (size 1.27 1.27))) 367 | ) 368 | (property "Footprint" "" (id 2) (at 0 0 0) 369 | (effects (font (size 1.27 1.27)) hide) 370 | ) 371 | (property "Datasheet" "~" (id 3) (at 0 0 0) 372 | (effects (font (size 1.27 1.27)) hide) 373 | ) 374 | (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) 375 | (effects (font (size 1.27 1.27)) hide) 376 | ) 377 | (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) 378 | (effects (font (size 1.27 1.27)) hide) 379 | ) 380 | (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) 381 | (effects (font (size 1.27 1.27)) hide) 382 | ) 383 | (symbol "LED_0_1" 384 | (polyline 385 | (pts 386 | (xy -1.27 -1.27) 387 | (xy -1.27 1.27) 388 | ) 389 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 390 | (fill (type none)) 391 | ) 392 | (polyline 393 | (pts 394 | (xy -1.27 0) 395 | (xy 1.27 0) 396 | ) 397 | (stroke (width 0) (type default) (color 0 0 0 0)) 398 | (fill (type none)) 399 | ) 400 | (polyline 401 | (pts 402 | (xy 1.27 -1.27) 403 | (xy 1.27 1.27) 404 | (xy -1.27 0) 405 | (xy 1.27 -1.27) 406 | ) 407 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 408 | (fill (type none)) 409 | ) 410 | (polyline 411 | (pts 412 | (xy -3.048 -0.762) 413 | (xy -4.572 -2.286) 414 | (xy -3.81 -2.286) 415 | (xy -4.572 -2.286) 416 | (xy -4.572 -1.524) 417 | ) 418 | (stroke (width 0) (type default) (color 0 0 0 0)) 419 | (fill (type none)) 420 | ) 421 | (polyline 422 | (pts 423 | (xy -1.778 -0.762) 424 | (xy -3.302 -2.286) 425 | (xy -2.54 -2.286) 426 | (xy -3.302 -2.286) 427 | (xy -3.302 -1.524) 428 | ) 429 | (stroke (width 0) (type default) (color 0 0 0 0)) 430 | (fill (type none)) 431 | ) 432 | ) 433 | (symbol "LED_1_1" 434 | (pin passive line (at -3.81 0 0) (length 2.54) 435 | (name "K" (effects (font (size 1.27 1.27)))) 436 | (number "1" (effects (font (size 1.27 1.27)))) 437 | ) 438 | (pin passive line (at 3.81 0 180) (length 2.54) 439 | (name "A" (effects (font (size 1.27 1.27)))) 440 | (number "2" (effects (font (size 1.27 1.27)))) 441 | ) 442 | ) 443 | ) 444 | (symbol "Device:Q_NMOS_GSD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 445 | (property "Reference" "Q" (id 0) (at 5.08 1.27 0) 446 | (effects (font (size 1.27 1.27)) (justify left)) 447 | ) 448 | (property "Value" "Q_NMOS_GSD" (id 1) (at 5.08 -1.27 0) 449 | (effects (font (size 1.27 1.27)) (justify left)) 450 | ) 451 | (property "Footprint" "" (id 2) (at 5.08 2.54 0) 452 | (effects (font (size 1.27 1.27)) hide) 453 | ) 454 | (property "Datasheet" "~" (id 3) (at 0 0 0) 455 | (effects (font (size 1.27 1.27)) hide) 456 | ) 457 | (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" (id 4) (at 0 0 0) 458 | (effects (font (size 1.27 1.27)) hide) 459 | ) 460 | (property "ki_description" "N-MOSFET transistor, gate/source/drain" (id 5) (at 0 0 0) 461 | (effects (font (size 1.27 1.27)) hide) 462 | ) 463 | (symbol "Q_NMOS_GSD_0_1" 464 | (polyline 465 | (pts 466 | (xy 0.254 0) 467 | (xy -2.54 0) 468 | ) 469 | (stroke (width 0) (type default) (color 0 0 0 0)) 470 | (fill (type none)) 471 | ) 472 | (polyline 473 | (pts 474 | (xy 0.254 1.905) 475 | (xy 0.254 -1.905) 476 | ) 477 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 478 | (fill (type none)) 479 | ) 480 | (polyline 481 | (pts 482 | (xy 0.762 -1.27) 483 | (xy 0.762 -2.286) 484 | ) 485 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 486 | (fill (type none)) 487 | ) 488 | (polyline 489 | (pts 490 | (xy 0.762 0.508) 491 | (xy 0.762 -0.508) 492 | ) 493 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 494 | (fill (type none)) 495 | ) 496 | (polyline 497 | (pts 498 | (xy 0.762 2.286) 499 | (xy 0.762 1.27) 500 | ) 501 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 502 | (fill (type none)) 503 | ) 504 | (polyline 505 | (pts 506 | (xy 2.54 2.54) 507 | (xy 2.54 1.778) 508 | ) 509 | (stroke (width 0) (type default) (color 0 0 0 0)) 510 | (fill (type none)) 511 | ) 512 | (polyline 513 | (pts 514 | (xy 2.54 -2.54) 515 | (xy 2.54 0) 516 | (xy 0.762 0) 517 | ) 518 | (stroke (width 0) (type default) (color 0 0 0 0)) 519 | (fill (type none)) 520 | ) 521 | (polyline 522 | (pts 523 | (xy 0.762 -1.778) 524 | (xy 3.302 -1.778) 525 | (xy 3.302 1.778) 526 | (xy 0.762 1.778) 527 | ) 528 | (stroke (width 0) (type default) (color 0 0 0 0)) 529 | (fill (type none)) 530 | ) 531 | (polyline 532 | (pts 533 | (xy 1.016 0) 534 | (xy 2.032 0.381) 535 | (xy 2.032 -0.381) 536 | (xy 1.016 0) 537 | ) 538 | (stroke (width 0) (type default) (color 0 0 0 0)) 539 | (fill (type outline)) 540 | ) 541 | (polyline 542 | (pts 543 | (xy 2.794 0.508) 544 | (xy 2.921 0.381) 545 | (xy 3.683 0.381) 546 | (xy 3.81 0.254) 547 | ) 548 | (stroke (width 0) (type default) (color 0 0 0 0)) 549 | (fill (type none)) 550 | ) 551 | (polyline 552 | (pts 553 | (xy 3.302 0.381) 554 | (xy 2.921 -0.254) 555 | (xy 3.683 -0.254) 556 | (xy 3.302 0.381) 557 | ) 558 | (stroke (width 0) (type default) (color 0 0 0 0)) 559 | (fill (type none)) 560 | ) 561 | (circle (center 1.651 0) (radius 2.794) 562 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 563 | (fill (type none)) 564 | ) 565 | (circle (center 2.54 -1.778) (radius 0.254) 566 | (stroke (width 0) (type default) (color 0 0 0 0)) 567 | (fill (type outline)) 568 | ) 569 | (circle (center 2.54 1.778) (radius 0.254) 570 | (stroke (width 0) (type default) (color 0 0 0 0)) 571 | (fill (type outline)) 572 | ) 573 | ) 574 | (symbol "Q_NMOS_GSD_1_1" 575 | (pin input line (at -5.08 0 0) (length 2.54) 576 | (name "G" (effects (font (size 1.27 1.27)))) 577 | (number "1" (effects (font (size 1.27 1.27)))) 578 | ) 579 | (pin passive line (at 2.54 -5.08 90) (length 2.54) 580 | (name "S" (effects (font (size 1.27 1.27)))) 581 | (number "2" (effects (font (size 1.27 1.27)))) 582 | ) 583 | (pin passive line (at 2.54 5.08 270) (length 2.54) 584 | (name "D" (effects (font (size 1.27 1.27)))) 585 | (number "3" (effects (font (size 1.27 1.27)))) 586 | ) 587 | ) 588 | ) 589 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 590 | (property "Reference" "R" (id 0) (at 2.032 0 90) 591 | (effects (font (size 1.27 1.27))) 592 | ) 593 | (property "Value" "R" (id 1) (at 0 0 90) 594 | (effects (font (size 1.27 1.27))) 595 | ) 596 | (property "Footprint" "" (id 2) (at -1.778 0 90) 597 | (effects (font (size 1.27 1.27)) hide) 598 | ) 599 | (property "Datasheet" "~" (id 3) (at 0 0 0) 600 | (effects (font (size 1.27 1.27)) hide) 601 | ) 602 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 603 | (effects (font (size 1.27 1.27)) hide) 604 | ) 605 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 606 | (effects (font (size 1.27 1.27)) hide) 607 | ) 608 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 609 | (effects (font (size 1.27 1.27)) hide) 610 | ) 611 | (symbol "R_0_1" 612 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 613 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 614 | (fill (type none)) 615 | ) 616 | ) 617 | (symbol "R_1_1" 618 | (pin passive line (at 0 3.81 270) (length 1.27) 619 | (name "~" (effects (font (size 1.27 1.27)))) 620 | (number "1" (effects (font (size 1.27 1.27)))) 621 | ) 622 | (pin passive line (at 0 -3.81 90) (length 1.27) 623 | (name "~" (effects (font (size 1.27 1.27)))) 624 | (number "2" (effects (font (size 1.27 1.27)))) 625 | ) 626 | ) 627 | ) 628 | (symbol "RF_Module:ESP32-PICO-D4" (in_bom yes) (on_board yes) 629 | (property "Reference" "U" (id 0) (at -17.78 39.37 0) 630 | (effects (font (size 1.27 1.27)) (justify left)) 631 | ) 632 | (property "Value" "ESP32-PICO-D4" (id 1) (at 3.81 39.37 0) 633 | (effects (font (size 1.27 1.27)) (justify left)) 634 | ) 635 | (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm" (id 2) (at 0 -43.18 0) 636 | (effects (font (size 1.27 1.27)) hide) 637 | ) 638 | (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf" (id 3) (at 6.35 -25.4 0) 639 | (effects (font (size 1.27 1.27)) hide) 640 | ) 641 | (property "ki_keywords" "RF Radio BT ESP ESP32 Espressif external antenna" (id 4) (at 0 0 0) 642 | (effects (font (size 1.27 1.27)) hide) 643 | ) 644 | (property "ki_description" "RF Module, ESP32 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, external antenna, QFN-48" (id 5) (at 0 0 0) 645 | (effects (font (size 1.27 1.27)) hide) 646 | ) 647 | (property "ki_fp_filters" "QFN*1EP*7x7mm*P0.5mm*" (id 6) (at 0 0 0) 648 | (effects (font (size 1.27 1.27)) hide) 649 | ) 650 | (symbol "ESP32-PICO-D4_0_0" 651 | (pin power_in line (at -5.08 40.64 270) (length 2.54) 652 | (name "VDDA" (effects (font (size 1.27 1.27)))) 653 | (number "1" (effects (font (size 1.27 1.27)))) 654 | ) 655 | (pin input line (at 20.32 -25.4 180) (length 2.54) 656 | (name "IO34" (effects (font (size 1.27 1.27)))) 657 | (number "10" (effects (font (size 1.27 1.27)))) 658 | ) 659 | (pin input line (at 20.32 -27.94 180) (length 2.54) 660 | (name "IO35" (effects (font (size 1.27 1.27)))) 661 | (number "11" (effects (font (size 1.27 1.27)))) 662 | ) 663 | (pin bidirectional line (at 20.32 -20.32 180) (length 2.54) 664 | (name "IO32" (effects (font (size 1.27 1.27)))) 665 | (number "12" (effects (font (size 1.27 1.27)))) 666 | ) 667 | (pin bidirectional line (at 20.32 -22.86 180) (length 2.54) 668 | (name "IO33" (effects (font (size 1.27 1.27)))) 669 | (number "13" (effects (font (size 1.27 1.27)))) 670 | ) 671 | (pin bidirectional line (at 20.32 -12.7 180) (length 2.54) 672 | (name "IO25" (effects (font (size 1.27 1.27)))) 673 | (number "14" (effects (font (size 1.27 1.27)))) 674 | ) 675 | (pin bidirectional line (at 20.32 -15.24 180) (length 2.54) 676 | (name "IO26" (effects (font (size 1.27 1.27)))) 677 | (number "15" (effects (font (size 1.27 1.27)))) 678 | ) 679 | (pin bidirectional line (at 20.32 -17.78 180) (length 2.54) 680 | (name "IO27" (effects (font (size 1.27 1.27)))) 681 | (number "16" (effects (font (size 1.27 1.27)))) 682 | ) 683 | (pin bidirectional line (at 20.32 5.08 180) (length 2.54) 684 | (name "IO14" (effects (font (size 1.27 1.27)))) 685 | (number "17" (effects (font (size 1.27 1.27)))) 686 | ) 687 | (pin bidirectional line (at 20.32 10.16 180) (length 2.54) 688 | (name "IO12" (effects (font (size 1.27 1.27)))) 689 | (number "18" (effects (font (size 1.27 1.27)))) 690 | ) 691 | (pin power_in line (at 0 40.64 270) (length 2.54) 692 | (name "VDD3P3_RTC" (effects (font (size 1.27 1.27)))) 693 | (number "19" (effects (font (size 1.27 1.27)))) 694 | ) 695 | (pin bidirectional line (at 20.32 35.56 180) (length 2.54) 696 | (name "LNA_IN" (effects (font (size 1.27 1.27)))) 697 | (number "2" (effects (font (size 1.27 1.27)))) 698 | ) 699 | (pin bidirectional line (at 20.32 7.62 180) (length 2.54) 700 | (name "IO13" (effects (font (size 1.27 1.27)))) 701 | (number "20" (effects (font (size 1.27 1.27)))) 702 | ) 703 | (pin bidirectional line (at 20.32 2.54 180) (length 2.54) 704 | (name "IO15" (effects (font (size 1.27 1.27)))) 705 | (number "21" (effects (font (size 1.27 1.27)))) 706 | ) 707 | (pin bidirectional line (at 20.32 25.4 180) (length 2.54) 708 | (name "IO2" (effects (font (size 1.27 1.27)))) 709 | (number "22" (effects (font (size 1.27 1.27)))) 710 | ) 711 | (pin bidirectional line (at 20.32 30.48 180) (length 2.54) 712 | (name "IO0" (effects (font (size 1.27 1.27)))) 713 | (number "23" (effects (font (size 1.27 1.27)))) 714 | ) 715 | (pin bidirectional line (at 20.32 20.32 180) (length 2.54) 716 | (name "IO4" (effects (font (size 1.27 1.27)))) 717 | (number "24" (effects (font (size 1.27 1.27)))) 718 | ) 719 | (pin bidirectional line (at -20.32 0 0) (length 2.54) 720 | (name "IO16" (effects (font (size 1.27 1.27)))) 721 | (number "25" (effects (font (size 1.27 1.27)))) 722 | ) 723 | (pin power_out line (at 20.32 -33.02 180) (length 2.54) 724 | (name "VDD_SDIO" (effects (font (size 1.27 1.27)))) 725 | (number "26" (effects (font (size 1.27 1.27)))) 726 | ) 727 | (pin bidirectional line (at -20.32 -2.54 0) (length 2.54) 728 | (name "IO17" (effects (font (size 1.27 1.27)))) 729 | (number "27" (effects (font (size 1.27 1.27)))) 730 | ) 731 | (pin bidirectional line (at 20.32 15.24 180) (length 2.54) 732 | (name "SD2/IO9" (effects (font (size 1.27 1.27)))) 733 | (number "28" (effects (font (size 1.27 1.27)))) 734 | ) 735 | (pin bidirectional line (at 20.32 12.7 180) (length 2.54) 736 | (name "SD3/IO10" (effects (font (size 1.27 1.27)))) 737 | (number "29" (effects (font (size 1.27 1.27)))) 738 | ) 739 | (pin power_in line (at -2.54 40.64 270) (length 2.54) 740 | (name "VDDA3P3" (effects (font (size 1.27 1.27)))) 741 | (number "3" (effects (font (size 1.27 1.27)))) 742 | ) 743 | (pin bidirectional line (at -20.32 -12.7 0) (length 2.54) 744 | (name "CMD" (effects (font (size 1.27 1.27)))) 745 | (number "30" (effects (font (size 1.27 1.27)))) 746 | ) 747 | (pin bidirectional line (at -20.32 -10.16 0) (length 2.54) 748 | (name "CLK" (effects (font (size 1.27 1.27)))) 749 | (number "31" (effects (font (size 1.27 1.27)))) 750 | ) 751 | (pin bidirectional line (at -20.32 -5.08 0) (length 2.54) 752 | (name "SD0" (effects (font (size 1.27 1.27)))) 753 | (number "32" (effects (font (size 1.27 1.27)))) 754 | ) 755 | (pin bidirectional line (at -20.32 -7.62 0) (length 2.54) 756 | (name "SD1" (effects (font (size 1.27 1.27)))) 757 | (number "33" (effects (font (size 1.27 1.27)))) 758 | ) 759 | (pin bidirectional line (at 20.32 17.78 180) (length 2.54) 760 | (name "IO5" (effects (font (size 1.27 1.27)))) 761 | (number "34" (effects (font (size 1.27 1.27)))) 762 | ) 763 | (pin bidirectional line (at 20.32 0 180) (length 2.54) 764 | (name "IO18" (effects (font (size 1.27 1.27)))) 765 | (number "35" (effects (font (size 1.27 1.27)))) 766 | ) 767 | (pin bidirectional line (at 20.32 -10.16 180) (length 2.54) 768 | (name "IO23" (effects (font (size 1.27 1.27)))) 769 | (number "36" (effects (font (size 1.27 1.27)))) 770 | ) 771 | (pin power_in line (at 2.54 40.64 270) (length 2.54) 772 | (name "VDD3P3_CPU" (effects (font (size 1.27 1.27)))) 773 | (number "37" (effects (font (size 1.27 1.27)))) 774 | ) 775 | (pin bidirectional line (at 20.32 -2.54 180) (length 2.54) 776 | (name "IO19" (effects (font (size 1.27 1.27)))) 777 | (number "38" (effects (font (size 1.27 1.27)))) 778 | ) 779 | (pin bidirectional line (at 20.32 -7.62 180) (length 2.54) 780 | (name "IO22" (effects (font (size 1.27 1.27)))) 781 | (number "39" (effects (font (size 1.27 1.27)))) 782 | ) 783 | (pin passive line (at -2.54 40.64 270) (length 2.54) hide 784 | (name "VDDA3P3" (effects (font (size 1.27 1.27)))) 785 | (number "4" (effects (font (size 1.27 1.27)))) 786 | ) 787 | (pin bidirectional line (at 20.32 22.86 180) (length 2.54) 788 | (name "U0RXD/IO3" (effects (font (size 1.27 1.27)))) 789 | (number "40" (effects (font (size 1.27 1.27)))) 790 | ) 791 | (pin bidirectional line (at 20.32 27.94 180) (length 2.54) 792 | (name "U0TXD/IO1" (effects (font (size 1.27 1.27)))) 793 | (number "41" (effects (font (size 1.27 1.27)))) 794 | ) 795 | (pin bidirectional line (at 20.32 -5.08 180) (length 2.54) 796 | (name "IO21" (effects (font (size 1.27 1.27)))) 797 | (number "42" (effects (font (size 1.27 1.27)))) 798 | ) 799 | (pin passive line (at -5.08 40.64 270) (length 2.54) hide 800 | (name "VDDA" (effects (font (size 1.27 1.27)))) 801 | (number "43" (effects (font (size 1.27 1.27)))) 802 | ) 803 | (pin no_connect line (at -17.78 -25.4 0) (length 2.54) hide 804 | (name "XTAL_N_NC" (effects (font (size 1.27 1.27)))) 805 | (number "44" (effects (font (size 1.27 1.27)))) 806 | ) 807 | (pin no_connect line (at -17.78 -27.94 0) (length 2.54) hide 808 | (name "XTAL_P_NC" (effects (font (size 1.27 1.27)))) 809 | (number "45" (effects (font (size 1.27 1.27)))) 810 | ) 811 | (pin passive line (at -5.08 40.64 270) (length 2.54) hide 812 | (name "VDDA" (effects (font (size 1.27 1.27)))) 813 | (number "46" (effects (font (size 1.27 1.27)))) 814 | ) 815 | (pin no_connect line (at -17.78 -30.48 0) (length 2.54) hide 816 | (name "CAP2_NC" (effects (font (size 1.27 1.27)))) 817 | (number "47" (effects (font (size 1.27 1.27)))) 818 | ) 819 | (pin no_connect line (at -17.78 -33.02 0) (length 2.54) hide 820 | (name "CAP1_NC" (effects (font (size 1.27 1.27)))) 821 | (number "48" (effects (font (size 1.27 1.27)))) 822 | ) 823 | (pin power_in line (at 0 -40.64 90) (length 2.54) 824 | (name "GND" (effects (font (size 1.27 1.27)))) 825 | (number "49" (effects (font (size 1.27 1.27)))) 826 | ) 827 | (pin input line (at -20.32 30.48 0) (length 2.54) 828 | (name "SENSOR_VP" (effects (font (size 1.27 1.27)))) 829 | (number "5" (effects (font (size 1.27 1.27)))) 830 | ) 831 | (pin input line (at -20.32 27.94 0) (length 2.54) 832 | (name "SENSOR_CAPP" (effects (font (size 1.27 1.27)))) 833 | (number "6" (effects (font (size 1.27 1.27)))) 834 | ) 835 | (pin input line (at -20.32 25.4 0) (length 2.54) 836 | (name "SENSOR_CAPN" (effects (font (size 1.27 1.27)))) 837 | (number "7" (effects (font (size 1.27 1.27)))) 838 | ) 839 | (pin input line (at -20.32 22.86 0) (length 2.54) 840 | (name "SENSOR_VN" (effects (font (size 1.27 1.27)))) 841 | (number "8" (effects (font (size 1.27 1.27)))) 842 | ) 843 | (pin input line (at -20.32 35.56 0) (length 2.54) 844 | (name "EN" (effects (font (size 1.27 1.27)))) 845 | (number "9" (effects (font (size 1.27 1.27)))) 846 | ) 847 | ) 848 | (symbol "ESP32-PICO-D4_0_1" 849 | (rectangle (start -17.78 38.1) (end 17.78 -38.1) 850 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 851 | (fill (type background)) 852 | ) 853 | ) 854 | ) 855 | (symbol "Regulator_Linear:TC2014-3.3VxCTTR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 856 | (property "Reference" "U" (id 0) (at -6.35 5.715 0) 857 | (effects (font (size 1.27 1.27))) 858 | ) 859 | (property "Value" "TC2014-3.3VxCTTR" (id 1) (at 0 5.715 0) 860 | (effects (font (size 1.27 1.27)) (justify left)) 861 | ) 862 | (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 8.255 0) 863 | (effects (font (size 1.27 1.27)) hide) 864 | ) 865 | (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21662F.pdf" (id 3) (at 0 0 0) 866 | (effects (font (size 1.27 1.27)) hide) 867 | ) 868 | (property "ki_keywords" "low dropout 3.3V 50mA" (id 4) (at 0 0 0) 869 | (effects (font (size 1.27 1.27)) hide) 870 | ) 871 | (property "ki_description" "3.3V 50mA CMOS LDO with Shutdown and Vref Bypass, SOT-23-5" (id 5) (at 0 0 0) 872 | (effects (font (size 1.27 1.27)) hide) 873 | ) 874 | (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) 875 | (effects (font (size 1.27 1.27)) hide) 876 | ) 877 | (symbol "TC2014-3.3VxCTTR_0_1" 878 | (rectangle (start -7.62 -5.08) (end 7.62 4.445) 879 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 880 | (fill (type background)) 881 | ) 882 | ) 883 | (symbol "TC2014-3.3VxCTTR_1_1" 884 | (pin power_in line (at -10.16 2.54 0) (length 2.54) 885 | (name "VIN" (effects (font (size 1.27 1.27)))) 886 | (number "1" (effects (font (size 1.27 1.27)))) 887 | ) 888 | (pin power_in line (at 0 -7.62 90) (length 2.54) 889 | (name "GND" (effects (font (size 1.27 1.27)))) 890 | (number "2" (effects (font (size 1.27 1.27)))) 891 | ) 892 | (pin input line (at -10.16 0 0) (length 2.54) 893 | (name "ON/~{OFF}" (effects (font (size 1.27 1.27)))) 894 | (number "3" (effects (font (size 1.27 1.27)))) 895 | ) 896 | (pin input line (at 10.16 0 180) (length 2.54) 897 | (name "BP" (effects (font (size 1.27 1.27)))) 898 | (number "4" (effects (font (size 1.27 1.27)))) 899 | ) 900 | (pin power_out line (at 10.16 2.54 180) (length 2.54) 901 | (name "VOUT" (effects (font (size 1.27 1.27)))) 902 | (number "5" (effects (font (size 1.27 1.27)))) 903 | ) 904 | ) 905 | ) 906 | (symbol "ic:2450FM07D0034T" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 907 | (property "Reference" "FL" (id 0) (at 0 15.494 0) 908 | (effects (font (size 1.27 1.27))) 909 | ) 910 | (property "Value" "2450FM07D0034T" (id 1) (at 0 20.574 0) 911 | (effects (font (size 1.27 1.27))) 912 | ) 913 | (property "Footprint" "ic_footprint:FILTER-SMD_4P-L1.0-W0.5-L" (id 2) (at -13.97 21.59 0) 914 | (effects (font (size 1.27 1.27)) hide) 915 | ) 916 | (property "Datasheet" "" (id 3) (at 0 5.334 0) 917 | (effects (font (size 1.27 1.27)) hide) 918 | ) 919 | (property "SuppliersPartNumber" "C2651081" (id 4) (at 0 0.254 0) 920 | (effects (font (size 1.27 1.27)) hide) 921 | ) 922 | (property "uuid" "std:e2e477ab668d4cbb88af09cfe34b9ff4" (id 5) (at 0 11.43 0) 923 | (effects (font (size 1.27 1.27)) hide) 924 | ) 925 | (symbol "2450FM07D0034T_1_1" 926 | (rectangle (start -7.62 7.62) (end 7.62 -7.62) 927 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 928 | (fill (type none)) 929 | ) 930 | (pin input line (at -12.7 0 0) (length 5.08) 931 | (name "IN" (effects (font (size 1.27 1.27)))) 932 | (number "1" (effects (font (size 1.27 1.27)))) 933 | ) 934 | (pin input line (at 0 -12.7 90) (length 5.08) 935 | (name "GND" (effects (font (size 1.27 1.27)))) 936 | (number "2" (effects (font (size 1.27 1.27)))) 937 | ) 938 | (pin input line (at 12.7 0 180) (length 5.08) 939 | (name "OUT" (effects (font (size 1.27 1.27)))) 940 | (number "3" (effects (font (size 1.27 1.27)))) 941 | ) 942 | (pin input line (at 0 12.7 270) (length 5.08) 943 | (name "GND" (effects (font (size 1.27 1.27)))) 944 | (number "4" (effects (font (size 1.27 1.27)))) 945 | ) 946 | ) 947 | ) 948 | (symbol "ic:SX1280IMLTRT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 949 | (property "Reference" "U" (id 0) (at 0 20.447 0) 950 | (effects (font (size 1.27 1.27))) 951 | ) 952 | (property "Value" "SX1280IMLTRT" (id 1) (at 0 24.13 0) 953 | (effects (font (size 1.27 1.27))) 954 | ) 955 | (property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm" (id 2) (at 1.27 22.86 0) 956 | (effects (font (size 1.27 1.27)) hide) 957 | ) 958 | (property "Datasheet" "http://www.szlcsc.com/product/details_137249.html" (id 3) (at 2.54 19.05 0) 959 | (effects (font (size 1.27 1.27)) hide) 960 | ) 961 | (property "SuppliersPartNumber" "C125969" (id 4) (at 0 5.207 0) 962 | (effects (font (size 1.27 1.27)) hide) 963 | ) 964 | (property "uuid" "std:6c56964dcc7b4bbb8a3ac984926bf97a" (id 5) (at 1.27 27.94 0) 965 | (effects (font (size 1.27 1.27)) hide) 966 | ) 967 | (symbol "SX1280IMLTRT_1_1" 968 | (rectangle (start -15.24 17.78) (end 15.24 -17.78) 969 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 970 | (fill (type none)) 971 | ) 972 | (circle (center -13.97 16.51) (radius 0.381) 973 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 974 | (fill (type outline)) 975 | ) 976 | (pin input line (at -17.78 12.7 0) (length 2.54) 977 | (name "VR_PA" (effects (font (size 1.27 1.27)))) 978 | (number "1" (effects (font (size 1.27 1.27)))) 979 | ) 980 | (pin input line (at -17.78 -10.16 0) (length 2.54) 981 | (name "DIO3" (effects (font (size 1.27 1.27)))) 982 | (number "10" (effects (font (size 1.27 1.27)))) 983 | ) 984 | (pin input line (at -17.78 -12.7 0) (length 2.54) 985 | (name "VBAT_IO" (effects (font (size 1.27 1.27)))) 986 | (number "11" (effects (font (size 1.27 1.27)))) 987 | ) 988 | (pin input line (at -17.78 -15.24 0) (length 2.54) 989 | (name "DCC_FB" (effects (font (size 1.27 1.27)))) 990 | (number "12" (effects (font (size 1.27 1.27)))) 991 | ) 992 | (pin input line (at 17.78 -15.24 180) (length 2.54) 993 | (name "GND" (effects (font (size 1.27 1.27)))) 994 | (number "13" (effects (font (size 1.27 1.27)))) 995 | ) 996 | (pin input line (at 17.78 -12.7 180) (length 2.54) 997 | (name "DCC_SW" (effects (font (size 1.27 1.27)))) 998 | (number "14" (effects (font (size 1.27 1.27)))) 999 | ) 1000 | (pin input line (at 17.78 -10.16 180) (length 2.54) 1001 | (name "VBAT" (effects (font (size 1.27 1.27)))) 1002 | (number "15" (effects (font (size 1.27 1.27)))) 1003 | ) 1004 | (pin input line (at 17.78 -7.62 180) (length 2.54) 1005 | (name "MISO_TX" (effects (font (size 1.27 1.27)))) 1006 | (number "16" (effects (font (size 1.27 1.27)))) 1007 | ) 1008 | (pin input line (at 17.78 -5.08 180) (length 2.54) 1009 | (name "MOSI_RX" (effects (font (size 1.27 1.27)))) 1010 | (number "17" (effects (font (size 1.27 1.27)))) 1011 | ) 1012 | (pin input line (at 17.78 -2.54 180) (length 2.54) 1013 | (name "SCK_RTSN" (effects (font (size 1.27 1.27)))) 1014 | (number "18" (effects (font (size 1.27 1.27)))) 1015 | ) 1016 | (pin input line (at 17.78 0 180) (length 2.54) 1017 | (name "NSS_CTS" (effects (font (size 1.27 1.27)))) 1018 | (number "19" (effects (font (size 1.27 1.27)))) 1019 | ) 1020 | (pin input line (at -17.78 10.16 0) (length 2.54) 1021 | (name "VDD_IN" (effects (font (size 1.27 1.27)))) 1022 | (number "2" (effects (font (size 1.27 1.27)))) 1023 | ) 1024 | (pin input line (at 17.78 2.54 180) (length 2.54) 1025 | (name "GND" (effects (font (size 1.27 1.27)))) 1026 | (number "20" (effects (font (size 1.27 1.27)))) 1027 | ) 1028 | (pin input line (at 17.78 5.08 180) (length 2.54) 1029 | (name "GND" (effects (font (size 1.27 1.27)))) 1030 | (number "21" (effects (font (size 1.27 1.27)))) 1031 | ) 1032 | (pin input line (at 17.78 7.62 180) (length 2.54) 1033 | (name "RFIO" (effects (font (size 1.27 1.27)))) 1034 | (number "22" (effects (font (size 1.27 1.27)))) 1035 | ) 1036 | (pin input line (at 17.78 10.16 180) (length 2.54) 1037 | (name "GND" (effects (font (size 1.27 1.27)))) 1038 | (number "23" (effects (font (size 1.27 1.27)))) 1039 | ) 1040 | (pin input line (at 17.78 12.7 180) (length 2.54) 1041 | (name "GND" (effects (font (size 1.27 1.27)))) 1042 | (number "24" (effects (font (size 1.27 1.27)))) 1043 | ) 1044 | (pin input line (at 17.78 15.24 180) (length 2.54) 1045 | (name "GND" (effects (font (size 1.27 1.27)))) 1046 | (number "25" (effects (font (size 1.27 1.27)))) 1047 | ) 1048 | (pin input line (at -17.78 7.62 0) (length 2.54) 1049 | (name "NRESET" (effects (font (size 1.27 1.27)))) 1050 | (number "3" (effects (font (size 1.27 1.27)))) 1051 | ) 1052 | (pin input line (at -17.78 5.08 0) (length 2.54) 1053 | (name "XTA" (effects (font (size 1.27 1.27)))) 1054 | (number "4" (effects (font (size 1.27 1.27)))) 1055 | ) 1056 | (pin input line (at -17.78 2.54 0) (length 2.54) 1057 | (name "GND" (effects (font (size 1.27 1.27)))) 1058 | (number "5" (effects (font (size 1.27 1.27)))) 1059 | ) 1060 | (pin input line (at -17.78 0 0) (length 2.54) 1061 | (name "XTB" (effects (font (size 1.27 1.27)))) 1062 | (number "6" (effects (font (size 1.27 1.27)))) 1063 | ) 1064 | (pin input line (at -17.78 -2.54 0) (length 2.54) 1065 | (name "BUSY" (effects (font (size 1.27 1.27)))) 1066 | (number "7" (effects (font (size 1.27 1.27)))) 1067 | ) 1068 | (pin input line (at -17.78 -5.08 0) (length 2.54) 1069 | (name "DIO1" (effects (font (size 1.27 1.27)))) 1070 | (number "8" (effects (font (size 1.27 1.27)))) 1071 | ) 1072 | (pin input line (at -17.78 -7.62 0) (length 2.54) 1073 | (name "DIO2" (effects (font (size 1.27 1.27)))) 1074 | (number "9" (effects (font (size 1.27 1.27)))) 1075 | ) 1076 | ) 1077 | ) 1078 | (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1079 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 1080 | (effects (font (size 1.27 1.27)) hide) 1081 | ) 1082 | (property "Value" "+3.3V" (id 1) (at 0 3.556 0) 1083 | (effects (font (size 1.27 1.27))) 1084 | ) 1085 | (property "Footprint" "" (id 2) (at 0 0 0) 1086 | (effects (font (size 1.27 1.27)) hide) 1087 | ) 1088 | (property "Datasheet" "" (id 3) (at 0 0 0) 1089 | (effects (font (size 1.27 1.27)) hide) 1090 | ) 1091 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1092 | (effects (font (size 1.27 1.27)) hide) 1093 | ) 1094 | (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) 1095 | (effects (font (size 1.27 1.27)) hide) 1096 | ) 1097 | (symbol "+3.3V_0_1" 1098 | (polyline 1099 | (pts 1100 | (xy -0.762 1.27) 1101 | (xy 0 2.54) 1102 | ) 1103 | (stroke (width 0) (type default) (color 0 0 0 0)) 1104 | (fill (type none)) 1105 | ) 1106 | (polyline 1107 | (pts 1108 | (xy 0 0) 1109 | (xy 0 2.54) 1110 | ) 1111 | (stroke (width 0) (type default) (color 0 0 0 0)) 1112 | (fill (type none)) 1113 | ) 1114 | (polyline 1115 | (pts 1116 | (xy 0 2.54) 1117 | (xy 0.762 1.27) 1118 | ) 1119 | (stroke (width 0) (type default) (color 0 0 0 0)) 1120 | (fill (type none)) 1121 | ) 1122 | ) 1123 | (symbol "+3.3V_1_1" 1124 | (pin power_in line (at 0 0 90) (length 0) hide 1125 | (name "+3V3" (effects (font (size 1.27 1.27)))) 1126 | (number "1" (effects (font (size 1.27 1.27)))) 1127 | ) 1128 | ) 1129 | ) 1130 | (symbol "power:+BATT" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1131 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 1132 | (effects (font (size 1.27 1.27)) hide) 1133 | ) 1134 | (property "Value" "+BATT" (id 1) (at 0 3.556 0) 1135 | (effects (font (size 1.27 1.27))) 1136 | ) 1137 | (property "Footprint" "" (id 2) (at 0 0 0) 1138 | (effects (font (size 1.27 1.27)) hide) 1139 | ) 1140 | (property "Datasheet" "" (id 3) (at 0 0 0) 1141 | (effects (font (size 1.27 1.27)) hide) 1142 | ) 1143 | (property "ki_keywords" "power-flag battery" (id 4) (at 0 0 0) 1144 | (effects (font (size 1.27 1.27)) hide) 1145 | ) 1146 | (property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (id 5) (at 0 0 0) 1147 | (effects (font (size 1.27 1.27)) hide) 1148 | ) 1149 | (symbol "+BATT_0_1" 1150 | (polyline 1151 | (pts 1152 | (xy -0.762 1.27) 1153 | (xy 0 2.54) 1154 | ) 1155 | (stroke (width 0) (type default) (color 0 0 0 0)) 1156 | (fill (type none)) 1157 | ) 1158 | (polyline 1159 | (pts 1160 | (xy 0 0) 1161 | (xy 0 2.54) 1162 | ) 1163 | (stroke (width 0) (type default) (color 0 0 0 0)) 1164 | (fill (type none)) 1165 | ) 1166 | (polyline 1167 | (pts 1168 | (xy 0 2.54) 1169 | (xy 0.762 1.27) 1170 | ) 1171 | (stroke (width 0) (type default) (color 0 0 0 0)) 1172 | (fill (type none)) 1173 | ) 1174 | ) 1175 | (symbol "+BATT_1_1" 1176 | (pin power_in line (at 0 0 90) (length 0) hide 1177 | (name "+BATT" (effects (font (size 1.27 1.27)))) 1178 | (number "1" (effects (font (size 1.27 1.27)))) 1179 | ) 1180 | ) 1181 | ) 1182 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1183 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 1184 | (effects (font (size 1.27 1.27)) hide) 1185 | ) 1186 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 1187 | (effects (font (size 1.27 1.27))) 1188 | ) 1189 | (property "Footprint" "" (id 2) (at 0 0 0) 1190 | (effects (font (size 1.27 1.27)) hide) 1191 | ) 1192 | (property "Datasheet" "" (id 3) (at 0 0 0) 1193 | (effects (font (size 1.27 1.27)) hide) 1194 | ) 1195 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1196 | (effects (font (size 1.27 1.27)) hide) 1197 | ) 1198 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 1199 | (effects (font (size 1.27 1.27)) hide) 1200 | ) 1201 | (symbol "GND_0_1" 1202 | (polyline 1203 | (pts 1204 | (xy 0 0) 1205 | (xy 0 -1.27) 1206 | (xy 1.27 -1.27) 1207 | (xy 0 -2.54) 1208 | (xy -1.27 -1.27) 1209 | (xy 0 -1.27) 1210 | ) 1211 | (stroke (width 0) (type default) (color 0 0 0 0)) 1212 | (fill (type none)) 1213 | ) 1214 | ) 1215 | (symbol "GND_1_1" 1216 | (pin power_in line (at 0 0 270) (length 0) hide 1217 | (name "GND" (effects (font (size 1.27 1.27)))) 1218 | (number "1" (effects (font (size 1.27 1.27)))) 1219 | ) 1220 | ) 1221 | ) 1222 | ) 1223 | 1224 | (junction (at 238.125 85.09) (diameter 0) (color 0 0 0 0) 1225 | (uuid 04bbfad9-8db1-4f86-aa63-77e42785ee71) 1226 | ) 1227 | (junction (at 170.815 50.8) (diameter 0) (color 0 0 0 0) 1228 | (uuid 193dafdd-13f7-47b1-a773-6698566b4bc5) 1229 | ) 1230 | (junction (at 238.125 92.71) (diameter 0) (color 0 0 0 0) 1231 | (uuid 4144b48c-c32b-489b-aef3-6ce75b891bb4) 1232 | ) 1233 | (junction (at 68.58 49.53) (diameter 0) (color 0 0 0 0) 1234 | (uuid 41694ddf-f560-494c-b4e6-60e643e11b39) 1235 | ) 1236 | (junction (at 130.81 114.3) (diameter 0) (color 0 0 0 0) 1237 | (uuid 4a567bc5-20ef-4065-9905-f7455362ca03) 1238 | ) 1239 | (junction (at 46.99 177.165) (diameter 0) (color 0 0 0 0) 1240 | (uuid 5f0074f6-be9c-4044-ae93-510b7e83ae27) 1241 | ) 1242 | (junction (at 189.23 97.79) (diameter 0) (color 0 0 0 0) 1243 | (uuid 68b9a9e9-3e25-49c1-a1db-525b457b8274) 1244 | ) 1245 | (junction (at 229.87 62.23) (diameter 0) (color 0 0 0 0) 1246 | (uuid 6ace8859-37d8-4cac-8f4c-2875c6eddfbe) 1247 | ) 1248 | (junction (at 229.87 69.85) (diameter 0) (color 0 0 0 0) 1249 | (uuid 6dfbdf83-6c1c-4ba6-a2ba-88f7d36efcb1) 1250 | ) 1251 | (junction (at 45.085 54.61) (diameter 0) (color 0 0 0 0) 1252 | (uuid 718c97b7-3ddf-40b2-a801-ffd03819cf2f) 1253 | ) 1254 | (junction (at 158.115 124.46) (diameter 0) (color 0 0 0 0) 1255 | (uuid 72ccf9c1-d4fe-4bf2-b247-c6ee06f4c451) 1256 | ) 1257 | (junction (at 90.805 178.435) (diameter 0) (color 0 0 0 0) 1258 | (uuid 74abe8f7-87ff-4266-a659-ff6fe26be82c) 1259 | ) 1260 | (junction (at 189.23 90.17) (diameter 0) (color 0 0 0 0) 1261 | (uuid 80826803-6f46-4861-bf58-63b21487b0a0) 1262 | ) 1263 | (junction (at 163.195 114.3) (diameter 0) (color 0 0 0 0) 1264 | (uuid 87740968-8592-4100-a661-0d4887a0ed91) 1265 | ) 1266 | (junction (at 144.78 124.46) (diameter 0) (color 0 0 0 0) 1267 | (uuid 913fd7b0-9a68-4c4e-bd7e-eb9a0f31b37c) 1268 | ) 1269 | (junction (at 83.185 170.815) (diameter 0) (color 0 0 0 0) 1270 | (uuid 92c91f0f-585e-4503-8a02-eec8868f2ce6) 1271 | ) 1272 | (junction (at 71.12 49.53) (diameter 0) (color 0 0 0 0) 1273 | (uuid a3149699-8a34-42d1-ac77-5fe843d39d26) 1274 | ) 1275 | (junction (at 130.81 116.84) (diameter 0) (color 0 0 0 0) 1276 | (uuid aef24aee-ab93-44ea-9ba0-4fb33ac32ce2) 1277 | ) 1278 | (junction (at 229.87 59.69) (diameter 0) (color 0 0 0 0) 1279 | (uuid b454409a-845f-4680-9bf1-603026d83c45) 1280 | ) 1281 | (junction (at 180.975 87.63) (diameter 0) (color 0 0 0 0) 1282 | (uuid bfa301dc-5932-4903-af65-92fdf184a24c) 1283 | ) 1284 | (junction (at 39.37 169.545) (diameter 0) (color 0 0 0 0) 1285 | (uuid c03fd3ce-e8b7-4565-ad1e-cc686acdf2c3) 1286 | ) 1287 | (junction (at 73.66 49.53) (diameter 0) (color 0 0 0 0) 1288 | (uuid d56158c1-f907-417e-b588-1acac96b808e) 1289 | ) 1290 | (junction (at 189.865 72.39) (diameter 0) (color 0 0 0 0) 1291 | (uuid eb90b0ac-9bd2-459f-b745-b92ad2a10d5e) 1292 | ) 1293 | 1294 | (no_connect (at 194.31 82.55) (uuid 550e974f-5e6d-4d5d-9fc0-da46fda66c34)) 1295 | (no_connect (at 194.31 85.09) (uuid 550e974f-5e6d-4d5d-9fc0-da46fda66c35)) 1296 | (no_connect (at 229.87 87.63) (uuid 5fd11c7a-70de-4d89-9bba-d402f4c31b86)) 1297 | 1298 | (wire (pts (xy 71.12 49.53) (xy 73.66 49.53)) 1299 | (stroke (width 0) (type default) (color 0 0 0 0)) 1300 | (uuid 01b91fbd-fad9-489b-a154-50b09eeed1d3) 1301 | ) 1302 | (wire (pts (xy 184.785 69.85) (xy 194.31 69.85)) 1303 | (stroke (width 0) (type default) (color 0 0 0 0)) 1304 | (uuid 033cb8a0-f785-4a7a-9124-745e0c035c18) 1305 | ) 1306 | (wire (pts (xy 187.325 80.01) (xy 194.31 80.01)) 1307 | (stroke (width 0) (type default) (color 0 0 0 0)) 1308 | (uuid 04771271-3fdc-4746-8aa1-74f1c513ced4) 1309 | ) 1310 | (wire (pts (xy 144.78 124.46) (xy 158.115 124.46)) 1311 | (stroke (width 0) (type default) (color 0 0 0 0)) 1312 | (uuid 11f11dfe-245c-463c-9056-8e8d95e93099) 1313 | ) 1314 | (wire (pts (xy 46.99 161.925) (xy 46.99 164.465)) 1315 | (stroke (width 0) (type default) (color 0 0 0 0)) 1316 | (uuid 1425a268-1e90-4af4-b52f-7b427b32e941) 1317 | ) 1318 | (wire (pts (xy 170.815 50.8) (xy 163.195 50.8)) 1319 | (stroke (width 0) (type default) (color 0 0 0 0)) 1320 | (uuid 1b077851-74ad-4917-981d-aa7b61649737) 1321 | ) 1322 | (wire (pts (xy 73.66 49.53) (xy 76.2 49.53)) 1323 | (stroke (width 0) (type default) (color 0 0 0 0)) 1324 | (uuid 1d18f2cf-c501-453c-9948-aaa772872acf) 1325 | ) 1326 | (wire (pts (xy 46.99 177.165) (xy 46.99 174.625)) 1327 | (stroke (width 0) (type default) (color 0 0 0 0)) 1328 | (uuid 1e2ddfbe-7a53-433c-a0c2-2908cefd871a) 1329 | ) 1330 | (wire (pts (xy 242.57 95.885) (xy 238.125 95.885)) 1331 | (stroke (width 0) (type default) (color 0 0 0 0)) 1332 | (uuid 22cdc7e8-ef50-460d-8a81-8f69cf3b6a23) 1333 | ) 1334 | (wire (pts (xy 48.895 67.31) (xy 53.34 67.31)) 1335 | (stroke (width 0) (type default) (color 0 0 0 0)) 1336 | (uuid 250c3a8b-2db0-465a-8d7c-fedbf5dfd948) 1337 | ) 1338 | (wire (pts (xy 130.81 124.46) (xy 144.78 124.46)) 1339 | (stroke (width 0) (type default) (color 0 0 0 0)) 1340 | (uuid 2622bbb4-43f4-481f-9363-d1ff5d285b52) 1341 | ) 1342 | (wire (pts (xy 158.115 124.46) (xy 163.195 124.46)) 1343 | (stroke (width 0) (type default) (color 0 0 0 0)) 1344 | (uuid 277de8b9-d893-4b99-9f1d-0c64bcdcc128) 1345 | ) 1346 | (wire (pts (xy 106.045 85.09) (xy 93.98 85.09)) 1347 | (stroke (width 0) (type default) (color 0 0 0 0)) 1348 | (uuid 2bc20db9-86e7-4837-9487-3c8ab717eb70) 1349 | ) 1350 | (wire (pts (xy 48.895 59.69) (xy 53.34 59.69)) 1351 | (stroke (width 0) (type default) (color 0 0 0 0)) 1352 | (uuid 2d0ac8c2-3c79-4a95-8ed5-f5621aaf0f16) 1353 | ) 1354 | (wire (pts (xy 123.19 161.29) (xy 130.81 161.29)) 1355 | (stroke (width 0) (type default) (color 0 0 0 0)) 1356 | (uuid 2df8cdef-f93b-4d06-b4dc-2b5597558475) 1357 | ) 1358 | (wire (pts (xy 124.46 114.3) (xy 130.81 114.3)) 1359 | (stroke (width 0) (type default) (color 0 0 0 0)) 1360 | (uuid 2fce8e07-6006-423e-b11d-cdcaa7aa3667) 1361 | ) 1362 | (wire (pts (xy 83.185 178.435) (xy 90.805 178.435)) 1363 | (stroke (width 0) (type default) (color 0 0 0 0)) 1364 | (uuid 33998a38-296d-4ee2-a99d-bc0866b377b5) 1365 | ) 1366 | (wire (pts (xy 106.045 74.93) (xy 93.98 74.93)) 1367 | (stroke (width 0) (type default) (color 0 0 0 0)) 1368 | (uuid 33f5289f-26d6-4949-a0aa-9542f5066aa3) 1369 | ) 1370 | (wire (pts (xy 106.045 77.47) (xy 93.98 77.47)) 1371 | (stroke (width 0) (type default) (color 0 0 0 0)) 1372 | (uuid 3664ab53-b72a-43c6-b715-318ebbce5a79) 1373 | ) 1374 | (wire (pts (xy 238.125 92.71) (xy 229.87 92.71)) 1375 | (stroke (width 0) (type default) (color 0 0 0 0)) 1376 | (uuid 39bfd03e-22a9-4587-ae69-e722efc1bd03) 1377 | ) 1378 | (wire (pts (xy 76.2 170.815) (xy 83.185 170.815)) 1379 | (stroke (width 0) (type default) (color 0 0 0 0)) 1380 | (uuid 3ead03d7-7f7d-43ec-84ff-88a2ec11369b) 1381 | ) 1382 | (wire (pts (xy 156.21 158.75) (xy 163.83 158.75)) 1383 | (stroke (width 0) (type default) (color 0 0 0 0)) 1384 | (uuid 409b5adc-7f56-4f0b-84cb-62f04dd42f40) 1385 | ) 1386 | (wire (pts (xy 189.23 90.17) (xy 194.31 90.17)) 1387 | (stroke (width 0) (type default) (color 0 0 0 0)) 1388 | (uuid 45466bc8-0ddc-4ace-b70c-83e30724e674) 1389 | ) 1390 | (wire (pts (xy 163.195 114.3) (xy 154.94 114.3)) 1391 | (stroke (width 0) (type default) (color 0 0 0 0)) 1392 | (uuid 45e541f6-2714-47cd-844e-4b6a82eb3d32) 1393 | ) 1394 | (wire (pts (xy 163.195 114.3) (xy 163.195 116.84)) 1395 | (stroke (width 0) (type default) (color 0 0 0 0)) 1396 | (uuid 4bdbab4c-f0a4-4d86-af21-b70ea6ac778c) 1397 | ) 1398 | (wire (pts (xy 100.965 59.69) (xy 93.98 59.69)) 1399 | (stroke (width 0) (type default) (color 0 0 0 0)) 1400 | (uuid 5157e60e-cb54-483b-ae72-9d5b83076432) 1401 | ) 1402 | (wire (pts (xy 123.19 180.34) (xy 130.81 180.34)) 1403 | (stroke (width 0) (type default) (color 0 0 0 0)) 1404 | (uuid 52575706-a694-43cc-bf76-c9efc5ebc26a) 1405 | ) 1406 | (wire (pts (xy 111.76 59.69) (xy 108.585 59.69)) 1407 | (stroke (width 0) (type default) (color 0 0 0 0)) 1408 | (uuid 55b15ab9-d64d-416b-9692-3c0e464d19b8) 1409 | ) 1410 | (wire (pts (xy 184.785 74.93) (xy 194.31 74.93)) 1411 | (stroke (width 0) (type default) (color 0 0 0 0)) 1412 | (uuid 5993cabe-beaa-4522-af32-bcdd72e041ca) 1413 | ) 1414 | (wire (pts (xy 125.73 64.77) (xy 133.985 64.77)) 1415 | (stroke (width 0) (type default) (color 0 0 0 0)) 1416 | (uuid 5d966026-ec9d-46e1-b508-badec3af1053) 1417 | ) 1418 | (wire (pts (xy 208.28 147.955) (xy 212.725 147.955)) 1419 | (stroke (width 0) (type default) (color 0 0 0 0)) 1420 | (uuid 60558662-c1bf-4869-9509-c11fd11e5e87) 1421 | ) 1422 | (wire (pts (xy 229.87 62.23) (xy 229.87 64.77)) 1423 | (stroke (width 0) (type default) (color 0 0 0 0)) 1424 | (uuid 609e4d6e-4f3e-4b99-930c-0d95a0117ce1) 1425 | ) 1426 | (wire (pts (xy 236.22 67.31) (xy 229.87 67.31)) 1427 | (stroke (width 0) (type default) (color 0 0 0 0)) 1428 | (uuid 6f9f5b27-060f-4959-80cd-5031a971d7d0) 1429 | ) 1430 | (wire (pts (xy 189.23 99.06) (xy 189.23 97.79)) 1431 | (stroke (width 0) (type default) (color 0 0 0 0)) 1432 | (uuid 70ab0120-1415-4ca9-bfe4-d1e14c5590c3) 1433 | ) 1434 | (wire (pts (xy 194.31 62.23) (xy 194.31 50.8)) 1435 | (stroke (width 0) (type default) (color 0 0 0 0)) 1436 | (uuid 71730c2d-31ba-4954-97d3-72c94d84dbfe) 1437 | ) 1438 | (wire (pts (xy 106.045 87.63) (xy 93.98 87.63)) 1439 | (stroke (width 0) (type default) (color 0 0 0 0)) 1440 | (uuid 71787738-0e07-4419-98a3-39da162c022d) 1441 | ) 1442 | (wire (pts (xy 157.48 156.21) (xy 163.83 156.21)) 1443 | (stroke (width 0) (type default) (color 0 0 0 0)) 1444 | (uuid 73403fb4-1f2a-48eb-8ea5-4b042decb18f) 1445 | ) 1446 | (wire (pts (xy 32.385 169.545) (xy 39.37 169.545)) 1447 | (stroke (width 0) (type default) (color 0 0 0 0)) 1448 | (uuid 737ca733-df1f-4a35-9f2c-d3c439415c01) 1449 | ) 1450 | (wire (pts (xy 156.21 161.29) (xy 163.83 161.29)) 1451 | (stroke (width 0) (type default) (color 0 0 0 0)) 1452 | (uuid 75a1aba7-befb-4afe-a1f6-10c7e58aec3d) 1453 | ) 1454 | (wire (pts (xy 164.465 114.3) (xy 163.195 114.3)) 1455 | (stroke (width 0) (type default) (color 0 0 0 0)) 1456 | (uuid 7e09dbc0-5676-41a7-8427-5fccee01a5d4) 1457 | ) 1458 | (wire (pts (xy 208.28 145.415) (xy 212.725 145.415)) 1459 | (stroke (width 0) (type default) (color 0 0 0 0)) 1460 | (uuid 866379fd-02fd-4cbd-9131-527b6705c45c) 1461 | ) 1462 | (wire (pts (xy 180.975 97.79) (xy 189.23 97.79)) 1463 | (stroke (width 0) (type default) (color 0 0 0 0)) 1464 | (uuid 87e7054e-ccc5-4821-9ff6-a7d5b8f4f8eb) 1465 | ) 1466 | (wire (pts (xy 45.085 55.245) (xy 45.085 54.61)) 1467 | (stroke (width 0) (type default) (color 0 0 0 0)) 1468 | (uuid 8c6d8466-ca13-4f88-a8c4-345388bafeaa) 1469 | ) 1470 | (wire (pts (xy 238.125 95.885) (xy 238.125 92.71)) 1471 | (stroke (width 0) (type default) (color 0 0 0 0)) 1472 | (uuid 8df45736-cd20-48a6-981a-e382c688f481) 1473 | ) 1474 | (wire (pts (xy 194.31 50.8) (xy 184.785 50.8)) 1475 | (stroke (width 0) (type default) (color 0 0 0 0)) 1476 | (uuid 9027b38e-eef4-452e-b0e0-2c271235ac6b) 1477 | ) 1478 | (wire (pts (xy 83.185 158.115) (xy 90.805 158.115)) 1479 | (stroke (width 0) (type default) (color 0 0 0 0)) 1480 | (uuid 91284dbe-b1c5-4f76-a695-bd96e55dfcc7) 1481 | ) 1482 | (wire (pts (xy 114.3 82.55) (xy 93.98 82.55)) 1483 | (stroke (width 0) (type default) (color 0 0 0 0)) 1484 | (uuid 9290a840-27aa-4a48-9628-31e35369b6eb) 1485 | ) 1486 | (wire (pts (xy 229.87 69.85) (xy 229.87 72.39)) 1487 | (stroke (width 0) (type default) (color 0 0 0 0)) 1488 | (uuid 95b70e13-80c1-482a-a202-a84c649e1c63) 1489 | ) 1490 | (wire (pts (xy 189.865 72.39) (xy 194.31 72.39)) 1491 | (stroke (width 0) (type default) (color 0 0 0 0)) 1492 | (uuid 97a68abe-465a-4b01-a510-68cd77a20434) 1493 | ) 1494 | (wire (pts (xy 100.33 123.19) (xy 93.98 123.19)) 1495 | (stroke (width 0) (type default) (color 0 0 0 0)) 1496 | (uuid 9ed7e473-3b60-4ea4-8436-d188de2c5ca8) 1497 | ) 1498 | (wire (pts (xy 189.23 67.31) (xy 194.31 67.31)) 1499 | (stroke (width 0) (type default) (color 0 0 0 0)) 1500 | (uuid acc8e7bc-fc73-4d50-9fe6-7c30265e80e7) 1501 | ) 1502 | (wire (pts (xy 124.46 158.75) (xy 130.81 158.75)) 1503 | (stroke (width 0) (type default) (color 0 0 0 0)) 1504 | (uuid b1804046-b221-4e43-ba58-a469e10a15d8) 1505 | ) 1506 | (wire (pts (xy 229.87 59.69) (xy 229.87 62.23)) 1507 | (stroke (width 0) (type default) (color 0 0 0 0)) 1508 | (uuid b1b5ccd1-ad36-46e0-a6b2-cc9042099609) 1509 | ) 1510 | (wire (pts (xy 208.28 142.875) (xy 212.725 142.875)) 1511 | (stroke (width 0) (type default) (color 0 0 0 0)) 1512 | (uuid b2120a37-1aeb-413a-9d13-ed825d1103d9) 1513 | ) 1514 | (wire (pts (xy 187.325 72.39) (xy 189.865 72.39)) 1515 | (stroke (width 0) (type default) (color 0 0 0 0)) 1516 | (uuid b2c625b6-ed7a-4a50-9105-173b384188fa) 1517 | ) 1518 | (wire (pts (xy 233.68 59.69) (xy 229.87 59.69)) 1519 | (stroke (width 0) (type default) (color 0 0 0 0)) 1520 | (uuid b6ff9bb1-eb53-4ce8-a509-828439d4ad80) 1521 | ) 1522 | (wire (pts (xy 229.87 92.71) (xy 229.87 90.17)) 1523 | (stroke (width 0) (type default) (color 0 0 0 0)) 1524 | (uuid b7d55933-001a-4c1b-abfa-616128e9c8d1) 1525 | ) 1526 | (wire (pts (xy 187.325 77.47) (xy 194.31 77.47)) 1527 | (stroke (width 0) (type default) (color 0 0 0 0)) 1528 | (uuid b8c7dc9c-b78c-4921-8692-4923b5c799a3) 1529 | ) 1530 | (wire (pts (xy 76.2 160.655) (xy 90.805 160.655)) 1531 | (stroke (width 0) (type default) (color 0 0 0 0)) 1532 | (uuid b9fa4715-476d-4cd5-835c-f18f35d8bb0a) 1533 | ) 1534 | (wire (pts (xy 32.385 159.385) (xy 46.99 159.385)) 1535 | (stroke (width 0) (type default) (color 0 0 0 0)) 1536 | (uuid bbde6a95-53f8-496d-9d54-87cee2fac42e) 1537 | ) 1538 | (wire (pts (xy 178.435 50.8) (xy 170.815 50.8)) 1539 | (stroke (width 0) (type default) (color 0 0 0 0)) 1540 | (uuid bda9ac5d-ba63-4dbd-bde7-583b57fb4412) 1541 | ) 1542 | (wire (pts (xy 238.125 85.09) (xy 229.87 85.09)) 1543 | (stroke (width 0) (type default) (color 0 0 0 0)) 1544 | (uuid bdec8781-690e-4690-870e-388560e88ae4) 1545 | ) 1546 | (wire (pts (xy 68.58 42.545) (xy 68.58 49.53)) 1547 | (stroke (width 0) (type default) (color 0 0 0 0)) 1548 | (uuid c318a640-0807-4a5b-b264-1cf36de36874) 1549 | ) 1550 | (wire (pts (xy 178.435 64.77) (xy 194.31 64.77)) 1551 | (stroke (width 0) (type default) (color 0 0 0 0)) 1552 | (uuid c41729b6-2738-44b0-b55f-9a736527a805) 1553 | ) 1554 | (wire (pts (xy 239.395 85.09) (xy 238.125 85.09)) 1555 | (stroke (width 0) (type default) (color 0 0 0 0)) 1556 | (uuid c57c0c86-810d-4769-93cf-a79d0d2072b6) 1557 | ) 1558 | (wire (pts (xy 226.949 120.015) (xy 231.775 120.015)) 1559 | (stroke (width 0) (type default) (color 0 0 0 0)) 1560 | (uuid c654deb7-e712-4543-a8b2-6bf39c20f4f8) 1561 | ) 1562 | (wire (pts (xy 46.99 180.34) (xy 46.99 177.165)) 1563 | (stroke (width 0) (type default) (color 0 0 0 0)) 1564 | (uuid c68b2f18-a1f1-4147-83b9-85ce789f25d5) 1565 | ) 1566 | (wire (pts (xy 130.81 116.84) (xy 130.81 114.3)) 1567 | (stroke (width 0) (type default) (color 0 0 0 0)) 1568 | (uuid c7ebe7ef-c413-4f09-b996-a3fabecb0e19) 1569 | ) 1570 | (wire (pts (xy 68.58 49.53) (xy 71.12 49.53)) 1571 | (stroke (width 0) (type default) (color 0 0 0 0)) 1572 | (uuid ce1e4964-55b7-4346-8f60-1f3d2169c1af) 1573 | ) 1574 | (wire (pts (xy 153.035 64.77) (xy 149.225 64.77)) 1575 | (stroke (width 0) (type default) (color 0 0 0 0)) 1576 | (uuid d17b2487-8b7b-4157-a856-72312005674b) 1577 | ) 1578 | (wire (pts (xy 123.19 163.83) (xy 130.81 163.83)) 1579 | (stroke (width 0) (type default) (color 0 0 0 0)) 1580 | (uuid d446fad5-0599-4054-b2c3-3069d024e02a) 1581 | ) 1582 | (wire (pts (xy 45.085 54.61) (xy 53.34 54.61)) 1583 | (stroke (width 0) (type default) (color 0 0 0 0)) 1584 | (uuid d4a2ae37-780c-4351-a990-3bef1c51a33d) 1585 | ) 1586 | (wire (pts (xy 163.195 90.17) (xy 189.23 90.17)) 1587 | (stroke (width 0) (type default) (color 0 0 0 0)) 1588 | (uuid d8f38406-27a3-4c3e-8a82-f7a352de1677) 1589 | ) 1590 | (wire (pts (xy 48.895 64.77) (xy 53.34 64.77)) 1591 | (stroke (width 0) (type default) (color 0 0 0 0)) 1592 | (uuid db35040d-6e28-48be-be6d-3f352dcaf0ce) 1593 | ) 1594 | (wire (pts (xy 106.045 80.01) (xy 93.98 80.01)) 1595 | (stroke (width 0) (type default) (color 0 0 0 0)) 1596 | (uuid dbc48b35-e2f8-4ea1-ac17-60c6d8225ed4) 1597 | ) 1598 | (wire (pts (xy 90.805 181.61) (xy 90.805 178.435)) 1599 | (stroke (width 0) (type default) (color 0 0 0 0)) 1600 | (uuid dc842591-44a8-411a-aa18-294baf2b7a89) 1601 | ) 1602 | (wire (pts (xy 124.46 175.26) (xy 130.81 175.26)) 1603 | (stroke (width 0) (type default) (color 0 0 0 0)) 1604 | (uuid e5bd545f-439a-4fc1-8dbc-2dc963c50dcc) 1605 | ) 1606 | (wire (pts (xy 39.37 177.165) (xy 46.99 177.165)) 1607 | (stroke (width 0) (type default) (color 0 0 0 0)) 1608 | (uuid e81ef25b-f499-43a6-a81e-7df6333fcfd0) 1609 | ) 1610 | (wire (pts (xy 163.195 50.8) (xy 163.195 90.17)) 1611 | (stroke (width 0) (type default) (color 0 0 0 0)) 1612 | (uuid e8628e71-9d5f-4ed7-95dd-04d312ec562b) 1613 | ) 1614 | (wire (pts (xy 130.81 114.3) (xy 134.62 114.3)) 1615 | (stroke (width 0) (type default) (color 0 0 0 0)) 1616 | (uuid e953cda7-3120-4d9b-be10-e255c6de9512) 1617 | ) 1618 | (wire (pts (xy 45.085 54.61) (xy 45.085 53.975)) 1619 | (stroke (width 0) (type default) (color 0 0 0 0)) 1620 | (uuid ec24c800-0256-4a4e-86b9-10d6bf6597a9) 1621 | ) 1622 | (wire (pts (xy 180.975 95.25) (xy 180.975 97.79)) 1623 | (stroke (width 0) (type default) (color 0 0 0 0)) 1624 | (uuid ef8a658c-88c7-4a97-82d3-ab11175c48a6) 1625 | ) 1626 | (wire (pts (xy 177.8 87.63) (xy 180.975 87.63)) 1627 | (stroke (width 0) (type default) (color 0 0 0 0)) 1628 | (uuid f02221d2-5d76-4b38-91a8-75237837acfa) 1629 | ) 1630 | (wire (pts (xy 90.805 178.435) (xy 90.805 175.895)) 1631 | (stroke (width 0) (type default) (color 0 0 0 0)) 1632 | (uuid f1a8e39d-8304-453e-be28-e8f100239f1b) 1633 | ) 1634 | (wire (pts (xy 158.115 116.84) (xy 154.94 116.84)) 1635 | (stroke (width 0) (type default) (color 0 0 0 0)) 1636 | (uuid f351a7f0-fb1f-4001-973d-f886129f9532) 1637 | ) 1638 | (wire (pts (xy 180.975 87.63) (xy 194.31 87.63)) 1639 | (stroke (width 0) (type default) (color 0 0 0 0)) 1640 | (uuid f409ac17-b4e5-43c9-b947-dac171e5e40c) 1641 | ) 1642 | (wire (pts (xy 123.19 177.8) (xy 130.81 177.8)) 1643 | (stroke (width 0) (type default) (color 0 0 0 0)) 1644 | (uuid f85809a6-c071-499f-b916-7fd81a01bad0) 1645 | ) 1646 | (wire (pts (xy 178.435 64.77) (xy 178.435 50.8)) 1647 | (stroke (width 0) (type default) (color 0 0 0 0)) 1648 | (uuid fb0c43a2-c522-4563-8767-9afee2613056) 1649 | ) 1650 | (wire (pts (xy 90.805 163.195) (xy 90.805 165.735)) 1651 | (stroke (width 0) (type default) (color 0 0 0 0)) 1652 | (uuid fbc8e74b-e1ce-4783-a6c8-ad47dd1e8025) 1653 | ) 1654 | (wire (pts (xy 134.62 116.84) (xy 130.81 116.84)) 1655 | (stroke (width 0) (type default) (color 0 0 0 0)) 1656 | (uuid fd73ad5e-f0e6-45d2-a621-c14346b0c3c0) 1657 | ) 1658 | 1659 | (text "there is a internal pullup res, so set a strong pull down here" 1660 | (at 60.96 193.04 0) 1661 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1662 | (uuid 8284aab9-745d-48ae-aef5-fca58e81f991) 1663 | ) 1664 | 1665 | (label "RF" (at 226.949 120.015 0) 1666 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1667 | (uuid 02762b77-5323-431b-bd90-8e2c5bc3a7f5) 1668 | ) 1669 | (label "MISO" (at 48.895 67.31 0) 1670 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1671 | (uuid 1e58a917-5582-4fc4-b6f6-55ec2eb987ca) 1672 | ) 1673 | (label "PWM8" (at 93.98 95.25 0) 1674 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1675 | (uuid 1efa18bc-d32b-4ea4-be09-9dcce27488bd) 1676 | ) 1677 | (label "PWM2" (at 124.46 158.75 180) 1678 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1679 | (uuid 1f559db0-c7fe-42ed-85a3-83449be078a4) 1680 | ) 1681 | (label "PWM5" (at 32.385 169.545 180) 1682 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1683 | (uuid 27e6c826-8c09-4db5-8712-45d4d94c81ca) 1684 | ) 1685 | (label "MOSI" (at 229.87 80.01 0) 1686 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1687 | (uuid 30190cfc-8fbf-46fd-95a4-5122e4bb4e4e) 1688 | ) 1689 | (label "SCK" (at 95.25 80.01 0) 1690 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1691 | (uuid 38a03fec-e752-48bc-9e7b-23afb37dde6a) 1692 | ) 1693 | (label "ESP32_ANT" (at 93.98 54.61 0) 1694 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1695 | (uuid 3fc34ff8-2d58-43cc-87d7-251fcd53658a) 1696 | ) 1697 | (label "PWM3" (at 83.185 158.115 180) 1698 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1699 | (uuid 41ff9777-1708-41d9-94ba-29e09bf5764c) 1700 | ) 1701 | (label "RX" (at 93.98 67.31 0) 1702 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1703 | (uuid 49c9ebea-d386-45c1-9102-238acf8e1099) 1704 | ) 1705 | (label "TX" (at 208.28 147.955 0) 1706 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1707 | (uuid 54b84471-f6c1-40ca-ae17-1ac04e849d88) 1708 | ) 1709 | (label "PWM6" (at 93.98 100.33 0) 1710 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1711 | (uuid 56cdc377-406c-4228-b4be-1157660232a3) 1712 | ) 1713 | (label "NSS" (at 229.87 74.93 0) 1714 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1715 | (uuid 64204b0d-ee1b-487e-b09b-cb0aa5964759) 1716 | ) 1717 | (label "BUSY" (at 187.325 77.47 0) 1718 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1719 | (uuid 6973084a-7376-47b4-8b75-df51406d2ec7) 1720 | ) 1721 | (label "PWM2" (at 93.98 102.87 0) 1722 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1723 | (uuid 7200517c-5a5c-486f-a5d1-27c41b146541) 1724 | ) 1725 | (label "RX" (at 208.28 145.415 0) 1726 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1727 | (uuid 7a13d5d3-fa5d-4243-81be-0bdda6b6187f) 1728 | ) 1729 | (label "PWM1" (at 93.98 74.93 0) 1730 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1731 | (uuid 7bf083cd-299c-4128-807a-466a27ce6939) 1732 | ) 1733 | (label "PWM1" (at 157.48 156.21 180) 1734 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1735 | (uuid 7fbf1600-c7f4-4092-a93d-8bd6d68ec21c) 1736 | ) 1737 | (label "PWM7" (at 93.98 110.49 0) 1738 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1739 | (uuid 899f9d69-1f2a-4b32-9136-4c8736dd348e) 1740 | ) 1741 | (label "PWM3" (at 76.2 170.815 180) 1742 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1743 | (uuid 8b2938e0-5aaf-4899-bf73-181ce7e55671) 1744 | ) 1745 | (label "LED" (at 153.035 64.77 0) 1746 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1747 | (uuid 94b3302d-5520-4893-8614-929ee5fadf93) 1748 | ) 1749 | (label "PWM5" (at 93.98 97.79 0) 1750 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1751 | (uuid 9a994a22-79e0-4eb2-88e5-6e21409545bb) 1752 | ) 1753 | (label "PWM4" (at 124.46 175.26 180) 1754 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1755 | (uuid a9988000-eb91-4e91-a7b6-549b4b213d6b) 1756 | ) 1757 | (label "DIO1" (at 187.325 80.01 0) 1758 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1759 | (uuid bfb7d9ea-2ddf-45d7-8113-359a43e04c48) 1760 | ) 1761 | (label "NSS" (at 95.25 82.55 0) 1762 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1763 | (uuid c3b34a12-d11a-4fd7-a741-c9dae8325532) 1764 | ) 1765 | (label "MISO" (at 229.87 82.55 0) 1766 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1767 | (uuid c71b49c7-13c0-4ce4-8cce-da3dec6f6d05) 1768 | ) 1769 | (label "PWM4" (at 93.98 113.03 0) 1770 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1771 | (uuid d2fef4be-b39a-4c46-9de9-910052d50f12) 1772 | ) 1773 | (label "LED" (at 93.98 64.77 0) 1774 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1775 | (uuid d668fc69-b68e-4c1a-8203-cc4b6f1d1dee) 1776 | ) 1777 | (label "RF" (at 236.22 67.31 0) 1778 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1779 | (uuid dcc9bd72-6319-4595-b0bd-696e26a9e6e4) 1780 | ) 1781 | (label "TX" (at 93.98 62.23 0) 1782 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1783 | (uuid dce1b0e9-4be5-4011-933f-f50e784088d6) 1784 | ) 1785 | (label "NRST" (at 189.23 67.31 0) 1786 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1787 | (uuid e46f4e64-0db3-4083-9a33-21922948c8db) 1788 | ) 1789 | (label "MOSI" (at 93.98 107.95 0) 1790 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1791 | (uuid e761bf23-c9f3-4827-a825-6c77bb0b17b1) 1792 | ) 1793 | (label "NRST" (at 93.98 69.85 0) 1794 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1795 | (uuid e83bde67-0518-4f7f-8235-b3cbeee75ccc) 1796 | ) 1797 | (label "BUSY" (at 48.895 59.69 0) 1798 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1799 | (uuid f1c663ce-5303-4096-ae57-b2857e118b87) 1800 | ) 1801 | (label "PWM3" (at 93.98 72.39 0) 1802 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1803 | (uuid f25e2b3c-66ad-4a73-9728-96dbbda43f9d) 1804 | ) 1805 | (label "SCK" (at 229.87 77.47 0) 1806 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1807 | (uuid f370cba4-accf-48ce-97ea-8554447990d0) 1808 | ) 1809 | (label "DIO1" (at 48.895 64.77 0) 1810 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1811 | (uuid fcf3f963-2438-4277-b2f5-87c10eef5711) 1812 | ) 1813 | 1814 | (symbol (lib_id "Device:R") (at 45.085 50.165 0) (unit 1) 1815 | (in_bom yes) (on_board yes) (fields_autoplaced) 1816 | (uuid 062359d1-5ee0-4f31-a9bc-8618b8b1d43b) 1817 | (property "Reference" "R1" (id 0) (at 46.99 48.8949 0) 1818 | (effects (font (size 1.27 1.27)) (justify left)) 1819 | ) 1820 | (property "Value" "10K" (id 1) (at 46.99 51.4349 0) 1821 | (effects (font (size 1.27 1.27)) (justify left)) 1822 | ) 1823 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 43.307 50.165 90) 1824 | (effects (font (size 1.27 1.27)) hide) 1825 | ) 1826 | (property "Datasheet" "~" (id 3) (at 45.085 50.165 0) 1827 | (effects (font (size 1.27 1.27)) hide) 1828 | ) 1829 | (pin "1" (uuid fc769161-41a3-407c-9fb3-3533a11be63f)) 1830 | (pin "2" (uuid 2977c35b-60fc-4407-a4a3-8ee86563c630)) 1831 | ) 1832 | 1833 | (symbol (lib_id "Connector_Generic:Conn_01x02") (at 52.07 159.385 0) (unit 1) 1834 | (in_bom yes) (on_board yes) 1835 | (uuid 07f32893-fb8f-46cb-b873-e32c32d1be98) 1836 | (property "Reference" "J1" (id 0) (at 54.61 159.3849 0) 1837 | (effects (font (size 1.27 1.27)) (justify left)) 1838 | ) 1839 | (property "Value" "Conn_01x02" (id 1) (at 54.61 161.29 0) 1840 | (effects (font (size 1.27 1.27)) (justify left)) 1841 | ) 1842 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical" (id 2) (at 52.07 159.385 0) 1843 | (effects (font (size 1.27 1.27)) hide) 1844 | ) 1845 | (property "Datasheet" "~" (id 3) (at 52.07 159.385 0) 1846 | (effects (font (size 1.27 1.27)) hide) 1847 | ) 1848 | (pin "1" (uuid 64d22983-ed66-4ea8-909e-29684e30c84d)) 1849 | (pin "2" (uuid 87781ba8-160a-4ea0-a9be-939f75a8540d)) 1850 | ) 1851 | 1852 | (symbol (lib_id "Device:R") (at 145.415 64.77 90) (unit 1) 1853 | (in_bom yes) (on_board yes) (fields_autoplaced) 1854 | (uuid 10d1ff9f-07f2-4684-a61b-1b86993123cd) 1855 | (property "Reference" "R3" (id 0) (at 145.415 58.42 90)) 1856 | (property "Value" "10K" (id 1) (at 145.415 60.96 90)) 1857 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 145.415 66.548 90) 1858 | (effects (font (size 1.27 1.27)) hide) 1859 | ) 1860 | (property "Datasheet" "~" (id 3) (at 145.415 64.77 0) 1861 | (effects (font (size 1.27 1.27)) hide) 1862 | ) 1863 | (pin "1" (uuid 659ec60c-d858-4d32-9c7a-61707502ee2b)) 1864 | (pin "2" (uuid 64deb947-f20a-4168-afed-5559a76a954a)) 1865 | ) 1866 | 1867 | (symbol (lib_id "Device:R") (at 83.185 174.625 0) (unit 1) 1868 | (in_bom yes) (on_board yes) (fields_autoplaced) 1869 | (uuid 1a039d88-7ab9-405d-bfaf-324c97ce2e32) 1870 | (property "Reference" "R5" (id 0) (at 85.09 173.3549 0) 1871 | (effects (font (size 1.27 1.27)) (justify left)) 1872 | ) 1873 | (property "Value" "3K3" (id 1) (at 85.09 175.8949 0) 1874 | (effects (font (size 1.27 1.27)) (justify left)) 1875 | ) 1876 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 81.407 174.625 90) 1877 | (effects (font (size 1.27 1.27)) hide) 1878 | ) 1879 | (property "Datasheet" "~" (id 3) (at 83.185 174.625 0) 1880 | (effects (font (size 1.27 1.27)) hide) 1881 | ) 1882 | (pin "1" (uuid 117d15bb-ed99-4b5b-a30f-379746d01d90)) 1883 | (pin "2" (uuid 546d11b2-fe05-4da9-970f-346e63aa7732)) 1884 | ) 1885 | 1886 | (symbol (lib_id "power:+3.3V") (at 100.33 123.19 0) (unit 1) 1887 | (in_bom yes) (on_board yes) (fields_autoplaced) 1888 | (uuid 1a554a15-93e6-40be-9d48-9ad94c27be8f) 1889 | (property "Reference" "#PWR0118" (id 0) (at 100.33 127 0) 1890 | (effects (font (size 1.27 1.27)) hide) 1891 | ) 1892 | (property "Value" "+3.3V" (id 1) (at 100.33 118.11 0)) 1893 | (property "Footprint" "" (id 2) (at 100.33 123.19 0) 1894 | (effects (font (size 1.27 1.27)) hide) 1895 | ) 1896 | (property "Datasheet" "" (id 3) (at 100.33 123.19 0) 1897 | (effects (font (size 1.27 1.27)) hide) 1898 | ) 1899 | (pin "1" (uuid 7432f627-a533-4c1b-b785-af7224cd5d44)) 1900 | ) 1901 | 1902 | (symbol (lib_id "power:GND") (at 189.865 72.39 180) (unit 1) 1903 | (in_bom yes) (on_board yes) 1904 | (uuid 1c845146-4488-4df8-a33a-138df0ac947f) 1905 | (property "Reference" "#PWR0121" (id 0) (at 189.865 66.04 0) 1906 | (effects (font (size 1.27 1.27)) hide) 1907 | ) 1908 | (property "Value" "GND" (id 1) (at 187.325 67.945 0) 1909 | (effects (font (size 1.27 1.27)) (justify left)) 1910 | ) 1911 | (property "Footprint" "" (id 2) (at 189.865 72.39 0) 1912 | (effects (font (size 1.27 1.27)) hide) 1913 | ) 1914 | (property "Datasheet" "" (id 3) (at 189.865 72.39 0) 1915 | (effects (font (size 1.27 1.27)) hide) 1916 | ) 1917 | (pin "1" (uuid e43888b8-a23f-4f51-a315-11c7c85afa6a)) 1918 | ) 1919 | 1920 | (symbol (lib_id "power:+BATT") (at 123.19 161.29 90) (unit 1) 1921 | (in_bom yes) (on_board yes) (fields_autoplaced) 1922 | (uuid 1eae4f1a-0087-4c35-aea0-85ce11c817cb) 1923 | (property "Reference" "#PWR06" (id 0) (at 127 161.29 0) 1924 | (effects (font (size 1.27 1.27)) hide) 1925 | ) 1926 | (property "Value" "+BATT" (id 1) (at 124.46 161.2899 90) 1927 | (effects (font (size 1.27 1.27)) (justify right)) 1928 | ) 1929 | (property "Footprint" "" (id 2) (at 123.19 161.29 0) 1930 | (effects (font (size 1.27 1.27)) hide) 1931 | ) 1932 | (property "Datasheet" "" (id 3) (at 123.19 161.29 0) 1933 | (effects (font (size 1.27 1.27)) hide) 1934 | ) 1935 | (pin "1" (uuid e9b6d5e8-ffbb-4800-b015-97866676667a)) 1936 | ) 1937 | 1938 | (symbol (lib_id "Device:Q_NMOS_GSD") (at 88.265 170.815 0) (unit 1) 1939 | (in_bom yes) (on_board yes) (fields_autoplaced) 1940 | (uuid 200fbd5e-20e3-473b-a551-f8888fd20ddd) 1941 | (property "Reference" "Q2" (id 0) (at 93.98 169.5449 0) 1942 | (effects (font (size 1.27 1.27)) (justify left)) 1943 | ) 1944 | (property "Value" "Q_NMOS_GSD" (id 1) (at 93.98 172.0849 0) 1945 | (effects (font (size 1.27 1.27)) (justify left)) 1946 | ) 1947 | (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 93.345 168.275 0) 1948 | (effects (font (size 1.27 1.27)) hide) 1949 | ) 1950 | (property "Datasheet" "~" (id 3) (at 88.265 170.815 0) 1951 | (effects (font (size 1.27 1.27)) hide) 1952 | ) 1953 | (pin "1" (uuid 3b6cecd9-f0af-444a-a162-9cf23bb67250)) 1954 | (pin "2" (uuid 2d6bcb14-69ba-4448-8642-57a0652f594c)) 1955 | (pin "3" (uuid 9cc7c46d-36b9-4fbb-a9d8-5323208790fc)) 1956 | ) 1957 | 1958 | (symbol (lib_id "power:+BATT") (at 156.21 158.75 90) (unit 1) 1959 | (in_bom yes) (on_board yes) (fields_autoplaced) 1960 | (uuid 270cb254-e2ae-4b16-8339-63efee80d541) 1961 | (property "Reference" "#PWR010" (id 0) (at 160.02 158.75 0) 1962 | (effects (font (size 1.27 1.27)) hide) 1963 | ) 1964 | (property "Value" "+BATT" (id 1) (at 157.48 158.7499 90) 1965 | (effects (font (size 1.27 1.27)) (justify right)) 1966 | ) 1967 | (property "Footprint" "" (id 2) (at 156.21 158.75 0) 1968 | (effects (font (size 1.27 1.27)) hide) 1969 | ) 1970 | (property "Datasheet" "" (id 3) (at 156.21 158.75 0) 1971 | (effects (font (size 1.27 1.27)) hide) 1972 | ) 1973 | (pin "1" (uuid 426046a6-47d4-4697-8d26-2e1518481c7e)) 1974 | ) 1975 | 1976 | (symbol (lib_id "Device:C") (at 238.125 88.9 0) (unit 1) 1977 | (in_bom yes) (on_board yes) 1978 | (uuid 27de3513-1ba9-4496-b6ca-50412f2f4fb8) 1979 | (property "Reference" "C8" (id 0) (at 241.935 87.6299 0) 1980 | (effects (font (size 1.27 1.27)) (justify left)) 1981 | ) 1982 | (property "Value" "4.7uF" (id 1) (at 230.505 90.805 0) 1983 | (effects (font (size 1.27 1.27)) (justify left)) 1984 | ) 1985 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 239.0902 92.71 0) 1986 | (effects (font (size 1.27 1.27)) hide) 1987 | ) 1988 | (property "Datasheet" "~" (id 3) (at 238.125 88.9 0) 1989 | (effects (font (size 1.27 1.27)) hide) 1990 | ) 1991 | (pin "1" (uuid fb5ee887-088f-4560-829a-9ee46cdb6d5d)) 1992 | (pin "2" (uuid fa6d6e90-d048-4f3a-a79f-affcfbfde13a)) 1993 | ) 1994 | 1995 | (symbol (lib_id "Connector_Generic:Conn_01x04") (at 217.805 145.415 0) (unit 1) 1996 | (in_bom yes) (on_board yes) (fields_autoplaced) 1997 | (uuid 2990a96d-8064-447e-bff0-5e65bdd246fa) 1998 | (property "Reference" "J3" (id 0) (at 220.345 145.4149 0) 1999 | (effects (font (size 1.27 1.27)) (justify left)) 2000 | ) 2001 | (property "Value" "Conn_01x04" (id 1) (at 220.345 147.9549 0) 2002 | (effects (font (size 1.27 1.27)) (justify left)) 2003 | ) 2004 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 217.805 145.415 0) 2005 | (effects (font (size 1.27 1.27)) hide) 2006 | ) 2007 | (property "Datasheet" "~" (id 3) (at 217.805 145.415 0) 2008 | (effects (font (size 1.27 1.27)) hide) 2009 | ) 2010 | (pin "1" (uuid 6f9e160f-5773-4a61-ac69-dd1059a60987)) 2011 | (pin "2" (uuid 4a2fedbe-b74a-4196-9301-cd342e4427ab)) 2012 | (pin "3" (uuid b8823a29-eabb-4d37-88b5-bd78b473b356)) 2013 | (pin "4" (uuid 09c2daa6-df7e-43d2-8e0f-e67398010a9b)) 2014 | ) 2015 | 2016 | (symbol (lib_id "Device:C") (at 189.23 93.98 0) (unit 1) 2017 | (in_bom yes) (on_board yes) (fields_autoplaced) 2018 | (uuid 2a3af6b8-e8ee-47c1-8a1b-7ac739a8e7c3) 2019 | (property "Reference" "C7" (id 0) (at 193.04 92.7099 0) 2020 | (effects (font (size 1.27 1.27)) (justify left)) 2021 | ) 2022 | (property "Value" "4.7uF" (id 1) (at 193.04 95.2499 0) 2023 | (effects (font (size 1.27 1.27)) (justify left)) 2024 | ) 2025 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 190.1952 97.79 0) 2026 | (effects (font (size 1.27 1.27)) hide) 2027 | ) 2028 | (property "Datasheet" "~" (id 3) (at 189.23 93.98 0) 2029 | (effects (font (size 1.27 1.27)) hide) 2030 | ) 2031 | (pin "1" (uuid a4d8c07e-4e6c-4b72-875c-23da0d7bba0d)) 2032 | (pin "2" (uuid 49ebe700-00d5-4f9d-80e4-3dc76af35c1f)) 2033 | ) 2034 | 2035 | (symbol (lib_id "power:GND") (at 144.78 124.46 0) (unit 1) 2036 | (in_bom yes) (on_board yes) (fields_autoplaced) 2037 | (uuid 30b21b68-1eb4-4fc2-a84e-0581ea480604) 2038 | (property "Reference" "#PWR0112" (id 0) (at 144.78 130.81 0) 2039 | (effects (font (size 1.27 1.27)) hide) 2040 | ) 2041 | (property "Value" "GND" (id 1) (at 144.78 129.54 0)) 2042 | (property "Footprint" "" (id 2) (at 144.78 124.46 0) 2043 | (effects (font (size 1.27 1.27)) hide) 2044 | ) 2045 | (property "Datasheet" "" (id 3) (at 144.78 124.46 0) 2046 | (effects (font (size 1.27 1.27)) hide) 2047 | ) 2048 | (pin "1" (uuid 6c89d05d-5a57-4cb5-9d89-a008b3bb1db3)) 2049 | ) 2050 | 2051 | (symbol (lib_id "Device:R") (at 104.775 59.69 90) (unit 1) 2052 | (in_bom yes) (on_board yes) 2053 | (uuid 31510b52-0b75-4c71-be45-30651f686938) 2054 | (property "Reference" "R2" (id 0) (at 109.22 55.88 90)) 2055 | (property "Value" "NC" (id 1) (at 104.775 55.88 90)) 2056 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 104.775 61.468 90) 2057 | (effects (font (size 1.27 1.27)) hide) 2058 | ) 2059 | (property "Datasheet" "~" (id 3) (at 104.775 59.69 0) 2060 | (effects (font (size 1.27 1.27)) hide) 2061 | ) 2062 | (pin "1" (uuid 485b9ff6-839a-4177-97d7-c89b86bd13b0)) 2063 | (pin "2" (uuid 5ea50fce-765d-4833-bbd3-2a71821066ee)) 2064 | ) 2065 | 2066 | (symbol (lib_id "power:GND") (at 233.68 59.69 90) (unit 1) 2067 | (in_bom yes) (on_board yes) 2068 | (uuid 34514a5c-2496-4e1c-ae54-cbb7fcd6182d) 2069 | (property "Reference" "#PWR0104" (id 0) (at 240.03 59.69 0) 2070 | (effects (font (size 1.27 1.27)) hide) 2071 | ) 2072 | (property "Value" "GND" (id 1) (at 238.125 57.15 90) 2073 | (effects (font (size 1.27 1.27)) (justify left)) 2074 | ) 2075 | (property "Footprint" "" (id 2) (at 233.68 59.69 0) 2076 | (effects (font (size 1.27 1.27)) hide) 2077 | ) 2078 | (property "Datasheet" "" (id 3) (at 233.68 59.69 0) 2079 | (effects (font (size 1.27 1.27)) hide) 2080 | ) 2081 | (pin "1" (uuid 742f2a37-f4ee-47a0-a531-306ead6002c2)) 2082 | ) 2083 | 2084 | (symbol (lib_id "power:GND") (at 125.73 64.77 270) (unit 1) 2085 | (in_bom yes) (on_board yes) 2086 | (uuid 386c0c7b-a34b-4977-82a3-0f6010c3b42f) 2087 | (property "Reference" "#PWR0122" (id 0) (at 119.38 64.77 0) 2088 | (effects (font (size 1.27 1.27)) hide) 2089 | ) 2090 | (property "Value" "GND" (id 1) (at 125.095 67.945 90) 2091 | (effects (font (size 1.27 1.27)) (justify left)) 2092 | ) 2093 | (property "Footprint" "" (id 2) (at 125.73 64.77 0) 2094 | (effects (font (size 1.27 1.27)) hide) 2095 | ) 2096 | (property "Datasheet" "" (id 3) (at 125.73 64.77 0) 2097 | (effects (font (size 1.27 1.27)) hide) 2098 | ) 2099 | (pin "1" (uuid 83b13849-33d3-4a79-8a62-7658f6f043e8)) 2100 | ) 2101 | 2102 | (symbol (lib_id "power:GND") (at 244.475 107.315 180) (unit 1) 2103 | (in_bom yes) (on_board yes) (fields_autoplaced) 2104 | (uuid 396422df-b562-4d2b-848d-58ceed0b310e) 2105 | (property "Reference" "#PWR0107" (id 0) (at 244.475 100.965 0) 2106 | (effects (font (size 1.27 1.27)) hide) 2107 | ) 2108 | (property "Value" "GND" (id 1) (at 246.38 106.0449 0) 2109 | (effects (font (size 1.27 1.27)) (justify right)) 2110 | ) 2111 | (property "Footprint" "" (id 2) (at 244.475 107.315 0) 2112 | (effects (font (size 1.27 1.27)) hide) 2113 | ) 2114 | (property "Datasheet" "" (id 3) (at 244.475 107.315 0) 2115 | (effects (font (size 1.27 1.27)) hide) 2116 | ) 2117 | (pin "1" (uuid 3ea00a3c-ebc4-4743-841f-66546aa0c5eb)) 2118 | ) 2119 | 2120 | (symbol (lib_id "power:+BATT") (at 76.2 160.655 90) (unit 1) 2121 | (in_bom yes) (on_board yes) (fields_autoplaced) 2122 | (uuid 3b246671-a530-4090-8468-2ab0bfe249c2) 2123 | (property "Reference" "#PWR04" (id 0) (at 80.01 160.655 0) 2124 | (effects (font (size 1.27 1.27)) hide) 2125 | ) 2126 | (property "Value" "+BATT" (id 1) (at 76.835 160.6549 90) 2127 | (effects (font (size 1.27 1.27)) (justify right)) 2128 | ) 2129 | (property "Footprint" "" (id 2) (at 76.2 160.655 0) 2130 | (effects (font (size 1.27 1.27)) hide) 2131 | ) 2132 | (property "Datasheet" "" (id 3) (at 76.2 160.655 0) 2133 | (effects (font (size 1.27 1.27)) hide) 2134 | ) 2135 | (pin "1" (uuid 0c7176fe-7850-4d73-999d-794b6601674b)) 2136 | ) 2137 | 2138 | (symbol (lib_id "power:GND") (at 95.885 168.275 90) (unit 1) 2139 | (in_bom yes) (on_board yes) (fields_autoplaced) 2140 | (uuid 3bffdec5-09be-4bed-a86d-8758874c1b0d) 2141 | (property "Reference" "#PWR0129" (id 0) (at 102.235 168.275 0) 2142 | (effects (font (size 1.27 1.27)) hide) 2143 | ) 2144 | (property "Value" "GND" (id 1) (at 99.06 168.2749 90) 2145 | (effects (font (size 1.27 1.27)) (justify right)) 2146 | ) 2147 | (property "Footprint" "" (id 2) (at 95.885 168.275 0) 2148 | (effects (font (size 1.27 1.27)) hide) 2149 | ) 2150 | (property "Datasheet" "" (id 3) (at 95.885 168.275 0) 2151 | (effects (font (size 1.27 1.27)) hide) 2152 | ) 2153 | (pin "1" (uuid 085b7551-9d46-4d02-8df7-ae0edaa09e03)) 2154 | ) 2155 | 2156 | (symbol (lib_id "power:+BATT") (at 123.19 177.8 90) (unit 1) 2157 | (in_bom yes) (on_board yes) (fields_autoplaced) 2158 | (uuid 3cc80cd4-dd9b-42de-baca-ddefb8f66323) 2159 | (property "Reference" "#PWR08" (id 0) (at 127 177.8 0) 2160 | (effects (font (size 1.27 1.27)) hide) 2161 | ) 2162 | (property "Value" "+BATT" (id 1) (at 124.46 177.7999 90) 2163 | (effects (font (size 1.27 1.27)) (justify right)) 2164 | ) 2165 | (property "Footprint" "" (id 2) (at 123.19 177.8 0) 2166 | (effects (font (size 1.27 1.27)) hide) 2167 | ) 2168 | (property "Datasheet" "" (id 3) (at 123.19 177.8 0) 2169 | (effects (font (size 1.27 1.27)) hide) 2170 | ) 2171 | (pin "1" (uuid a33959f8-19ba-41f4-8201-e695db5a83dc)) 2172 | ) 2173 | 2174 | (symbol (lib_id "Device:C") (at 158.115 120.65 0) (unit 1) 2175 | (in_bom yes) (on_board yes) 2176 | (uuid 40bd3aa5-2010-4bf5-8562-134335c515f3) 2177 | (property "Reference" "C3" (id 0) (at 154.305 118.745 0) 2178 | (effects (font (size 1.27 1.27)) (justify left)) 2179 | ) 2180 | (property "Value" "180pF" (id 1) (at 152.4 123.19 0) 2181 | (effects (font (size 1.27 1.27)) (justify left)) 2182 | ) 2183 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 159.0802 124.46 0) 2184 | (effects (font (size 1.27 1.27)) hide) 2185 | ) 2186 | (property "Datasheet" "~" (id 3) (at 158.115 120.65 0) 2187 | (effects (font (size 1.27 1.27)) hide) 2188 | ) 2189 | (pin "1" (uuid ef3526a7-e70b-4605-b9f4-7e0da85a4e5e)) 2190 | (pin "2" (uuid 8aff0b77-55bb-4f7d-b761-e0b759b71e49)) 2191 | ) 2192 | 2193 | (symbol (lib_id "power:+3.3V") (at 45.085 46.355 0) (unit 1) 2194 | (in_bom yes) (on_board yes) (fields_autoplaced) 2195 | (uuid 42a186de-3d09-40e4-a845-deb849c97851) 2196 | (property "Reference" "#PWR0120" (id 0) (at 45.085 50.165 0) 2197 | (effects (font (size 1.27 1.27)) hide) 2198 | ) 2199 | (property "Value" "+3.3V" (id 1) (at 45.085 41.275 0)) 2200 | (property "Footprint" "" (id 2) (at 45.085 46.355 0) 2201 | (effects (font (size 1.27 1.27)) hide) 2202 | ) 2203 | (property "Datasheet" "" (id 3) (at 45.085 46.355 0) 2204 | (effects (font (size 1.27 1.27)) hide) 2205 | ) 2206 | (pin "1" (uuid 835257f0-05a3-40b7-b05b-9581c4fda47e)) 2207 | ) 2208 | 2209 | (symbol (lib_id "Device:C") (at 45.085 59.055 0) (mirror y) (unit 1) 2210 | (in_bom yes) (on_board yes) 2211 | (uuid 4fdb758e-3ec1-4750-ae99-94597196cf8a) 2212 | (property "Reference" "C1" (id 0) (at 38.1 57.785 0) 2213 | (effects (font (size 1.27 1.27)) (justify right)) 2214 | ) 2215 | (property "Value" "0.1uF" (id 1) (at 36.195 59.69 0) 2216 | (effects (font (size 1.27 1.27)) (justify right)) 2217 | ) 2218 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 44.1198 62.865 0) 2219 | (effects (font (size 1.27 1.27)) hide) 2220 | ) 2221 | (property "Datasheet" "~" (id 3) (at 45.085 59.055 0) 2222 | (effects (font (size 1.27 1.27)) hide) 2223 | ) 2224 | (pin "1" (uuid 229e750d-87d9-47de-961d-aff2353a3b26)) 2225 | (pin "2" (uuid f6b3ff4f-caba-4671-bb76-8ef6281602b5)) 2226 | ) 2227 | 2228 | (symbol (lib_id "Device:R") (at 39.37 173.355 0) (unit 1) 2229 | (in_bom yes) (on_board yes) (fields_autoplaced) 2230 | (uuid 5073c547-eee8-44da-840e-c47d26d3104f) 2231 | (property "Reference" "R4" (id 0) (at 41.275 172.0849 0) 2232 | (effects (font (size 1.27 1.27)) (justify left)) 2233 | ) 2234 | (property "Value" "10K" (id 1) (at 41.275 174.6249 0) 2235 | (effects (font (size 1.27 1.27)) (justify left)) 2236 | ) 2237 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 37.592 173.355 90) 2238 | (effects (font (size 1.27 1.27)) hide) 2239 | ) 2240 | (property "Datasheet" "~" (id 3) (at 39.37 173.355 0) 2241 | (effects (font (size 1.27 1.27)) hide) 2242 | ) 2243 | (pin "1" (uuid 5ce72b89-b3d4-4b58-817b-ed1c153ed913)) 2244 | (pin "2" (uuid 84f8a8dc-512a-4f48-9dfb-4aca52c0381a)) 2245 | ) 2246 | 2247 | (symbol (lib_id "power:GND") (at 46.99 180.34 0) (unit 1) 2248 | (in_bom yes) (on_board yes) (fields_autoplaced) 2249 | (uuid 565cd07e-85af-4eb8-b1f5-84e56ca1d103) 2250 | (property "Reference" "#PWR0128" (id 0) (at 46.99 186.69 0) 2251 | (effects (font (size 1.27 1.27)) hide) 2252 | ) 2253 | (property "Value" "GND" (id 1) (at 46.99 185.42 0)) 2254 | (property "Footprint" "" (id 2) (at 46.99 180.34 0) 2255 | (effects (font (size 1.27 1.27)) hide) 2256 | ) 2257 | (property "Datasheet" "" (id 3) (at 46.99 180.34 0) 2258 | (effects (font (size 1.27 1.27)) hide) 2259 | ) 2260 | (pin "1" (uuid f71bd116-598b-416e-81bf-612b26f3b1de)) 2261 | ) 2262 | 2263 | (symbol (lib_id "Device:C") (at 163.195 120.65 0) (unit 1) 2264 | (in_bom yes) (on_board yes) 2265 | (uuid 57367b22-1cac-4953-9c56-ebcb85355c0e) 2266 | (property "Reference" "C4" (id 0) (at 166.37 121.285 0) 2267 | (effects (font (size 1.27 1.27)) (justify left)) 2268 | ) 2269 | (property "Value" "4.7uF" (id 1) (at 164.465 118.745 0) 2270 | (effects (font (size 1.27 1.27)) (justify left)) 2271 | ) 2272 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 164.1602 124.46 0) 2273 | (effects (font (size 1.27 1.27)) hide) 2274 | ) 2275 | (property "Datasheet" "~" (id 3) (at 163.195 120.65 0) 2276 | (effects (font (size 1.27 1.27)) hide) 2277 | ) 2278 | (pin "1" (uuid 541b64a2-6faa-4910-b2b5-be65e5787ed6)) 2279 | (pin "2" (uuid c39bcda7-4a95-40a8-a2f9-5db186a705f2)) 2280 | ) 2281 | 2282 | (symbol (lib_id "power:GND") (at 212.725 150.495 0) (unit 1) 2283 | (in_bom yes) (on_board yes) (fields_autoplaced) 2284 | (uuid 5d0fe36d-b1ed-47a1-99bd-9411ce462429) 2285 | (property "Reference" "#PWR014" (id 0) (at 212.725 156.845 0) 2286 | (effects (font (size 1.27 1.27)) hide) 2287 | ) 2288 | (property "Value" "GND" (id 1) (at 212.725 155.575 0)) 2289 | (property "Footprint" "" (id 2) (at 212.725 150.495 0) 2290 | (effects (font (size 1.27 1.27)) hide) 2291 | ) 2292 | (property "Datasheet" "" (id 3) (at 212.725 150.495 0) 2293 | (effects (font (size 1.27 1.27)) hide) 2294 | ) 2295 | (pin "1" (uuid 8ccf62e1-83ba-491c-9734-caeea5311b14)) 2296 | ) 2297 | 2298 | (symbol (lib_id "Device:Q_NMOS_GSD") (at 44.45 169.545 0) (unit 1) 2299 | (in_bom yes) (on_board yes) (fields_autoplaced) 2300 | (uuid 667706e8-7d0c-42a7-9dac-6cb35b298261) 2301 | (property "Reference" "Q1" (id 0) (at 50.165 168.2749 0) 2302 | (effects (font (size 1.27 1.27)) (justify left)) 2303 | ) 2304 | (property "Value" "Q_NMOS_GSD" (id 1) (at 50.165 170.8149 0) 2305 | (effects (font (size 1.27 1.27)) (justify left)) 2306 | ) 2307 | (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 49.53 167.005 0) 2308 | (effects (font (size 1.27 1.27)) hide) 2309 | ) 2310 | (property "Datasheet" "~" (id 3) (at 44.45 169.545 0) 2311 | (effects (font (size 1.27 1.27)) hide) 2312 | ) 2313 | (pin "1" (uuid 511c60eb-9c48-474b-9a47-61dd31b22eee)) 2314 | (pin "2" (uuid b48fcafc-ad1a-4f50-b995-9519548e9ec4)) 2315 | (pin "3" (uuid bb75e593-5b4a-47a7-a9b4-fca300681185)) 2316 | ) 2317 | 2318 | (symbol (lib_id "power:GND") (at 135.89 185.42 90) (unit 1) 2319 | (in_bom yes) (on_board yes) (fields_autoplaced) 2320 | (uuid 700b33ee-a9b1-4aaf-9ce0-0bf66671415d) 2321 | (property "Reference" "#PWR?" (id 0) (at 142.24 185.42 0) 2322 | (effects (font (size 1.27 1.27)) hide) 2323 | ) 2324 | (property "Value" "GND" (id 1) (at 139.065 185.4199 90) 2325 | (effects (font (size 1.27 1.27)) (justify right)) 2326 | ) 2327 | (property "Footprint" "" (id 2) (at 135.89 185.42 0) 2328 | (effects (font (size 1.27 1.27)) hide) 2329 | ) 2330 | (property "Datasheet" "" (id 3) (at 135.89 185.42 0) 2331 | (effects (font (size 1.27 1.27)) hide) 2332 | ) 2333 | (pin "1" (uuid 4cfe77b1-1779-48d1-8a68-67487f715287)) 2334 | ) 2335 | 2336 | (symbol (lib_id "power:+3.3V") (at 177.8 87.63 90) (unit 1) 2337 | (in_bom yes) (on_board yes) 2338 | (uuid 73fe65f2-4144-4379-8ed6-8ff6a5fab65b) 2339 | (property "Reference" "#PWR0105" (id 0) (at 181.61 87.63 0) 2340 | (effects (font (size 1.27 1.27)) hide) 2341 | ) 2342 | (property "Value" "+3.3V" (id 1) (at 173.99 85.725 90) 2343 | (effects (font (size 1.27 1.27)) (justify right)) 2344 | ) 2345 | (property "Footprint" "" (id 2) (at 177.8 87.63 0) 2346 | (effects (font (size 1.27 1.27)) hide) 2347 | ) 2348 | (property "Datasheet" "" (id 3) (at 177.8 87.63 0) 2349 | (effects (font (size 1.27 1.27)) hide) 2350 | ) 2351 | (pin "1" (uuid 2580fbe7-4b5b-47a9-a1c0-2d7f132cbba6)) 2352 | ) 2353 | 2354 | (symbol (lib_id "Connector_Generic_MountingPin:Conn_01x03_MountingPin") (at 135.89 177.8 0) (unit 1) 2355 | (in_bom yes) (on_board yes) (fields_autoplaced) 2356 | (uuid 7cf54e4e-ecf2-4a31-a5f4-2d98647570db) 2357 | (property "Reference" "J5" (id 0) (at 138.43 178.1555 0) 2358 | (effects (font (size 1.27 1.27)) (justify left)) 2359 | ) 2360 | (property "Value" "Conn_01x03_MountingPin" (id 1) (at 138.43 179.4255 0) 2361 | (effects (font (size 1.27 1.27)) (justify left) hide) 2362 | ) 2363 | (property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal" (id 2) (at 135.89 177.8 0) 2364 | (effects (font (size 1.27 1.27)) hide) 2365 | ) 2366 | (property "Datasheet" "~" (id 3) (at 135.89 177.8 0) 2367 | (effects (font (size 1.27 1.27)) hide) 2368 | ) 2369 | (pin "1" (uuid 0139275e-b815-40a7-b784-a3a063db6c66)) 2370 | (pin "2" (uuid dc4c125d-8268-4f88-a5c4-6d0e9895e636)) 2371 | (pin "3" (uuid c3fe1eda-51cb-4863-a65d-7717cf67d85d)) 2372 | (pin "MP" (uuid 002f2e2a-f7c6-46ae-891e-1aab57c43921)) 2373 | ) 2374 | 2375 | (symbol (lib_id "power:GND") (at 182.245 72.39 270) (unit 1) 2376 | (in_bom yes) (on_board yes) 2377 | (uuid 7d460f2d-be21-48d4-8c62-dcddd19d1a5d) 2378 | (property "Reference" "#PWR0110" (id 0) (at 175.895 72.39 0) 2379 | (effects (font (size 1.27 1.27)) hide) 2380 | ) 2381 | (property "Value" "GND" (id 1) (at 177.8 74.93 90) 2382 | (effects (font (size 1.27 1.27)) (justify left)) 2383 | ) 2384 | (property "Footprint" "" (id 2) (at 182.245 72.39 0) 2385 | (effects (font (size 1.27 1.27)) hide) 2386 | ) 2387 | (property "Datasheet" "" (id 3) (at 182.245 72.39 0) 2388 | (effects (font (size 1.27 1.27)) hide) 2389 | ) 2390 | (pin "1" (uuid 98a848ae-5e3b-448d-99aa-1ace95fbe8e6)) 2391 | ) 2392 | 2393 | (symbol (lib_id "power:GND") (at 73.66 130.81 0) (unit 1) 2394 | (in_bom yes) (on_board yes) (fields_autoplaced) 2395 | (uuid 7e509ce7-bdc7-45fb-b2d0-c14a958a5480) 2396 | (property "Reference" "#PWR0116" (id 0) (at 73.66 137.16 0) 2397 | (effects (font (size 1.27 1.27)) hide) 2398 | ) 2399 | (property "Value" "GND" (id 1) (at 73.66 135.89 0)) 2400 | (property "Footprint" "" (id 2) (at 73.66 130.81 0) 2401 | (effects (font (size 1.27 1.27)) hide) 2402 | ) 2403 | (property "Datasheet" "" (id 3) (at 73.66 130.81 0) 2404 | (effects (font (size 1.27 1.27)) hide) 2405 | ) 2406 | (pin "1" (uuid 7da6dd22-6820-4812-8b65-ceb1440c016d)) 2407 | ) 2408 | 2409 | (symbol (lib_id "Device:C") (at 130.81 120.65 0) (mirror y) (unit 1) 2410 | (in_bom yes) (on_board yes) (fields_autoplaced) 2411 | (uuid 7ea57a98-78af-439b-999b-2d6f68b50e8e) 2412 | (property "Reference" "C2" (id 0) (at 133.985 119.3799 0) 2413 | (effects (font (size 1.27 1.27)) (justify right)) 2414 | ) 2415 | (property "Value" "4.7uF" (id 1) (at 133.985 121.9199 0) 2416 | (effects (font (size 1.27 1.27)) (justify right)) 2417 | ) 2418 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 129.8448 124.46 0) 2419 | (effects (font (size 1.27 1.27)) hide) 2420 | ) 2421 | (property "Datasheet" "~" (id 3) (at 130.81 120.65 0) 2422 | (effects (font (size 1.27 1.27)) hide) 2423 | ) 2424 | (pin "1" (uuid 82e900d5-9687-4414-af0e-21d98aee6452)) 2425 | (pin "2" (uuid 0e2b4c97-a564-4363-8cc9-3ff57136fa61)) 2426 | ) 2427 | 2428 | (symbol (lib_id "Device:C") (at 170.815 54.61 0) (unit 1) 2429 | (in_bom yes) (on_board yes) (fields_autoplaced) 2430 | (uuid 7f6d4dae-8da0-4354-a922-930d6dbd668e) 2431 | (property "Reference" "C5" (id 0) (at 173.99 53.3399 0) 2432 | (effects (font (size 1.27 1.27)) (justify left)) 2433 | ) 2434 | (property "Value" "10nF" (id 1) (at 173.99 55.8799 0) 2435 | (effects (font (size 1.27 1.27)) (justify left)) 2436 | ) 2437 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 171.7802 58.42 0) 2438 | (effects (font (size 1.27 1.27)) hide) 2439 | ) 2440 | (property "Datasheet" "~" (id 3) (at 170.815 54.61 0) 2441 | (effects (font (size 1.27 1.27)) hide) 2442 | ) 2443 | (pin "1" (uuid 7133b922-d879-4699-b7a9-9756e66c1d3b)) 2444 | (pin "2" (uuid d8acde9d-0d67-4396-89a7-0c9a8ffa64fd)) 2445 | ) 2446 | 2447 | (symbol (lib_id "Regulator_Linear:TC2014-3.3VxCTTR") (at 144.78 116.84 0) (unit 1) 2448 | (in_bom yes) (on_board yes) (fields_autoplaced) 2449 | (uuid 834aa2b6-a999-41a3-bbad-701366e676b1) 2450 | (property "Reference" "U2" (id 0) (at 144.78 106.68 0)) 2451 | (property "Value" "TC2014-3.3VxCTTR" (id 1) (at 144.78 109.22 0)) 2452 | (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 144.78 108.585 0) 2453 | (effects (font (size 1.27 1.27)) hide) 2454 | ) 2455 | (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21662F.pdf" (id 3) (at 144.78 116.84 0) 2456 | (effects (font (size 1.27 1.27)) hide) 2457 | ) 2458 | (pin "1" (uuid deafc421-f1f9-42d6-a78e-3d5acada38e5)) 2459 | (pin "2" (uuid ad17fd58-3481-4071-a67d-c0c767b23050)) 2460 | (pin "3" (uuid 2da61b4c-454c-48a3-a0cc-5e7fd6ff3cc3)) 2461 | (pin "4" (uuid 495228fe-fc8f-457e-958c-d897f0e67388)) 2462 | (pin "5" (uuid af90eea0-5fb9-4e56-8f45-5ede5d49b1aa)) 2463 | ) 2464 | 2465 | (symbol (lib_id "power:GND") (at 170.815 58.42 0) (unit 1) 2466 | (in_bom yes) (on_board yes) 2467 | (uuid 848bbd9c-6942-4485-9044-e1b2710347d5) 2468 | (property "Reference" "#PWR0111" (id 0) (at 170.815 64.77 0) 2469 | (effects (font (size 1.27 1.27)) hide) 2470 | ) 2471 | (property "Value" "GND" (id 1) (at 173.355 62.865 90) 2472 | (effects (font (size 1.27 1.27)) (justify left)) 2473 | ) 2474 | (property "Footprint" "" (id 2) (at 170.815 58.42 0) 2475 | (effects (font (size 1.27 1.27)) hide) 2476 | ) 2477 | (property "Datasheet" "" (id 3) (at 170.815 58.42 0) 2478 | (effects (font (size 1.27 1.27)) hide) 2479 | ) 2480 | (pin "1" (uuid b9c78434-7269-4c40-ab27-fc87255d0a15)) 2481 | ) 2482 | 2483 | (symbol (lib_id "power:GND") (at 184.785 58.42 0) (unit 1) 2484 | (in_bom yes) (on_board yes) 2485 | (uuid 876681eb-30ff-46c3-b0b7-0b6a7582ce65) 2486 | (property "Reference" "#PWR0106" (id 0) (at 184.785 64.77 0) 2487 | (effects (font (size 1.27 1.27)) hide) 2488 | ) 2489 | (property "Value" "GND" (id 1) (at 187.325 62.865 90) 2490 | (effects (font (size 1.27 1.27)) (justify left)) 2491 | ) 2492 | (property "Footprint" "" (id 2) (at 184.785 58.42 0) 2493 | (effects (font (size 1.27 1.27)) hide) 2494 | ) 2495 | (property "Datasheet" "" (id 3) (at 184.785 58.42 0) 2496 | (effects (font (size 1.27 1.27)) hide) 2497 | ) 2498 | (pin "1" (uuid 74693fdf-dae1-48b6-a99f-c18ecf6d1176)) 2499 | ) 2500 | 2501 | (symbol (lib_id "power:GND") (at 189.23 99.06 0) (unit 1) 2502 | (in_bom yes) (on_board yes) 2503 | (uuid 8cb5cafa-cea1-4c81-8ada-5268bb64db57) 2504 | (property "Reference" "#PWR0109" (id 0) (at 189.23 105.41 0) 2505 | (effects (font (size 1.27 1.27)) hide) 2506 | ) 2507 | (property "Value" "GND" (id 1) (at 191.77 103.505 90) 2508 | (effects (font (size 1.27 1.27)) (justify left)) 2509 | ) 2510 | (property "Footprint" "" (id 2) (at 189.23 99.06 0) 2511 | (effects (font (size 1.27 1.27)) hide) 2512 | ) 2513 | (property "Datasheet" "" (id 3) (at 189.23 99.06 0) 2514 | (effects (font (size 1.27 1.27)) hide) 2515 | ) 2516 | (pin "1" (uuid 57e1060e-f19f-449d-9d00-60c0da22fc78)) 2517 | ) 2518 | 2519 | (symbol (lib_id "power:+3.3V") (at 239.395 85.09 270) (unit 1) 2520 | (in_bom yes) (on_board yes) (fields_autoplaced) 2521 | (uuid 961f5f44-3ad5-4341-a5f3-9b5e2aad6bee) 2522 | (property "Reference" "#PWR0101" (id 0) (at 235.585 85.09 0) 2523 | (effects (font (size 1.27 1.27)) hide) 2524 | ) 2525 | (property "Value" "+3.3V" (id 1) (at 242.57 85.0899 90) 2526 | (effects (font (size 1.27 1.27)) (justify left)) 2527 | ) 2528 | (property "Footprint" "" (id 2) (at 239.395 85.09 0) 2529 | (effects (font (size 1.27 1.27)) hide) 2530 | ) 2531 | (property "Datasheet" "" (id 3) (at 239.395 85.09 0) 2532 | (effects (font (size 1.27 1.27)) hide) 2533 | ) 2534 | (pin "1" (uuid 8e1d5165-78d3-4031-93d7-de2673fc9891)) 2535 | ) 2536 | 2537 | (symbol (lib_id "Device:C") (at 184.785 54.61 0) (unit 1) 2538 | (in_bom yes) (on_board yes) (fields_autoplaced) 2539 | (uuid 96867668-7bed-470a-ba64-838141ae6f34) 2540 | (property "Reference" "C6" (id 0) (at 187.96 53.3399 0) 2541 | (effects (font (size 1.27 1.27)) (justify left)) 2542 | ) 2543 | (property "Value" "10nF" (id 1) (at 187.96 55.8799 0) 2544 | (effects (font (size 1.27 1.27)) (justify left)) 2545 | ) 2546 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 185.7502 58.42 0) 2547 | (effects (font (size 1.27 1.27)) hide) 2548 | ) 2549 | (property "Datasheet" "~" (id 3) (at 184.785 54.61 0) 2550 | (effects (font (size 1.27 1.27)) hide) 2551 | ) 2552 | (pin "1" (uuid b704935d-39c2-4577-893c-3966119b1cd6)) 2553 | (pin "2" (uuid 3822ad7e-2aae-4b20-a8d7-875b69e67ca4)) 2554 | ) 2555 | 2556 | (symbol (lib_id "Device:LED") (at 137.795 64.77 0) (unit 1) 2557 | (in_bom yes) (on_board yes) (fields_autoplaced) 2558 | (uuid 970b938f-b17e-4219-8486-5e9e634d63af) 2559 | (property "Reference" "D2" (id 0) (at 136.2075 57.785 0)) 2560 | (property "Value" "LED" (id 1) (at 136.2075 60.325 0)) 2561 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 137.795 64.77 0) 2562 | (effects (font (size 1.27 1.27)) hide) 2563 | ) 2564 | (property "Datasheet" "~" (id 3) (at 137.795 64.77 0) 2565 | (effects (font (size 1.27 1.27)) hide) 2566 | ) 2567 | (pin "1" (uuid 74ede3b6-1a9f-4216-b76e-c1e0e0f1cc60)) 2568 | (pin "2" (uuid 8ebb6f61-f01f-4e9d-8521-8366a801bbdc)) 2569 | ) 2570 | 2571 | (symbol (lib_id "power:+3.3V") (at 164.465 114.3 0) (unit 1) 2572 | (in_bom yes) (on_board yes) (fields_autoplaced) 2573 | (uuid 9814de10-481d-4340-b2bb-a842061f50f5) 2574 | (property "Reference" "#PWR0113" (id 0) (at 164.465 118.11 0) 2575 | (effects (font (size 1.27 1.27)) hide) 2576 | ) 2577 | (property "Value" "+3.3V" (id 1) (at 164.465 109.22 0)) 2578 | (property "Footprint" "" (id 2) (at 164.465 114.3 0) 2579 | (effects (font (size 1.27 1.27)) hide) 2580 | ) 2581 | (property "Datasheet" "" (id 3) (at 164.465 114.3 0) 2582 | (effects (font (size 1.27 1.27)) hide) 2583 | ) 2584 | (pin "1" (uuid 71b76063-c4be-4ecd-abae-981959f5fd2f)) 2585 | ) 2586 | 2587 | (symbol (lib_id "power:GND") (at 156.21 161.29 0) (unit 1) 2588 | (in_bom yes) (on_board yes) (fields_autoplaced) 2589 | (uuid 990abc98-4640-4b98-b23a-d281e74d8f9b) 2590 | (property "Reference" "#PWR0126" (id 0) (at 156.21 167.64 0) 2591 | (effects (font (size 1.27 1.27)) hide) 2592 | ) 2593 | (property "Value" "GND" (id 1) (at 156.21 166.37 0)) 2594 | (property "Footprint" "" (id 2) (at 156.21 161.29 0) 2595 | (effects (font (size 1.27 1.27)) hide) 2596 | ) 2597 | (property "Datasheet" "" (id 3) (at 156.21 161.29 0) 2598 | (effects (font (size 1.27 1.27)) hide) 2599 | ) 2600 | (pin "1" (uuid fbf1616f-f73a-4461-90e0-a25bddc3f53e)) 2601 | ) 2602 | 2603 | (symbol (lib_id "power:+BATT") (at 124.46 114.3 0) (unit 1) 2604 | (in_bom yes) (on_board yes) (fields_autoplaced) 2605 | (uuid a5e0b7ec-14f6-450e-a6c2-787c841df363) 2606 | (property "Reference" "#PWR012" (id 0) (at 124.46 118.11 0) 2607 | (effects (font (size 1.27 1.27)) hide) 2608 | ) 2609 | (property "Value" "+BATT" (id 1) (at 126.365 113.0299 0) 2610 | (effects (font (size 1.27 1.27)) (justify left)) 2611 | ) 2612 | (property "Footprint" "" (id 2) (at 124.46 114.3 0) 2613 | (effects (font (size 1.27 1.27)) hide) 2614 | ) 2615 | (property "Datasheet" "" (id 3) (at 124.46 114.3 0) 2616 | (effects (font (size 1.27 1.27)) hide) 2617 | ) 2618 | (pin "1" (uuid b4e6f388-4a04-45ac-811e-bea7f5c3b7db)) 2619 | ) 2620 | 2621 | (symbol (lib_id "power:GND") (at 123.19 180.34 0) (unit 1) 2622 | (in_bom yes) (on_board yes) (fields_autoplaced) 2623 | (uuid a79b61df-69cd-492d-addc-60db485b1c16) 2624 | (property "Reference" "#PWR0125" (id 0) (at 123.19 186.69 0) 2625 | (effects (font (size 1.27 1.27)) hide) 2626 | ) 2627 | (property "Value" "GND" (id 1) (at 123.19 185.42 0)) 2628 | (property "Footprint" "" (id 2) (at 123.19 180.34 0) 2629 | (effects (font (size 1.27 1.27)) hide) 2630 | ) 2631 | (property "Datasheet" "" (id 3) (at 123.19 180.34 0) 2632 | (effects (font (size 1.27 1.27)) hide) 2633 | ) 2634 | (pin "1" (uuid 9a917dd1-e36f-40c9-ac6e-58d602363674)) 2635 | ) 2636 | 2637 | (symbol (lib_id "power:+BATT") (at 32.385 159.385 90) (unit 1) 2638 | (in_bom yes) (on_board yes) (fields_autoplaced) 2639 | (uuid aa3263aa-da37-4062-a6ac-cf4affa19d90) 2640 | (property "Reference" "#PWR02" (id 0) (at 36.195 159.385 0) 2641 | (effects (font (size 1.27 1.27)) hide) 2642 | ) 2643 | (property "Value" "+BATT" (id 1) (at 33.02 159.3849 90) 2644 | (effects (font (size 1.27 1.27)) (justify right)) 2645 | ) 2646 | (property "Footprint" "" (id 2) (at 32.385 159.385 0) 2647 | (effects (font (size 1.27 1.27)) hide) 2648 | ) 2649 | (property "Datasheet" "" (id 3) (at 32.385 159.385 0) 2650 | (effects (font (size 1.27 1.27)) hide) 2651 | ) 2652 | (pin "1" (uuid 04a07204-f707-4da4-afeb-72cba4cb522c)) 2653 | ) 2654 | 2655 | (symbol (lib_id "power:GND") (at 90.805 181.61 0) (unit 1) 2656 | (in_bom yes) (on_board yes) (fields_autoplaced) 2657 | (uuid ad309923-9da0-4247-ba88-a46e0227807b) 2658 | (property "Reference" "#PWR0127" (id 0) (at 90.805 187.96 0) 2659 | (effects (font (size 1.27 1.27)) hide) 2660 | ) 2661 | (property "Value" "GND" (id 1) (at 90.805 186.69 0)) 2662 | (property "Footprint" "" (id 2) (at 90.805 181.61 0) 2663 | (effects (font (size 1.27 1.27)) hide) 2664 | ) 2665 | (property "Datasheet" "" (id 3) (at 90.805 181.61 0) 2666 | (effects (font (size 1.27 1.27)) hide) 2667 | ) 2668 | (pin "1" (uuid 286f2cfb-91b4-4d45-9593-ee440e58d8aa)) 2669 | ) 2670 | 2671 | (symbol (lib_id "power:GND") (at 242.57 95.885 90) (unit 1) 2672 | (in_bom yes) (on_board yes) 2673 | (uuid aef4612b-be87-494d-9080-7ea71d7f25b4) 2674 | (property "Reference" "#PWR0102" (id 0) (at 248.92 95.885 0) 2675 | (effects (font (size 1.27 1.27)) hide) 2676 | ) 2677 | (property "Value" "GND" (id 1) (at 247.015 93.345 90) 2678 | (effects (font (size 1.27 1.27)) (justify left)) 2679 | ) 2680 | (property "Footprint" "" (id 2) (at 242.57 95.885 0) 2681 | (effects (font (size 1.27 1.27)) hide) 2682 | ) 2683 | (property "Datasheet" "" (id 3) (at 242.57 95.885 0) 2684 | (effects (font (size 1.27 1.27)) hide) 2685 | ) 2686 | (pin "1" (uuid b3dd8c8e-0d94-4d5f-b72e-e8d2fe87da6f)) 2687 | ) 2688 | 2689 | (symbol (lib_id "ic:2450FM07D0034T") (at 244.475 120.015 0) (unit 1) 2690 | (in_bom yes) (on_board yes) 2691 | (uuid b16f83c9-0ae1-4a14-8a2a-ca08d317ae40) 2692 | (property "Reference" "FL1" (id 0) (at 262.89 109.855 0)) 2693 | (property "Value" "2450FM07D0034T" (id 1) (at 263.525 112.395 0)) 2694 | (property "Footprint" "ic_footprint:FILTER-SMD_4P-L1.0-W0.5-L" (id 2) (at 230.505 98.425 0) 2695 | (effects (font (size 1.27 1.27)) hide) 2696 | ) 2697 | (property "Datasheet" "" (id 3) (at 244.475 114.681 0) 2698 | (effects (font (size 1.27 1.27)) hide) 2699 | ) 2700 | (property "SuppliersPartNumber" "C2651081" (id 4) (at 244.475 119.761 0) 2701 | (effects (font (size 1.27 1.27)) hide) 2702 | ) 2703 | (property "uuid" "std:e2e477ab668d4cbb88af09cfe34b9ff4" (id 5) (at 244.475 108.585 0) 2704 | (effects (font (size 1.27 1.27)) hide) 2705 | ) 2706 | (pin "1" (uuid f3d0d91b-400d-4e51-bd3b-9ea4ffb4d085)) 2707 | (pin "2" (uuid 4bdcc1ab-79ad-4422-8fdd-1d87ae9a32db)) 2708 | (pin "3" (uuid 7a43e129-2831-4714-8408-bc59ae3cff4f)) 2709 | (pin "4" (uuid b01e56d3-9259-45e0-978f-351bf876d276)) 2710 | ) 2711 | 2712 | (symbol (lib_id "Device:Crystal_GND24_Small") (at 184.785 72.39 90) (unit 1) 2713 | (in_bom yes) (on_board yes) 2714 | (uuid b2837d6b-6cc1-45c4-aa75-fd2bb220208e) 2715 | (property "Reference" "Y1" (id 0) (at 182.245 69.215 90)) 2716 | (property "Value" "Crystal_GND24_Small" (id 1) (at 177.165 66.04 90)) 2717 | (property "Footprint" "Crystal:Crystal_SMD_2520-4Pin_2.5x2.0mm" (id 2) (at 184.785 72.39 0) 2718 | (effects (font (size 1.27 1.27)) hide) 2719 | ) 2720 | (property "Datasheet" "~" (id 3) (at 184.785 72.39 0) 2721 | (effects (font (size 1.27 1.27)) hide) 2722 | ) 2723 | (pin "1" (uuid 95ef5708-8f43-434f-b139-406a942bfd2d)) 2724 | (pin "2" (uuid 52113c98-6292-463e-b72c-6132239a046a)) 2725 | (pin "3" (uuid 28a2cccb-c5e0-45cc-a452-0336e0813126)) 2726 | (pin "4" (uuid 475da62c-4191-4a2f-9bbc-249deb6d8df7)) 2727 | ) 2728 | 2729 | (symbol (lib_id "Connector_Generic_MountingPin:Conn_01x03_MountingPin") (at 95.885 160.655 0) (unit 1) 2730 | (in_bom yes) (on_board yes) (fields_autoplaced) 2731 | (uuid b5c3c9d0-ec17-4b2d-a907-21387c1b8c94) 2732 | (property "Reference" "J2" (id 0) (at 99.06 161.0105 0) 2733 | (effects (font (size 1.27 1.27)) (justify left)) 2734 | ) 2735 | (property "Value" "Conn_01x03_MountingPin" (id 1) (at 98.425 162.2805 0) 2736 | (effects (font (size 1.27 1.27)) (justify left) hide) 2737 | ) 2738 | (property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal" (id 2) (at 95.885 160.655 0) 2739 | (effects (font (size 1.27 1.27)) hide) 2740 | ) 2741 | (property "Datasheet" "~" (id 3) (at 95.885 160.655 0) 2742 | (effects (font (size 1.27 1.27)) hide) 2743 | ) 2744 | (pin "1" (uuid 6a5f18c6-e2b7-4007-99ff-ad78070d49ed)) 2745 | (pin "2" (uuid 5705008f-35ee-447f-a2c4-904f9636b8f8)) 2746 | (pin "3" (uuid 58e1486c-f975-4b06-b64d-2d84517a9ace)) 2747 | (pin "MP" (uuid 51006d57-093f-4aed-8370-855bc63732c0)) 2748 | ) 2749 | 2750 | (symbol (lib_id "RF_Module:ESP32-PICO-D4") (at 73.66 90.17 0) (unit 1) 2751 | (in_bom yes) (on_board yes) (fields_autoplaced) 2752 | (uuid c07eebcc-30d2-439d-8030-faea6ade4486) 2753 | (property "Reference" "U1" (id 0) (at 75.6794 130.81 0) 2754 | (effects (font (size 1.27 1.27)) (justify left)) 2755 | ) 2756 | (property "Value" "ESP32-PICO-D4" (id 1) (at 75.6794 133.35 0) 2757 | (effects (font (size 1.27 1.27)) (justify left)) 2758 | ) 2759 | (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm" (id 2) (at 73.66 133.35 0) 2760 | (effects (font (size 1.27 1.27)) hide) 2761 | ) 2762 | (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf" (id 3) (at 80.01 115.57 0) 2763 | (effects (font (size 1.27 1.27)) hide) 2764 | ) 2765 | (pin "1" (uuid 96315415-cfed-47d2-b3dd-d782358bd0df)) 2766 | (pin "10" (uuid 46cbe85d-ff47-428e-b187-4ebd50a66e0c)) 2767 | (pin "11" (uuid 015f5586-ba76-4a98-9114-f5cd2c67134d)) 2768 | (pin "12" (uuid 541721d1-074b-496e-a833-813044b3e8ca)) 2769 | (pin "13" (uuid d05faa1f-5f69-41bf-86d3-2cd224432e1b)) 2770 | (pin "14" (uuid 2f424da3-8fae-4941-bc6d-20044787372f)) 2771 | (pin "15" (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)) 2772 | (pin "16" (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)) 2773 | (pin "17" (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)) 2774 | (pin "18" (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)) 2775 | (pin "19" (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)) 2776 | (pin "2" (uuid 42d3f9d6-2a47-41a8-b942-295fcb83bcd8)) 2777 | (pin "20" (uuid 7bea05d4-1dec-4cd6-aa53-302dde803254)) 2778 | (pin "21" (uuid a5362821-c161-4c7a-a00c-40e1d7472d56)) 2779 | (pin "22" (uuid 1cc5480b-56b7-4379-98e2-ccafc88911a7)) 2780 | (pin "23" (uuid 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45)) 2781 | (pin "24" (uuid 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb)) 2782 | (pin "25" (uuid ca6e2466-a90a-4dab-be16-b070610e5087)) 2783 | (pin "26" (uuid d18f2428-546f-4066-8ffb-7653303685db)) 2784 | (pin "27" (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)) 2785 | (pin "28" (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)) 2786 | (pin "29" (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)) 2787 | (pin "3" (uuid e76ec524-408a-4daa-89f6-0edfdbcfb621)) 2788 | (pin "30" (uuid 78b44915-d68e-4488-a873-34767153ef98)) 2789 | (pin "31" (uuid 3993c707-5291-41b6-83c0-d1c09cb3833a)) 2790 | (pin "32" (uuid 17ff35b3-d658-499b-9a46-ea36063fed4e)) 2791 | (pin "33" (uuid d13b0eae-4711-4325-a6bb-aa8e3646e86e)) 2792 | (pin "34" (uuid a917c6d9-225d-4c90-bf25-fe8eff8abd3f)) 2793 | (pin "35" (uuid 89a3dae6-dcb5-435b-a383-656b6a19a316)) 2794 | (pin "36" (uuid b54cae5b-c17c-4ed7-b249-2e7d5e83609a)) 2795 | (pin "37" (uuid 26bc8641-9bca-4204-9709-deedbe202a36)) 2796 | (pin "38" (uuid fd5f7d77-0f73-4021-88a8-0641f0fe8d98)) 2797 | (pin "39" (uuid 1755646e-fc08-4e43-a301-d9b3ea704cf6)) 2798 | (pin "4" (uuid 1317ff66-8ecf-46c9-9612-8d2eae03c537)) 2799 | (pin "40" (uuid ef4533db-6ea4-4b68-b436-8e9575be570d)) 2800 | (pin "41" (uuid f5dba25f-5f9b-4770-84f9-c038fb119360)) 2801 | (pin "42" (uuid 8aff0f38-92a8-45ec-b106-b185e93ca3fd)) 2802 | (pin "43" (uuid 63caf46e-0228-40de-b819-c6bd29dd1711)) 2803 | (pin "44" (uuid a7fc0812-140f-4d96-9cd8-ead8c1c610b1)) 2804 | (pin "45" (uuid 94a10cae-6ef2-4b64-9d98-fb22aa3306cc)) 2805 | (pin "46" (uuid f33ec0db-ef0f-4576-8054-2833161a8f30)) 2806 | (pin "47" (uuid 0ba17a9b-d889-426c-b4fe-048bed6b6be8)) 2807 | (pin "48" (uuid 761c8e29-382a-475c-a37a-7201cc9cd0f5)) 2808 | (pin "49" (uuid e50c80c5-80c4-46a3-8c1e-c9c3a71a0934)) 2809 | (pin "5" (uuid 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12)) 2810 | (pin "6" (uuid df83f395-2d18-47e2-a370-952ca41c2b3a)) 2811 | (pin "7" (uuid 653a86ba-a1ae-4175-9d4c-c788087956d0)) 2812 | (pin "8" (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)) 2813 | (pin "9" (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)) 2814 | ) 2815 | 2816 | (symbol (lib_id "power:+3.3V") (at 68.58 42.545 0) (unit 1) 2817 | (in_bom yes) (on_board yes) (fields_autoplaced) 2818 | (uuid c424557c-de60-43fc-9d3b-22dc03bfab6a) 2819 | (property "Reference" "#PWR0115" (id 0) (at 68.58 46.355 0) 2820 | (effects (font (size 1.27 1.27)) hide) 2821 | ) 2822 | (property "Value" "+3.3V" (id 1) (at 68.58 37.465 0)) 2823 | (property "Footprint" "" (id 2) (at 68.58 42.545 0) 2824 | (effects (font (size 1.27 1.27)) hide) 2825 | ) 2826 | (property "Datasheet" "" (id 3) (at 68.58 42.545 0) 2827 | (effects (font (size 1.27 1.27)) hide) 2828 | ) 2829 | (pin "1" (uuid b1d333e1-f345-456c-9fe2-f6d98686abb9)) 2830 | ) 2831 | 2832 | (symbol (lib_id "Device:Antenna") (at 262.255 120.015 270) (unit 1) 2833 | (in_bom yes) (on_board yes) (fields_autoplaced) 2834 | (uuid c8e59e3c-90e9-4055-b7f1-626c5957e4dc) 2835 | (property "Reference" "AE1" (id 0) (at 266.065 118.7449 90) 2836 | (effects (font (size 1.27 1.27)) (justify left)) 2837 | ) 2838 | (property "Value" "Antenna" (id 1) (at 266.065 121.2849 90) 2839 | (effects (font (size 1.27 1.27)) (justify left)) 2840 | ) 2841 | (property "Footprint" "RF_Antenna:Johanson_2450AT43F0100" (id 2) (at 262.255 120.015 0) 2842 | (effects (font (size 1.27 1.27)) hide) 2843 | ) 2844 | (property "Datasheet" "~" (id 3) (at 262.255 120.015 0) 2845 | (effects (font (size 1.27 1.27)) hide) 2846 | ) 2847 | (pin "1" (uuid 302ed984-4050-45b3-a2da-0798b2ab4101)) 2848 | ) 2849 | 2850 | (symbol (lib_id "power:GND") (at 123.19 163.83 0) (unit 1) 2851 | (in_bom yes) (on_board yes) (fields_autoplaced) 2852 | (uuid d353fc62-fa55-4813-ab51-06b8279e57b2) 2853 | (property "Reference" "#PWR0124" (id 0) (at 123.19 170.18 0) 2854 | (effects (font (size 1.27 1.27)) hide) 2855 | ) 2856 | (property "Value" "GND" (id 1) (at 123.19 168.91 0)) 2857 | (property "Footprint" "" (id 2) (at 123.19 163.83 0) 2858 | (effects (font (size 1.27 1.27)) hide) 2859 | ) 2860 | (property "Datasheet" "" (id 3) (at 123.19 163.83 0) 2861 | (effects (font (size 1.27 1.27)) hide) 2862 | ) 2863 | (pin "1" (uuid ebe1dfbb-23e6-4cd8-a26f-2048dd640c08)) 2864 | ) 2865 | 2866 | (symbol (lib_id "ic:SX1280IMLTRT") (at 212.09 74.93 0) (unit 1) 2867 | (in_bom yes) (on_board yes) (fields_autoplaced) 2868 | (uuid d3cf50da-ccd2-4275-a96e-96fa1406a76f) 2869 | (property "Reference" "U3" (id 0) (at 212.09 52.07 0)) 2870 | (property "Value" "SX1280IMLTRT" (id 1) (at 212.09 54.61 0)) 2871 | (property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm" (id 2) (at 213.36 52.07 0) 2872 | (effects (font (size 1.27 1.27)) hide) 2873 | ) 2874 | (property "Datasheet" "http://www.szlcsc.com/product/details_137249.html" (id 3) (at 214.63 55.88 0) 2875 | (effects (font (size 1.27 1.27)) hide) 2876 | ) 2877 | (property "SuppliersPartNumber" "C125969" (id 4) (at 212.09 69.723 0) 2878 | (effects (font (size 1.27 1.27)) hide) 2879 | ) 2880 | (property "uuid" "std:6c56964dcc7b4bbb8a3ac984926bf97a" (id 5) (at 213.36 46.99 0) 2881 | (effects (font (size 1.27 1.27)) hide) 2882 | ) 2883 | (pin "1" (uuid bb213fb6-ec44-4fcc-bd20-605a77a0d7ae)) 2884 | (pin "10" (uuid dcce4097-9bd3-4c2e-9c41-437ea952205d)) 2885 | (pin "11" (uuid daec98f5-f6e0-49c3-aff7-329e233501b1)) 2886 | (pin "12" (uuid a60b66d2-6b94-4025-8b60-115e2138380c)) 2887 | (pin "13" (uuid 7d1cdbd8-6ffc-41b5-b526-bf8f3d6e9d25)) 2888 | (pin "14" (uuid 5a633bf4-dc0a-4b80-934f-43c4e5b2cc22)) 2889 | (pin "15" (uuid f75f55a0-a1fb-4e0c-9bdc-154f70ac08e9)) 2890 | (pin "16" (uuid 4504d92c-a7a5-4982-b7de-cd329a69956a)) 2891 | (pin "17" (uuid f48ffe9d-4c2e-4c72-bcf2-fe5e8c00a21a)) 2892 | (pin "18" (uuid 3d2455d4-5e3c-4316-b501-9518dbcca7c5)) 2893 | (pin "19" (uuid 644d3410-03f7-44e8-8957-292853d8e191)) 2894 | (pin "2" (uuid 7db4f375-9a1a-4d54-a9d2-681ba6801e2c)) 2895 | (pin "20" (uuid 4f03a431-2354-4a27-8b53-7488182e5e62)) 2896 | (pin "21" (uuid d0ee14f8-986e-4846-af72-46b1082ebda6)) 2897 | (pin "22" (uuid 2f203728-398f-4a7d-93d9-09d460a4d3a1)) 2898 | (pin "23" (uuid be775f95-7f9a-483f-8bcf-6d3d28f19d8a)) 2899 | (pin "24" (uuid edfd45ac-9d28-490f-b08e-bbf15e9e13fd)) 2900 | (pin "25" (uuid 79a75637-798b-428b-b37c-9389ff775ff8)) 2901 | (pin "3" (uuid 80c6fdb5-d071-45eb-aad2-3d3fa711b220)) 2902 | (pin "4" (uuid 92cd61f8-f96b-4d41-b888-03059ddbf12d)) 2903 | (pin "5" (uuid 1c72ccfc-7bf5-4c70-b511-58b29629daa0)) 2904 | (pin "6" (uuid aa364c69-7e78-4296-91ab-19054c7aac45)) 2905 | (pin "7" (uuid a7e01e6f-f20a-403c-b726-cad216c51172)) 2906 | (pin "8" (uuid c7390e52-2506-4528-9d57-e0c903d55cc4)) 2907 | (pin "9" (uuid 968b78ba-281b-4ce3-9a61-34f878cc26b8)) 2908 | ) 2909 | 2910 | (symbol (lib_id "power:GND") (at 45.085 62.865 0) (unit 1) 2911 | (in_bom yes) (on_board yes) (fields_autoplaced) 2912 | (uuid d6bee790-2111-4887-81d8-44accd303515) 2913 | (property "Reference" "#PWR0119" (id 0) (at 45.085 69.215 0) 2914 | (effects (font (size 1.27 1.27)) hide) 2915 | ) 2916 | (property "Value" "GND" (id 1) (at 45.085 67.945 0)) 2917 | (property "Footprint" "" (id 2) (at 45.085 62.865 0) 2918 | (effects (font (size 1.27 1.27)) hide) 2919 | ) 2920 | (property "Datasheet" "" (id 3) (at 45.085 62.865 0) 2921 | (effects (font (size 1.27 1.27)) hide) 2922 | ) 2923 | (pin "1" (uuid 8ae5183b-1423-4c20-8f5c-7722cdb58e01)) 2924 | ) 2925 | 2926 | (symbol (lib_id "power:GND") (at 168.91 166.37 90) (unit 1) 2927 | (in_bom yes) (on_board yes) (fields_autoplaced) 2928 | (uuid d88d6e1b-abb6-4e16-97f9-082efbb16e81) 2929 | (property "Reference" "#PWR0131" (id 0) (at 175.26 166.37 0) 2930 | (effects (font (size 1.27 1.27)) hide) 2931 | ) 2932 | (property "Value" "GND" (id 1) (at 172.085 166.3699 90) 2933 | (effects (font (size 1.27 1.27)) (justify right)) 2934 | ) 2935 | (property "Footprint" "" (id 2) (at 168.91 166.37 0) 2936 | (effects (font (size 1.27 1.27)) hide) 2937 | ) 2938 | (property "Datasheet" "" (id 3) (at 168.91 166.37 0) 2939 | (effects (font (size 1.27 1.27)) hide) 2940 | ) 2941 | (pin "1" (uuid d6050873-0f1e-47e2-8a5b-59fc52811a70)) 2942 | ) 2943 | 2944 | (symbol (lib_id "Device:C") (at 180.975 91.44 0) (mirror y) (unit 1) 2945 | (in_bom yes) (on_board yes) 2946 | (uuid e07b5d47-5075-497d-878c-7f9c18182e8f) 2947 | (property "Reference" "C9" (id 0) (at 184.15 90.1699 0) 2948 | (effects (font (size 1.27 1.27)) (justify right)) 2949 | ) 2950 | (property "Value" "0.1uF" (id 1) (at 173.355 93.98 0) 2951 | (effects (font (size 1.27 1.27)) (justify right)) 2952 | ) 2953 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 180.0098 95.25 0) 2954 | (effects (font (size 1.27 1.27)) hide) 2955 | ) 2956 | (property "Datasheet" "~" (id 3) (at 180.975 91.44 0) 2957 | (effects (font (size 1.27 1.27)) hide) 2958 | ) 2959 | (pin "1" (uuid 91a69c4b-90d8-4fae-b3b5-f9cdf735456b)) 2960 | (pin "2" (uuid e5929d51-8c78-423b-9a5e-a582459dd341)) 2961 | ) 2962 | 2963 | (symbol (lib_id "power:GND") (at 229.87 69.85 90) (unit 1) 2964 | (in_bom yes) (on_board yes) 2965 | (uuid e2bd05c0-e23c-4651-9073-b6a9ce1bb6a8) 2966 | (property "Reference" "#PWR0103" (id 0) (at 236.22 69.85 0) 2967 | (effects (font (size 1.27 1.27)) hide) 2968 | ) 2969 | (property "Value" "GND" (id 1) (at 236.855 69.85 90) 2970 | (effects (font (size 1.27 1.27)) (justify left)) 2971 | ) 2972 | (property "Footprint" "" (id 2) (at 229.87 69.85 0) 2973 | (effects (font (size 1.27 1.27)) hide) 2974 | ) 2975 | (property "Datasheet" "" (id 3) (at 229.87 69.85 0) 2976 | (effects (font (size 1.27 1.27)) hide) 2977 | ) 2978 | (pin "1" (uuid 81cb0137-745e-49ba-b6e6-f47f870b1554)) 2979 | ) 2980 | 2981 | (symbol (lib_id "power:+BATT") (at 208.28 142.875 0) (unit 1) 2982 | (in_bom yes) (on_board yes) (fields_autoplaced) 2983 | (uuid e5005f02-7e9e-4131-bc30-1c6f3677b486) 2984 | (property "Reference" "#PWR0117" (id 0) (at 208.28 146.685 0) 2985 | (effects (font (size 1.27 1.27)) hide) 2986 | ) 2987 | (property "Value" "+BATT" (id 1) (at 210.185 141.6049 0) 2988 | (effects (font (size 1.27 1.27)) (justify left)) 2989 | ) 2990 | (property "Footprint" "" (id 2) (at 208.28 142.875 0) 2991 | (effects (font (size 1.27 1.27)) hide) 2992 | ) 2993 | (property "Datasheet" "" (id 3) (at 208.28 142.875 0) 2994 | (effects (font (size 1.27 1.27)) hide) 2995 | ) 2996 | (pin "1" (uuid 382105bb-c8c4-45f3-8c20-265004455e7b)) 2997 | ) 2998 | 2999 | (symbol (lib_id "power:GND") (at 111.76 59.69 90) (unit 1) 3000 | (in_bom yes) (on_board yes) (fields_autoplaced) 3001 | (uuid e7b8f5bf-ab0f-41c5-b3e5-81384fae55ec) 3002 | (property "Reference" "#PWR01" (id 0) (at 118.11 59.69 0) 3003 | (effects (font (size 1.27 1.27)) hide) 3004 | ) 3005 | (property "Value" "GND" (id 1) (at 115.57 59.6899 90) 3006 | (effects (font (size 1.27 1.27)) (justify right)) 3007 | ) 3008 | (property "Footprint" "" (id 2) (at 111.76 59.69 0) 3009 | (effects (font (size 1.27 1.27)) hide) 3010 | ) 3011 | (property "Datasheet" "" (id 3) (at 111.76 59.69 0) 3012 | (effects (font (size 1.27 1.27)) hide) 3013 | ) 3014 | (pin "1" (uuid fa053877-d3c9-4c21-9fc6-64175b7b449b)) 3015 | ) 3016 | 3017 | (symbol (lib_id "power:GND") (at 135.89 168.91 90) (unit 1) 3018 | (in_bom yes) (on_board yes) (fields_autoplaced) 3019 | (uuid e7d1fd1b-d0ba-4b58-b465-c3d172941afb) 3020 | (property "Reference" "#PWR0130" (id 0) (at 142.24 168.91 0) 3021 | (effects (font (size 1.27 1.27)) hide) 3022 | ) 3023 | (property "Value" "GND" (id 1) (at 139.065 168.9099 90) 3024 | (effects (font (size 1.27 1.27)) (justify right)) 3025 | ) 3026 | (property "Footprint" "" (id 2) (at 135.89 168.91 0) 3027 | (effects (font (size 1.27 1.27)) hide) 3028 | ) 3029 | (property "Datasheet" "" (id 3) (at 135.89 168.91 0) 3030 | (effects (font (size 1.27 1.27)) hide) 3031 | ) 3032 | (pin "1" (uuid 6dd637ac-8359-49a9-940e-c385507f39dd)) 3033 | ) 3034 | 3035 | (symbol (lib_id "power:GND") (at 244.475 132.715 0) (unit 1) 3036 | (in_bom yes) (on_board yes) 3037 | (uuid f6f1f533-5c8a-4431-96b4-c0f4fdde46b6) 3038 | (property "Reference" "#PWR0108" (id 0) (at 244.475 139.065 0) 3039 | (effects (font (size 1.27 1.27)) hide) 3040 | ) 3041 | (property "Value" "GND" (id 1) (at 248.285 134.62 0)) 3042 | (property "Footprint" "" (id 2) (at 244.475 132.715 0) 3043 | (effects (font (size 1.27 1.27)) hide) 3044 | ) 3045 | (property "Datasheet" "" (id 3) (at 244.475 132.715 0) 3046 | (effects (font (size 1.27 1.27)) hide) 3047 | ) 3048 | (pin "1" (uuid eccb0fdd-7dae-49e4-868a-c4ac45cbddec)) 3049 | ) 3050 | 3051 | (symbol (lib_id "Connector_Generic_MountingPin:Conn_01x03_MountingPin") (at 135.89 161.29 0) (unit 1) 3052 | (in_bom yes) (on_board yes) (fields_autoplaced) 3053 | (uuid fd681a1b-6533-4c92-9947-ab231034dbaf) 3054 | (property "Reference" "J4" (id 0) (at 138.43 161.6455 0) 3055 | (effects (font (size 1.27 1.27)) (justify left)) 3056 | ) 3057 | (property "Value" "Conn_01x03_MountingPin" (id 1) (at 138.43 162.9155 0) 3058 | (effects (font (size 1.27 1.27)) (justify left) hide) 3059 | ) 3060 | (property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal" (id 2) (at 135.89 161.29 0) 3061 | (effects (font (size 1.27 1.27)) hide) 3062 | ) 3063 | (property "Datasheet" "~" (id 3) (at 135.89 161.29 0) 3064 | (effects (font (size 1.27 1.27)) hide) 3065 | ) 3066 | (pin "1" (uuid 1f2bd4e7-c899-44df-864c-fb0ebf189609)) 3067 | (pin "2" (uuid 75ba5fcc-e6ee-47b6-bf6e-3046bf344802)) 3068 | (pin "3" (uuid 447b71e5-47ca-4768-b2e6-f0112107a672)) 3069 | (pin "MP" (uuid 72c96260-1891-4fce-9c8c-34ee6ea664d6)) 3070 | ) 3071 | 3072 | (symbol (lib_id "Connector_Generic_MountingPin:Conn_01x03_MountingPin") (at 168.91 158.75 0) (unit 1) 3073 | (in_bom yes) (on_board yes) (fields_autoplaced) 3074 | (uuid fe98c4bc-6c98-4479-b0a6-a0d2c29b1dfd) 3075 | (property "Reference" "J6" (id 0) (at 171.45 159.1055 0) 3076 | (effects (font (size 1.27 1.27)) (justify left)) 3077 | ) 3078 | (property "Value" "Conn_01x03_MountingPin" (id 1) (at 171.45 160.3755 0) 3079 | (effects (font (size 1.27 1.27)) (justify left) hide) 3080 | ) 3081 | (property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal" (id 2) (at 168.91 158.75 0) 3082 | (effects (font (size 1.27 1.27)) hide) 3083 | ) 3084 | (property "Datasheet" "~" (id 3) (at 168.91 158.75 0) 3085 | (effects (font (size 1.27 1.27)) hide) 3086 | ) 3087 | (pin "1" (uuid a2da46f7-707e-497c-ae79-533778f388e4)) 3088 | (pin "2" (uuid 4685ee54-e601-4408-9a70-96aebb27b60f)) 3089 | (pin "3" (uuid 0674a92a-26fe-4561-9f0d-18a8280a609d)) 3090 | (pin "MP" (uuid f04de1be-507a-4c6c-be13-10895a8c6ed4)) 3091 | ) 3092 | 3093 | (sheet_instances 3094 | (path "/" (page "1")) 3095 | ) 3096 | 3097 | (symbol_instances 3098 | (path "/e7b8f5bf-ab0f-41c5-b3e5-81384fae55ec" 3099 | (reference "#PWR01") (unit 1) (value "GND") (footprint "") 3100 | ) 3101 | (path "/aa3263aa-da37-4062-a6ac-cf4affa19d90" 3102 | (reference "#PWR02") (unit 1) (value "+BATT") (footprint "") 3103 | ) 3104 | (path "/3b246671-a530-4090-8468-2ab0bfe249c2" 3105 | (reference "#PWR04") (unit 1) (value "+BATT") (footprint "") 3106 | ) 3107 | (path "/1eae4f1a-0087-4c35-aea0-85ce11c817cb" 3108 | (reference "#PWR06") (unit 1) (value "+BATT") (footprint "") 3109 | ) 3110 | (path "/3cc80cd4-dd9b-42de-baca-ddefb8f66323" 3111 | (reference "#PWR08") (unit 1) (value "+BATT") (footprint "") 3112 | ) 3113 | (path "/270cb254-e2ae-4b16-8339-63efee80d541" 3114 | (reference "#PWR010") (unit 1) (value "+BATT") (footprint "") 3115 | ) 3116 | (path "/a5e0b7ec-14f6-450e-a6c2-787c841df363" 3117 | (reference "#PWR012") (unit 1) (value "+BATT") (footprint "") 3118 | ) 3119 | (path "/5d0fe36d-b1ed-47a1-99bd-9411ce462429" 3120 | (reference "#PWR014") (unit 1) (value "GND") (footprint "") 3121 | ) 3122 | (path "/961f5f44-3ad5-4341-a5f3-9b5e2aad6bee" 3123 | (reference "#PWR0101") (unit 1) (value "+3.3V") (footprint "") 3124 | ) 3125 | (path "/aef4612b-be87-494d-9080-7ea71d7f25b4" 3126 | (reference "#PWR0102") (unit 1) (value "GND") (footprint "") 3127 | ) 3128 | (path "/e2bd05c0-e23c-4651-9073-b6a9ce1bb6a8" 3129 | (reference "#PWR0103") (unit 1) (value "GND") (footprint "") 3130 | ) 3131 | (path "/34514a5c-2496-4e1c-ae54-cbb7fcd6182d" 3132 | (reference "#PWR0104") (unit 1) (value "GND") (footprint "") 3133 | ) 3134 | (path "/73fe65f2-4144-4379-8ed6-8ff6a5fab65b" 3135 | (reference "#PWR0105") (unit 1) (value "+3.3V") (footprint "") 3136 | ) 3137 | (path "/876681eb-30ff-46c3-b0b7-0b6a7582ce65" 3138 | (reference "#PWR0106") (unit 1) (value "GND") (footprint "") 3139 | ) 3140 | (path "/396422df-b562-4d2b-848d-58ceed0b310e" 3141 | (reference "#PWR0107") (unit 1) (value "GND") (footprint "") 3142 | ) 3143 | (path "/f6f1f533-5c8a-4431-96b4-c0f4fdde46b6" 3144 | (reference "#PWR0108") (unit 1) (value "GND") (footprint "") 3145 | ) 3146 | (path "/8cb5cafa-cea1-4c81-8ada-5268bb64db57" 3147 | (reference "#PWR0109") (unit 1) (value "GND") (footprint "") 3148 | ) 3149 | (path "/7d460f2d-be21-48d4-8c62-dcddd19d1a5d" 3150 | (reference "#PWR0110") (unit 1) (value "GND") (footprint "") 3151 | ) 3152 | (path "/848bbd9c-6942-4485-9044-e1b2710347d5" 3153 | (reference "#PWR0111") (unit 1) (value "GND") (footprint "") 3154 | ) 3155 | (path "/30b21b68-1eb4-4fc2-a84e-0581ea480604" 3156 | (reference "#PWR0112") (unit 1) (value "GND") (footprint "") 3157 | ) 3158 | (path "/9814de10-481d-4340-b2bb-a842061f50f5" 3159 | (reference "#PWR0113") (unit 1) (value "+3.3V") (footprint "") 3160 | ) 3161 | (path "/c424557c-de60-43fc-9d3b-22dc03bfab6a" 3162 | (reference "#PWR0115") (unit 1) (value "+3.3V") (footprint "") 3163 | ) 3164 | (path "/7e509ce7-bdc7-45fb-b2d0-c14a958a5480" 3165 | (reference "#PWR0116") (unit 1) (value "GND") (footprint "") 3166 | ) 3167 | (path "/e5005f02-7e9e-4131-bc30-1c6f3677b486" 3168 | (reference "#PWR0117") (unit 1) (value "+BATT") (footprint "") 3169 | ) 3170 | (path "/1a554a15-93e6-40be-9d48-9ad94c27be8f" 3171 | (reference "#PWR0118") (unit 1) (value "+3.3V") (footprint "") 3172 | ) 3173 | (path "/d6bee790-2111-4887-81d8-44accd303515" 3174 | (reference "#PWR0119") (unit 1) (value "GND") (footprint "") 3175 | ) 3176 | (path "/42a186de-3d09-40e4-a845-deb849c97851" 3177 | (reference "#PWR0120") (unit 1) (value "+3.3V") (footprint "") 3178 | ) 3179 | (path "/1c845146-4488-4df8-a33a-138df0ac947f" 3180 | (reference "#PWR0121") (unit 1) (value "GND") (footprint "") 3181 | ) 3182 | (path "/386c0c7b-a34b-4977-82a3-0f6010c3b42f" 3183 | (reference "#PWR0122") (unit 1) (value "GND") (footprint "") 3184 | ) 3185 | (path "/d353fc62-fa55-4813-ab51-06b8279e57b2" 3186 | (reference "#PWR0124") (unit 1) (value "GND") (footprint "") 3187 | ) 3188 | (path "/a79b61df-69cd-492d-addc-60db485b1c16" 3189 | (reference "#PWR0125") (unit 1) (value "GND") (footprint "") 3190 | ) 3191 | (path "/990abc98-4640-4b98-b23a-d281e74d8f9b" 3192 | (reference "#PWR0126") (unit 1) (value "GND") (footprint "") 3193 | ) 3194 | (path "/ad309923-9da0-4247-ba88-a46e0227807b" 3195 | (reference "#PWR0127") (unit 1) (value "GND") (footprint "") 3196 | ) 3197 | (path "/565cd07e-85af-4eb8-b1f5-84e56ca1d103" 3198 | (reference "#PWR0128") (unit 1) (value "GND") (footprint "") 3199 | ) 3200 | (path "/3bffdec5-09be-4bed-a86d-8758874c1b0d" 3201 | (reference "#PWR0129") (unit 1) (value "GND") (footprint "") 3202 | ) 3203 | (path "/e7d1fd1b-d0ba-4b58-b465-c3d172941afb" 3204 | (reference "#PWR0130") (unit 1) (value "GND") (footprint "") 3205 | ) 3206 | (path "/d88d6e1b-abb6-4e16-97f9-082efbb16e81" 3207 | (reference "#PWR0131") (unit 1) (value "GND") (footprint "") 3208 | ) 3209 | (path "/700b33ee-a9b1-4aaf-9ce0-0bf66671415d" 3210 | (reference "#PWR?") (unit 1) (value "GND") (footprint "") 3211 | ) 3212 | (path "/c8e59e3c-90e9-4055-b7f1-626c5957e4dc" 3213 | (reference "AE1") (unit 1) (value "Antenna") (footprint "RF_Antenna:Johanson_2450AT43F0100") 3214 | ) 3215 | (path "/4fdb758e-3ec1-4750-ae99-94597196cf8a" 3216 | (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3217 | ) 3218 | (path "/7ea57a98-78af-439b-999b-2d6f68b50e8e" 3219 | (reference "C2") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3220 | ) 3221 | (path "/40bd3aa5-2010-4bf5-8562-134335c515f3" 3222 | (reference "C3") (unit 1) (value "180pF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3223 | ) 3224 | (path "/57367b22-1cac-4953-9c56-ebcb85355c0e" 3225 | (reference "C4") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3226 | ) 3227 | (path "/7f6d4dae-8da0-4354-a922-930d6dbd668e" 3228 | (reference "C5") (unit 1) (value "10nF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3229 | ) 3230 | (path "/96867668-7bed-470a-ba64-838141ae6f34" 3231 | (reference "C6") (unit 1) (value "10nF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3232 | ) 3233 | (path "/2a3af6b8-e8ee-47c1-8a1b-7ac739a8e7c3" 3234 | (reference "C7") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3235 | ) 3236 | (path "/27de3513-1ba9-4496-b6ca-50412f2f4fb8" 3237 | (reference "C8") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3238 | ) 3239 | (path "/e07b5d47-5075-497d-878c-7f9c18182e8f" 3240 | (reference "C9") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric") 3241 | ) 3242 | (path "/970b938f-b17e-4219-8486-5e9e634d63af" 3243 | (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric") 3244 | ) 3245 | (path "/b16f83c9-0ae1-4a14-8a2a-ca08d317ae40" 3246 | (reference "FL1") (unit 1) (value "2450FM07D0034T") (footprint "ic_footprint:FILTER-SMD_4P-L1.0-W0.5-L") 3247 | ) 3248 | (path "/07f32893-fb8f-46cb-b873-e32c32d1be98" 3249 | (reference "J1") (unit 1) (value "Conn_01x02") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical") 3250 | ) 3251 | (path "/b5c3c9d0-ec17-4b2d-a907-21387c1b8c94" 3252 | (reference "J2") (unit 1) (value "Conn_01x03_MountingPin") (footprint "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal") 3253 | ) 3254 | (path "/2990a96d-8064-447e-bff0-5e65bdd246fa" 3255 | (reference "J3") (unit 1) (value "Conn_01x04") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical") 3256 | ) 3257 | (path "/fd681a1b-6533-4c92-9947-ab231034dbaf" 3258 | (reference "J4") (unit 1) (value "Conn_01x03_MountingPin") (footprint "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal") 3259 | ) 3260 | (path "/7cf54e4e-ecf2-4a31-a5f4-2d98647570db" 3261 | (reference "J5") (unit 1) (value "Conn_01x03_MountingPin") (footprint "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal") 3262 | ) 3263 | (path "/fe98c4bc-6c98-4479-b0a6-a0d2c29b1dfd" 3264 | (reference "J6") (unit 1) (value "Conn_01x03_MountingPin") (footprint "Connector_Molex:Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal") 3265 | ) 3266 | (path "/667706e8-7d0c-42a7-9dac-6cb35b298261" 3267 | (reference "Q1") (unit 1) (value "Q_NMOS_GSD") (footprint "Package_TO_SOT_SMD:SOT-23") 3268 | ) 3269 | (path "/200fbd5e-20e3-473b-a551-f8888fd20ddd" 3270 | (reference "Q2") (unit 1) (value "Q_NMOS_GSD") (footprint "Package_TO_SOT_SMD:SOT-23") 3271 | ) 3272 | (path "/062359d1-5ee0-4f31-a9bc-8618b8b1d43b" 3273 | (reference "R1") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0603_1608Metric") 3274 | ) 3275 | (path "/31510b52-0b75-4c71-be45-30651f686938" 3276 | (reference "R2") (unit 1) (value "NC") (footprint "Resistor_SMD:R_0603_1608Metric") 3277 | ) 3278 | (path "/10d1ff9f-07f2-4684-a61b-1b86993123cd" 3279 | (reference "R3") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0603_1608Metric") 3280 | ) 3281 | (path "/5073c547-eee8-44da-840e-c47d26d3104f" 3282 | (reference "R4") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0603_1608Metric") 3283 | ) 3284 | (path "/1a039d88-7ab9-405d-bfaf-324c97ce2e32" 3285 | (reference "R5") (unit 1) (value "3K3") (footprint "Resistor_SMD:R_0603_1608Metric") 3286 | ) 3287 | (path "/c07eebcc-30d2-439d-8030-faea6ade4486" 3288 | (reference "U1") (unit 1) (value "ESP32-PICO-D4") (footprint "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm") 3289 | ) 3290 | (path "/834aa2b6-a999-41a3-bbad-701366e676b1" 3291 | (reference "U2") (unit 1) (value "TC2014-3.3VxCTTR") (footprint "Package_TO_SOT_SMD:SOT-23-5") 3292 | ) 3293 | (path "/d3cf50da-ccd2-4275-a96e-96fa1406a76f" 3294 | (reference "U3") (unit 1) (value "SX1280IMLTRT") (footprint "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm") 3295 | ) 3296 | (path "/b2837d6b-6cc1-45c4-aa75-fd2bb220208e" 3297 | (reference "Y1") (unit 1) (value "Crystal_GND24_Small") (footprint "Crystal:Crystal_SMD_2520-4Pin_2.5x2.0mm") 3298 | ) 3299 | ) 3300 | ) 3301 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mini_ELRS 2 | 3 | The repo is a hardware design for ELRS(https://github.com/ExpressLRS/ExpressLRS) by Kicad 6.0. The design aim to construct a 4 | mini elrs module which could drive brush motor directly. 5 | 6 | There are 5 PWM channels in this board, 2 of them are with mos, and could connect to brush motor. 7 | 8 | ![image](https://github.com/Ncerzzk/Mini_ELRS/blob/master/Images/Mini_ELRS.jpg?raw=true) 9 | ![image](https://github.com/Ncerzzk/Mini_ELRS/blob/master/Images/Mini_ELRS2.jpg?raw=true) 10 | 11 | ## License 12 | Please notice that the license of this project is GPL 3.0. For hardware project, hope that you can share the changes if you make something different in the sch or pcb. 13 | 14 | ### reference 15 | https://github.com/ExpressLRS/ExpressLRS-Hardware/tree/master/PCB/2400MHz/RX_Nano 16 | 17 | 18 | -------------------------------------------------------------------------------- /datasheets/esp32-pico-d4_datasheet_cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/datasheets/esp32-pico-d4_datasheet_cn.pdf -------------------------------------------------------------------------------- /datasheets/esp32_datasheet_cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/datasheets/esp32_datasheet_cn.pdf -------------------------------------------------------------------------------- /datasheets/esp32_technical_reference_manual_cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/datasheets/esp32_technical_reference_manual_cn.pdf -------------------------------------------------------------------------------- /docs/Mini_ELRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutopilotPi/Mini_ELRS/ece6e15f7a20ede3780161c2f051e8a62fd01074/docs/Mini_ELRS.pdf -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "kicad_lceda")(type "KiCad")(uri "C:/Users/ncer/Downloads/kicad_lceda/kicad_lceda.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "kicad_lceda")(type "Legacy")(uri "C:/Users/ncer/Downloads/kicad_lceda/kicad_lceda.lib")(options "")(descr "")) 3 | ) 4 | --------------------------------------------------------------------------------