Skip to content
boitarire.kicad_pcb 676 KiB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
(kicad_pcb (version 20210424) (generator pcbnew)

  (general
    (thickness 1.6)
  )

  (paper "A4")
  (layers
    (0 "F.Cu" signal)
    (31 "B.Cu" signal)
    (32 "B.Adhes" user "B.Adhesive")
    (33 "F.Adhes" user "F.Adhesive")
    (34 "B.Paste" user)
    (35 "F.Paste" user)
    (36 "B.SilkS" user "B.Silkscreen")
    (37 "F.SilkS" user "F.Silkscreen")
    (38 "B.Mask" user)
    (39 "F.Mask" user)
    (40 "Dwgs.User" user "User.Drawings")
    (41 "Cmts.User" user "User.Comments")
    (42 "Eco1.User" user "User.Eco1")
    (43 "Eco2.User" user "User.Eco2")
    (44 "Edge.Cuts" user)
    (45 "Margin" user)
    (46 "B.CrtYd" user "B.Courtyard")
    (47 "F.CrtYd" user "F.Courtyard")
    (48 "B.Fab" user)
    (49 "F.Fab" user)
    (50 "User.1" user)
    (51 "User.2" user)
    (52 "User.3" user)
    (53 "User.4" user)
    (54 "User.5" user)
    (55 "User.6" user)
    (56 "User.7" user)
    (57 "User.8" user)
    (58 "User.9" user)
  )

  (setup
    (stackup
      (layer "F.SilkS" (type "Top Silk Screen"))
      (layer "F.Paste" (type "Top Solder Paste"))
      (layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
      (layer "F.Cu" (type "copper") (thickness 0.035))
      (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
      (layer "B.Cu" (type "copper") (thickness 0.035))
      (layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
      (layer "B.Paste" (type "Bottom Solder Paste"))
      (layer "B.SilkS" (type "Bottom Silk Screen"))
      (copper_finish "None")
      (dielectric_constraints no)
    )
    (pad_to_mask_clearance 0)
    (pcbplotparams
      (layerselection 0x00010fc_ffffffff)
      (disableapertmacros false)
      (usegerberextensions false)
      (usegerberattributes true)
      (usegerberadvancedattributes true)
      (creategerberjobfile true)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer true)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (dxfpolygonmode true)
      (dxfimperialunits true)
      (dxfusepcbnewfont true)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (sketchpadsonfab false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 1)
      (scaleselection 1)
      (outputdirectory "")
    )
  )

  (net 0 "")
  (net 1 "Net-(A1-Pad1)")
  (net 2 "unconnected-(A1-Pad17)")
  (net 3 "Net-(A1-Pad2)")
  (net 4 "unconnected-(A1-Pad18)")
  (net 5 "unconnected-(A1-Pad3)")
  (net 6 "unconnected-(A1-Pad19)")
  (net 7 "GND")
  (net 8 "unconnected-(A1-Pad20)")
  (net 9 "/BUSY")
  (net 10 "unconnected-(A1-Pad21)")
  (net 11 "/INT")
  (net 12 "unconnected-(A1-Pad22)")
  (net 13 "/TX")
  (net 14 "/SDA")
  (net 15 "/CAP_SENSOR_2")
  (net 16 "/SCL")
  (net 17 "/RX")
  (net 18 "unconnected-(A1-Pad25)")
  (net 19 "/GND_AUDIO_SW")
  (net 20 "unconnected-(A1-Pad26)")
  (net 21 "/CAP_SENSOR_1")
  (net 22 "VCC")
  (net 23 "/SENSOR_POSITION")
  (net 24 "unconnected-(A1-Pad28)")
  (net 25 "unconnected-(A1-Pad13)")
  (net 26 "unconnected-(A1-Pad14)")
  (net 27 "unconnected-(A1-Pad30)")
  (net 28 "unconnected-(A1-Pad15)")
  (net 29 "unconnected-(A1-Pad16)")
  (net 30 "-BATT")
  (net 31 "+BATT")
  (net 32 "/SP-")
  (net 33 "/SP+")
  (net 34 "+5V")
  (net 35 "GNDPWR")
  (net 36 "/GND_AUDIO")
  (net 37 "unconnected-(U1-Pad5)")
  (net 38 "unconnected-(U1-Pad6)")
  (net 39 "unconnected-(U1-Pad7)")
  (net 40 "unconnected-(U3-Pad8)")
  (net 41 "unconnected-(U3-Pad9)")
  (net 42 "unconnected-(U3-Pad10)")
  (net 43 "unconnected-(U3-PadS1)")
  (net 44 "unconnected-(U3-PadS2)")
  (net 45 "Net-(Q1-Pad1)")

  (footprint "boitarire_lib:HW-107" (layer "F.Cu")
    (tedit 61031F30) (tstamp 14a5f654-37e1-4721-83b5-1821bc1c50ef)
    (at 151.5 65 180)
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/dfb787c8-3942-4d00-8847-691d5108dccb")
    (fp_text reference "U2" (at 7.7 -15.3 180 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 9995459e-0278-4fed-961c-d59c72e5df04)
    )
    (fp_text value "HW-107" (at 0 1 180 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 65be36c7-56e8-4024-bde5-066f88f75304)
    )
    (fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ccdfd86a-5e6c-4fb4-962f-c9b6edde90bb)
    )
    (fp_rect (start -8.55 -14.35) (end 8.55 13.85) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6582aeab-77df-4239-86c8-c8602f5e3359))
    (pad "1" thru_hole rect (at 6.65 -12.35 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 34 "+5V") (pinfunction "USB+") (tstamp e0500dd7-681c-4336-9d46-316ad729f4ed))
    (pad "2" thru_hole rect (at -6.65 -12.35 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 35 "GNDPWR") (pinfunction "GND") (tstamp 9dc38b2f-ddb8-4ed9-8990-ff577f95eadf))
    (pad "3" thru_hole rect (at 3.5 10.65 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 31 "+BATT") (pinfunction "BATT+") (tstamp 1acff27a-ff4b-4172-82b8-ccc95ea65991))
    (pad "4" thru_hole rect (at -3.5 10.65 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 30 "-BATT") (pinfunction "BATT-") (tstamp 1f771c63-e201-4b09-9cfa-0f43d997fc43))
    (pad "5" thru_hole rect (at 6.65 10.65 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 22 "VCC") (pinfunction "OUT+") (tstamp aa9c731c-c893-42b4-9088-ab353e48fd6a))
    (pad "6" thru_hole rect (at -6.65 10.65 180) (size 2.25 2.25) (drill 1) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "OUT-") (tstamp fe9a1ffa-98b3-4e55-ba18-8ac61b55f291))
  )

  (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
    (tedit 5A64794F) (tstamp 1688925e-3a14-4771-967d-f46f09f43442)
    (at 172.5 69.5 -90)
    (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
    (tags "solder jumper open")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/894cb652-e1f8-49cc-95fb-2527c5343be2")
    (attr exclude_from_pos_files)
    (fp_text reference "JP2" (at 0 -1.8 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 39b1405c-8e0f-4938-a6ef-7b178a48203f)
    )
    (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a19f1442-8fea-40f8-abb9-9b420c654579)
    )
    (fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 3e9dddce-2345-45f6-97a0-6b44b2d10413))
    (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 66b69490-cd79-4a06-893b-281684555169))
    (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 6e809f58-76d1-4f8c-b2d9-66dcc46c2a93))
    (fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 9964a223-fff1-4c25-b29c-76b509663773))
    (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1ceb4e33-d5f9-469f-982f-4e64c451f9ea))
    (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5a571835-cab0-42f7-ba5c-1a22843496e5))
    (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp b61e06ae-287f-4e91-a154-034e109363c9))
    (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp c4091d0c-2d9d-4cd1-bab9-52ebd5df332b))
    (pad "1" smd custom locked (at -0.725 0 270) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 15 "/CAP_SENSOR_2") (pinfunction "A") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.5 -0.75)
          (xy 0.5 -0.75)
          (xy 1 0)
          (xy 0.5 0.75)
          (xy -0.5 0.75)
        ) (width 0) (fill yes))
      ) (tstamp 39aadfdd-a438-45d3-8ece-bd47c50b3d65))
    (pad "2" smd custom locked (at 0.725 0 270) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 9 "/BUSY") (pinfunction "B") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.65 -0.75)
          (xy 0.5 -0.75)
          (xy 0.5 0.75)
          (xy -0.65 0.75)
          (xy -0.15 0)
        ) (width 0) (fill yes))
      ) (tstamp 6aaac1ac-52f2-4c6a-b88d-e2889abe321b))
  )

  (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
    (tedit 5A64794F) (tstamp 9772cb0c-3051-4304-a973-667d28debdb4)
    (at 165.5 60.75 90)
    (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
    (tags "solder jumper open")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/303dcf4c-3678-4c70-9229-e9545d706999")
    (attr exclude_from_pos_files)
    (fp_text reference "JP1" (at 0 2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 24c7b547-4842-400c-a881-1326aed59f1f)
    )
    (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2cd0d43a-be40-4815-b4f1-c61b04319f2b)
    )
    (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 0001f5c7-66ef-4d82-8358-fe88a929def2))
    (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 63e12bfd-3125-4a7e-8c88-4463a76ddbf8))
    (fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp a2b4ea08-5a02-4217-ada0-05cee097a117))
    (fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp fc083db8-27de-47f4-97e2-1e4bf44027c9))
    (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 44ae8990-d80a-45b5-b80b-2cb01fe6d897))
    (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp c1b856f8-f9fd-415a-b026-baf4af165322))
    (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp d30c7914-d88a-4908-8c0b-835955be7f3a))
    (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp d373870f-ee44-4cde-a8e3-d604197f1136))
    (pad "1" smd custom locked (at -0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 11 "/INT") (pinfunction "A") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.5 -0.75)
          (xy 0.5 -0.75)
          (xy 1 0)
          (xy 0.5 0.75)
          (xy -0.5 0.75)
        ) (width 0) (fill yes))
      ) (tstamp d9e4b460-5037-4a5d-b245-9c0e8c4c0abd))
    (pad "2" smd custom locked (at 0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 9 "/BUSY") (pinfunction "B") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.65 -0.75)
          (xy 0.5 -0.75)
          (xy 0.5 0.75)
          (xy -0.65 0.75)
          (xy -0.15 0)
        ) (width 0) (fill yes))
      ) (tstamp 9301c3da-f011-4005-a6e8-7b7e6d9d1b5f))
  )

  (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
    (tedit 5A64794F) (tstamp 9daf8fed-309e-4b3f-bf49-8da21bdb5b0d)
    (at 165.5 54.75 90)
    (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
    (tags "solder jumper open")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/a98e1b15-3932-41af-8c11-ac1d4b504f11")
    (attr exclude_from_pos_files)
    (fp_text reference "JP3" (at 0 2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6320e065-6a03-48da-89de-dc9d7bed6eb4)
    )
    (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 59f5a22f-2533-4600-811c-4a419707d52b)
    )
    (fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 199572d0-a309-4cb5-aafe-98ba125a880f))
    (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 3bbb0a5c-f422-44ad-b39a-7008e317f1af))
    (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 92daeecc-5c2f-4fb1-8c1f-095216f68ce7))
    (fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp f5e223f1-57ab-4a7b-86f1-95e7cd33d2a6))
    (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 08895de5-7eb8-48c9-9933-06c83f17adfe))
    (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 3e353e80-f2b0-4fd1-9a72-b4efeecb68dd))
    (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp adff3b7e-9ab7-465b-a53a-2215fe1285e0))
    (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp d14e2fd5-6486-440a-bd33-f51082d7b938))
    (pad "1" smd custom locked (at -0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 13 "/TX") (pinfunction "A") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.5 -0.75)
          (xy 0.5 -0.75)
          (xy 1 0)
          (xy 0.5 0.75)
          (xy -0.5 0.75)
        ) (width 0) (fill yes))
      ) (tstamp 839aa685-fc1b-4781-a63e-5fe6df234a41))
    (pad "2" smd custom locked (at 0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 1 "Net-(A1-Pad1)") (pinfunction "B") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.65 -0.75)
          (xy 0.5 -0.75)
          (xy 0.5 0.75)
          (xy -0.65 0.75)
          (xy -0.15 0)
        ) (width 0) (fill yes))
      ) (tstamp 9c23e63e-4bb9-41a1-9a9f-220f1320eea9))
  )

  (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
    (tedit 5A64794F) (tstamp bb8ab258-28bd-42cb-964e-119a2d1bc3e4)
    (at 165 77 90)
    (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
    (tags "solder jumper open")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/4e996498-ae04-4862-8e0e-7ec5c706a446")
    (attr exclude_from_pos_files)
    (fp_text reference "JP5" (at 0 2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8ea6db9b-af9a-42fb-8082-748cb627b2ec)
    )
    (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 59999c1f-c73c-44ad-bca5-b7a37f0162c8)
    )
    (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 076782a0-9ce2-4b28-8e42-b7059e5a26e9))
    (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 7a76f81d-bae0-40ac-8f6f-3b0ffce38634))
    (fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 99c04b26-099f-482e-8868-82b2ff6b9e8a))
    (fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp bb722ac6-e7d1-41fb-9420-7f7c3063e777))
    (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1dc7096b-c790-4a8a-adf4-d179b7ee25f8))
    (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 87039cde-1cd3-413f-aa65-350f1521ebd4))
    (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp aebb9d81-0d21-4254-927f-9023bd47e8c0))
    (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp cced2169-7b26-4d65-bb27-40002dbdbd96))
    (pad "1" smd custom locked (at -0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 23 "/SENSOR_POSITION") (pinfunction "A") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.5 -0.75)
          (xy 0.5 -0.75)
          (xy 1 0)
          (xy 0.5 0.75)
          (xy -0.5 0.75)
        ) (width 0) (fill yes))
      ) (tstamp 5e65ec58-e333-4256-a2dc-b2af6b9117e0))
    (pad "2" smd custom locked (at 0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 21 "/CAP_SENSOR_1") (pinfunction "B") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.65 -0.75)
          (xy 0.5 -0.75)
          (xy 0.5 0.75)
          (xy -0.65 0.75)
          (xy -0.15 0)
        ) (width 0) (fill yes))
      ) (tstamp 65359c6f-03cf-4853-bfd0-174540e3b9d6))
  )

  (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
    (tedit 5A64794F) (tstamp bd652898-a353-4438-91d1-81195c801669)
    (at 157.5 62.475 90)
    (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
    (tags "solder jumper open")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/7ce68f99-c80f-4eca-9e72-46907ec752e2")
    (attr exclude_from_pos_files)
    (fp_text reference "JP4" (at 0 -1.8 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4332e267-2c75-4f66-8581-fa13ef9078a0)
    )
    (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 51adffd4-d6ee-46cc-9fef-533961f19a98)
    )
    (fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 4a55a9de-0752-4643-be68-572cebe38a5a))
    (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 56e3627a-a621-4cfa-82d3-38ee3ee3cb59))
    (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 63c60d6e-5d95-4eaf-ac1f-f86ec65f9f5a))
    (fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 95cf0d3e-91a3-404a-a42b-c721badc8703))
    (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1887acfd-f38d-49e1-a25c-1d8886be5a62))
    (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 83411f63-c095-4498-a368-d8cc5faf3ea1))
    (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp a4fa38b7-b13c-4cf9-bd51-f570c3639b5f))
    (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp e5e22786-4bad-4910-b2b7-3f5b68fcb97d))
    (pad "1" smd custom locked (at -0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 17 "/RX") (pinfunction "A") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.5 -0.75)
          (xy 0.5 -0.75)
          (xy 1 0)
          (xy 0.5 0.75)
          (xy -0.5 0.75)
        ) (width 0) (fill yes))
      ) (tstamp 69a956f4-4b80-49ec-a253-c45791303ca7))
    (pad "2" smd custom locked (at 0.725 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
      (net 3 "Net-(A1-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
          (xy -0.65 -0.75)
          (xy 0.5 -0.75)
          (xy 0.5 0.75)
          (xy -0.65 0.75)
          (xy -0.15 0)
        ) (width 0) (fill yes))
      ) (tstamp a8d7aaa4-44d3-4e3b-9221-b99f4c51f9ec))
  )

  (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
    (tedit 59FED5CC) (tstamp e5427227-38bf-4abc-bd41-5053026891ec)
    (at 165.725 67.75 90)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/9f8e7c5b-5ae5-4ef7-bf3e-df087c734c45")
    (attr through_hole)
    (fp_text reference "SW1" (at 0.25 5.275 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 42a07990-b67b-477f-aa6f-759a5c19f7f9)
    )
    (fp_text value "SW_Position_Sensor" (at 0 4.87 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 52a06d20-ee9c-4f28-8ef7-d3760a4fc66c)
    )
    (fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 42440155-bd9d-44d0-bb41-319198492f55)
    )
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 06e96fc4-a86d-4178-bfb5-3469d7c6d423))
    (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 46ab82e2-89db-4121-8f52-d9b015544a04))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5488c1c8-6efd-4f87-9b7a-6ea4a5692dfb))
    (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5f4bb9a5-6ccc-4a70-b14d-18b0e1e34e00))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 984e969c-232f-4c9f-98f0-804e1e550f3f))
    (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp e57f3c35-457d-4398-884a-e1bd147e4c0c))
    (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0dd64103-c619-4842-be96-11a97cf7d076))
    (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 729fc97f-60d0-42bb-832a-6952f9f04ca6))
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 98398507-2c52-4983-92f9-4d1ffd00eea1))
    (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp abc10f00-5a9a-41f9-b029-203eaa177542))
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3e9f2fc2-4f56-43ee-9e1e-546aecb07893))
    (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp acdf5c87-5dc0-48e8-8b20-7c9e82669bde))
    (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp b13d0e28-a225-4fce-8dad-ce0771fce898))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp c81e8a92-9918-46ee-8c61-9f09bb9082a7))
    (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp ed555733-4272-452d-9788-46ab71e65015))
    (pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 23 "/SENSOR_POSITION") (pinfunction "1") (pintype "passive") (tstamp b41fb9e2-8cff-415b-8e0d-d81cd2857345))
    (pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "2") (pintype "passive") (tstamp cdce82d2-8acf-4a62-aac4-5ad5a7b60a6f))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Module:Arduino_Nano" (layer "F.Cu")
    (tedit 61031F73) (tstamp fee8185a-e682-4ff1-a1e6-233bda4d74f3)
    (at 162.14 49.75)
    (descr "Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
    (tags "Arduino Nano")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/3e7a3d2a-d071-48f6-afad-482138a4fe77")
    (attr through_hole)
    (fp_text reference "A1" (at 7.11 -6.25) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 733df491-b6de-413a-9928-bfd451bd53cc)
    )
    (fp_text value "Arduino_Nano_Every" (at 8.89 19.05 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 189ddf28-727e-4762-8f38-0f6f69220416)
    )
    (fp_text user "${REFERENCE}" (at 6.35 19.05 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6002f9f4-a03d-45f5-8ce0-ff160b122e50)
    )
    (fp_line (start -1.4 -3.94) (end -1.4 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 38c0a4cd-e014-47db-b80f-0051fab27b7f))
    (fp_line (start 1.27 1.27) (end 1.27 36.83) (layer "F.SilkS") (width 0.12) (tstamp 4bca64ee-d540-4f13-b15f-e8962a109b8b))
    (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 55750d2f-5187-44cc-b261-eb193898aec2))
    (fp_line (start 1.27 -1.27) (end -1.4 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 5bea82dc-56f4-4d0d-9ffb-ee44767c461e))
    (fp_line (start 16.64 39.5) (end 16.64 -3.94) (layer "F.SilkS") (width 0.12) (tstamp 5cd5c182-b277-444c-9520-6e876b3dbd3f))
    (fp_line (start 13.97 -1.27) (end 16.64 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 79d259eb-d0a6-42d4-9145-85b1fec12650))
    (fp_line (start -1.4 1.27) (end -1.4 39.5) (layer "F.SilkS") (width 0.12) (tstamp 8421695b-d233-49a4-b2a3-b997d2aebb07))
    (fp_line (start 1.27 1.27) (end -1.4 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9915aa19-d177-44a1-bbf5-434af334d26c))
    (fp_line (start 13.97 -1.27) (end 13.97 36.83) (layer "F.SilkS") (width 0.12) (tstamp afe937cb-341f-4f91-931d-6a472d1b3ccd))
    (fp_line (start 13.97 36.83) (end 16.64 36.83) (layer "F.SilkS") (width 0.12) (tstamp ba445c38-579f-4d97-b97c-5e0cf98b0594))
    (fp_line (start 13.3 39.5) (end 16.64 39.5) (layer "F.SilkS") (width 0.12) (tstamp dc99f624-2ab6-4a4b-af9c-aba407ee0107))
    (fp_line (start 1.27 36.83) (end -1.4 36.83) (layer "F.SilkS") (width 0.12) (tstamp f5a16688-c0ee-4a3d-9e41-3c524a8c6be4))
    (fp_line (start -1.4 39.5) (end 2 39.5) (layer "F.SilkS") (width 0.12) (tstamp f82aae31-5ddd-4fc7-b738-26328ebf5f5d))
    (fp_line (start 16.75 42.16) (end -1.53 42.16) (layer "F.CrtYd") (width 0.05) (tstamp 800902fb-dba1-4ee0-bc61-4eafa5c9c453))
    (fp_line (start 16.75 42.16) (end 16.75 -4.06) (layer "F.CrtYd") (width 0.05) (tstamp 8b894e3b-06f2-4f3b-9735-a7c370353949))
    (fp_line (start -1.53 -4.06) (end -1.53 42.16) (layer "F.CrtYd") (width 0.05) (tstamp e2e2c770-3403-4d1d-8ac6-2209f06b9ccc))
    (fp_line (start -1.53 -4.06) (end 16.75 -4.06) (layer "F.CrtYd") (width 0.05) (tstamp e9bbc06d-f8a0-47f9-9a4b-b0b6e88f8289))
    (fp_line (start 11.43 41.91) (end 3.81 41.91) (layer "F.Fab") (width 0.1) (tstamp 34ed4799-80af-48a6-b2c2-84f03df5e9b7))
    (fp_line (start 16.51 39.37) (end -1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp 787ffe6d-0cd3-481e-bb69-0935d2aaa091))
    (fp_line (start 3.81 31.75) (end 11.43 31.75) (layer "F.Fab") (width 0.1) (tstamp 79877042-3cb8-4560-9345-2bd09bb5fa29))
    (fp_line (start -1.27 -2.54) (end 0 -3.81) (layer "F.Fab") (width 0.1) (tstamp 86e736d5-18ff-4230-b6a7-8b192779a45d))
    (fp_line (start -1.27 39.37) (end -1.27 -2.54) (layer "F.Fab") (width 0.1) (tstamp c2b9a725-f02e-42b6-8ab7-6f3a2b6b05b8))
    (fp_line (start 16.51 -3.81) (end 16.51 39.37) (layer "F.Fab") (width 0.1) (tstamp c585adc1-74d3-4e23-8394-ed44890d0831))
    (fp_line (start 0 -3.81) (end 16.51 -3.81) (layer "F.Fab") (width 0.1) (tstamp e86c3574-b6e9-4578-af7c-871ce51e791c))
    (fp_line (start 11.43 31.75) (end 11.43 41.91) (layer "F.Fab") (width 0.1) (tstamp f865490b-c5d9-4df1-ae25-c861d4ff8bbb))
    (fp_line (start 3.81 41.91) (end 3.81 31.75) (layer "F.Fab") (width 0.1) (tstamp ff04139c-3041-4ff3-a355-412da59e59cc))
    (pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 1 "Net-(A1-Pad1)") (pinfunction "TX1") (pintype "bidirectional") (tstamp 9dbb8146-0bd0-4dbd-abdb-f25f6e7b64ae))
    (pad "2" thru_hole oval locked (at 0 2.54) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 3 "Net-(A1-Pad2)") (pinfunction "RX1") (pintype "bidirectional") (tstamp 28fa64a5-6f01-4bbe-99fa-756421a0bad2))
    (pad "3" thru_hole oval locked (at 0 5.08) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 5 "unconnected-(A1-Pad3)") (pinfunction "~{RESET}") (pintype "input+no_connect") (tstamp defc6964-00f1-4728-897e-86e917e42642))
    (pad "4" thru_hole oval locked (at 0 7.62) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f3041553-d31f-41dd-8695-0a86d70c3abe))
    (pad "5" thru_hole oval locked (at 0 10.16) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 9 "/BUSY") (pinfunction "D2") (pintype "bidirectional") (tstamp 60a33077-0947-4abe-bcc0-8b678b61d124))
    (pad "6" thru_hole oval locked (at 0 12.7) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 11 "/INT") (pinfunction "D3") (pintype "bidirectional") (tstamp 02e3d117-0ddd-49eb-b9ef-0414c56f6eba))
    (pad "7" thru_hole oval locked (at 0 15.24) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 13 "/TX") (pinfunction "D4") (pintype "bidirectional") (tstamp 8f42d3df-e18b-4782-8a02-71bd7f1d91b1))
    (pad "8" thru_hole oval locked (at 0 17.78) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 15 "/CAP_SENSOR_2") (pinfunction "D5") (pintype "bidirectional") (tstamp c8839a97-7a7a-44bb-8d0a-b6df5277a3b8))
    (pad "9" thru_hole oval locked (at 0 20.32) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 17 "/RX") (pinfunction "D6") (pintype "bidirectional") (tstamp fd5e6be5-9e3a-47a1-93e0-c0e7de3b6294))
    (pad "10" thru_hole oval locked (at 0 22.86) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 19 "/GND_AUDIO_SW") (pinfunction "D7") (pintype "bidirectional") (tstamp ee4eaf44-7871-4fa6-94aa-9f38dab70006))
    (pad "11" thru_hole oval locked (at 0 25.4) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 21 "/CAP_SENSOR_1") (pinfunction "D8") (pintype "bidirectional") (tstamp be04573c-fdb4-4b14-83c6-1305ffdc7e10))
    (pad "12" thru_hole oval locked (at 0 27.94) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 23 "/SENSOR_POSITION") (pinfunction "D9") (pintype "bidirectional") (tstamp 0cc32a56-b840-44f3-9194-bc8d9f7674da))
    (pad "13" thru_hole oval locked (at 0 30.48) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 25 "unconnected-(A1-Pad13)") (pinfunction "D10") (pintype "bidirectional+no_connect") (tstamp 8d81c050-9426-4cc4-a1bd-f6caf2cc352a))
    (pad "14" thru_hole oval locked (at 0 33.02) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 26 "unconnected-(A1-Pad14)") (pinfunction "MOSI") (pintype "bidirectional+no_connect") (tstamp ea4da00d-2ec4-4c9d-9c66-64fc75d058fb))
    (pad "15" thru_hole oval locked (at 0 35.56) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 28 "unconnected-(A1-Pad15)") (pinfunction "MISO") (pintype "bidirectional+no_connect") (tstamp 15be9b94-015c-4b93-849b-f25c348214f6))
    (pad "16" thru_hole oval locked (at 15.24 35.56) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 29 "unconnected-(A1-Pad16)") (pinfunction "SCK") (pintype "bidirectional+no_connect") (tstamp 6b1913e9-d6b6-4ad3-bb12-2f88311fe3e0))
    (pad "17" thru_hole oval locked (at 15.24 33.02) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 2 "unconnected-(A1-Pad17)") (pinfunction "3V3") (pintype "power_out+no_connect") (tstamp 3a308fa9-bfc0-4fa6-b27c-475f33f48886))
    (pad "18" thru_hole oval locked (at 15.24 30.48) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 4 "unconnected-(A1-Pad18)") (pinfunction "AREF") (pintype "input+no_connect") (tstamp cfefd9d5-c8e8-40cf-bfd0-e95820fb0316))
    (pad "19" thru_hole oval locked (at 15.24 27.94) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 6 "unconnected-(A1-Pad19)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp 3265d7ab-ab51-4309-bfdf-e834c391e7c6))
    (pad "20" thru_hole oval locked (at 15.24 25.4) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 8 "unconnected-(A1-Pad20)") (pinfunction "A1") (pintype "bidirectional+no_connect") (tstamp 13428fc2-4f4f-42b2-bb03-436d905326ea))
    (pad "21" thru_hole oval locked (at 15.24 22.86) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 10 "unconnected-(A1-Pad21)") (pinfunction "A2") (pintype "bidirectional+no_connect") (tstamp 37fbd4e7-8be0-4271-a41c-f10d86d80b5f))
    (pad "22" thru_hole oval locked (at 15.24 20.32) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 12 "unconnected-(A1-Pad22)") (pinfunction "A3") (pintype "bidirectional+no_connect") (tstamp 687266f6-de8f-46c8-a578-5dc94c0a020b))
    (pad "23" thru_hole oval locked (at 15.24 17.78) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 14 "/SDA") (pinfunction "SDA/A4") (pintype "bidirectional") (tstamp 9c2016c1-9c73-4055-ba60-0a4441f97cd8))
    (pad "24" thru_hole oval locked (at 15.24 15.24) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 16 "/SCL") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp 63f812f1-75c0-4e3b-a7ac-dd5994b9de5a))
    (pad "25" thru_hole oval locked (at 15.24 12.7) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 18 "unconnected-(A1-Pad25)") (pinfunction "A6") (pintype "bidirectional+no_connect") (tstamp 75d78484-b906-4116-8d98-894fcaedef5f))
    (pad "26" thru_hole oval locked (at 15.24 10.16) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 20 "unconnected-(A1-Pad26)") (pinfunction "A7") (pintype "bidirectional+no_connect") (tstamp 16c31818-5941-46df-8c09-33e5ade34b08))
    (pad "27" thru_hole oval locked (at 15.24 7.62) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 22 "VCC") (pinfunction "+5V") (pintype "power_out") (tstamp 888aaf43-5e39-4f57-b17d-8db0454f0e81))
    (pad "28" thru_hole oval locked (at 15.24 5.08) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 24 "unconnected-(A1-Pad28)") (pinfunction "~{RESET}") (pintype "input+no_connect") (tstamp eea31d1f-6c19-4ba2-be11-9261d1d7461a))
    (pad "29" thru_hole oval locked (at 15.24 2.54) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6cf3d1a8-7010-403b-95ac-e5d4cb5e277e))
    (pad "30" thru_hole oval locked (at 15.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 27 "unconnected-(A1-Pad30)") (pinfunction "VIN") (pintype "power_in+no_connect") (tstamp e479c443-9817-4ce1-aa02-fff597864a2a))
    (model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Arduino_Nano_WithMountingHoles.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "boitarire_lib:GY-521" (layer "B.Cu")
    (tedit 61031ED1) (tstamp 0c397bb6-0fbd-44ff-b6a1-8f51c43cc018)
    (at 163.5 46.125)
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/6aa1302d-76d5-4825-8ce0-d0f6a864a07f")
    (fp_text reference "U1" (at 0 -2.5 180) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 0cdd6fda-f4c5-4c54-90ba-1b6af7020a64)
    )
    (fp_text value "GY-521" (at 0 17.5 180) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 2ee6487f-3e5c-4a60-bf3c-fffec4c4d322)
    )
    (fp_line (start -9.99 -1.5) (end -9.99 14.25) (layer "B.SilkS") (width 0.12) (tstamp 1710bb9c-19ca-4f46-885d-3f3dc0fb0b1f))
    (fp_line (start 9.99 14.25) (end 9.99 -1.5) (layer "B.SilkS") (width 0.12) (tstamp 7edf8022-0932-487c-a66d-f8f36b39912f))
    (fp_line (start -9.99 14.25) (end 9.99 14.25) (layer "B.SilkS") (width 0.12) (tstamp bdf4eec4-4645-4aff-af3c-6328e229fba3))
    (fp_line (start 9.99 -1.5) (end -9.99 -1.5) (layer "B.SilkS") (width 0.12) (tstamp f8e8e5df-342d-44aa-8446-a953f5ed1bd3))
    (fp_line (start 9.74 -1.25) (end -9.74 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 860d7feb-29d4-4d0a-a62c-2659005cc67f))
    (fp_line (start 9.74 1.25) (end 9.74 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 943415aa-322e-40ba-af1c-aa54d4114279))
    (fp_line (start -9.74 -1.25) (end -9.74 1.25) (layer "B.CrtYd") (width 0.05) (tstamp b1a001b4-6544-41a9-ab3a-c3038eb8c863))
    (fp_line (start -9.74 1.25) (end 9.74 1.25) (layer "B.CrtYd") (width 0.05) (tstamp eb19c4e0-a2f1-419d-abb7-7daff42c04c2))
    (pad "" np_thru_hole circle (at -7.62 11.5) (size 3 3) (drill 3) (layers F&B.Cu *.Mask) (tstamp 48438e82-d387-4f99-827e-10b5caefb606))
    (pad "" np_thru_hole circle (at 7.62 11.5) (size 3 3) (drill 3) (layers F&B.Cu *.Mask) (tstamp a8c2708b-862c-4364-8580-bf60dea32441))
    (pad "1" thru_hole rect (at -8.89 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 22 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 450b46da-4248-43e0-9d85-fe78cf3fe687))
    (pad "2" thru_hole oval (at -6.35 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 406273c6-37a4-46c7-9286-b96633e29ab4))
    (pad "3" thru_hole oval (at -3.81 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 16 "/SCL") (pinfunction "SCL") (pintype "tri_state") (tstamp 656e92c1-7ae5-412e-8aba-00f7dc7d7b86))
    (pad "4" thru_hole oval (at -1.27 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 14 "/SDA") (pinfunction "SDA") (pintype "tri_state") (tstamp 9227d302-6fd1-4217-9ba1-caf08f16f4ed))
    (pad "5" thru_hole oval (at 1.27 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 37 "unconnected-(U1-Pad5)") (pinfunction "XDA") (pintype "passive+no_connect") (tstamp 812e797b-806d-4746-be8e-39b4cb1bac3f))
    (pad "6" thru_hole oval (at 3.81 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 38 "unconnected-(U1-Pad6)") (pinfunction "XCL") (pintype "passive+no_connect") (tstamp ae99dd06-a914-47cf-b764-37d07a538e08))
    (pad "7" thru_hole oval (at 6.35 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 39 "unconnected-(U1-Pad7)") (pinfunction "AD0") (pintype "passive+no_connect") (tstamp fb9a4f34-8c3f-4429-9902-215817d0d4b3))
    (pad "8" thru_hole oval (at 8.89 0) (size 1.2 2) (drill 0.8) (layers *.Cu *.Mask)
      (net 11 "/INT") (pinfunction "INT") (pintype "open_collector") (tstamp fcf6542b-2b66-4518-a7ea-1217a3b4d986))
  )

  (footprint "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" (layer "B.Cu")
    (tedit 5EA53D3B) (tstamp 3d6c6a16-8483-4976-a135-413d0db4e70c)
    (at 183.25 66.25 -90)
    (descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
    (tags "connector Molex KK-254 vertical")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/68766b1d-dab7-48c0-b5d6-43f702c4395a")
    (attr through_hole)
    (fp_text reference "J4" (at 1.05 -3.95 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3e70b64d-dc9d-4184-95a8-38fb1ad6fd1b)
    )
    (fp_text value "Conn cap sensor 1" (at 2.54 -4.08 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7094e098-84b3-47c2-afd5-11fbd8f7c54c)
    )
    (fp_text user "${REFERENCE}" (at 2.54 2.22 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3b04451e-4ac5-4968-b29e-25d20dca3e5e)
    )
    (fp_line (start 0.25 -1.46) (end 4.83 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 04db0112-b9f5-4f9a-bbb4-73c3f030fea3))
    (fp_line (start 6.46 3.03) (end -1.38 3.03) (layer "B.SilkS") (width 0.12) (tstamp 0cf377b0-8ccd-4d00-8340-666e21ed12a6))
    (fp_line (start 4.28 2.43) (end 5.88 2.43) (layer "B.SilkS") (width 0.12) (tstamp 0dca72f5-c42a-4c28-a63f-3942959b0ba2))
    (fp_line (start -0.8 3.03) (end -0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp 292deac7-5864-4e95-a1c0-4e14dbf3f0f4))
    (fp_line (start 4.83 -2.99) (end 4.83 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 2a21d0f0-4fb2-48e3-93e2-01b8951ada67))
    (fp_line (start 6.46 -2.99) (end 6.46 3.03) (layer "B.SilkS") (width 0.12) (tstamp 2f999567-1e3e-4537-bed1-95c9307df127))
    (fp_line (start 3.34 2.43) (end 3.34 3.03) (layer "B.SilkS") (width 0.12) (tstamp 3ab0bfac-3a39-4a38-aa9f-940b0ee39774))
    (fp_line (start 1.74 2.43) (end 3.34 2.43) (layer "B.SilkS") (width 0.12) (tstamp 43c14843-d3c1-48f0-a595-5dac3b3b4d3f))
    (fp_line (start -1.67 2) (end -1.67 -2) (layer "B.SilkS") (width 0.12) (tstamp 4730db74-3812-4ecb-934f-c136143e162b))
    (fp_line (start 0 -1.99) (end 0.25 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 5b99b95f-4e29-4d87-b834-9387e331ea20))
    (fp_line (start 1.74 3.03) (end 1.74 2.43) (layer "B.SilkS") (width 0.12) (tstamp 7220b2d5-5fa3-4018-bdf0-e1b3c1654cf6))
    (fp_line (start 4.83 -1.46) (end 5.08 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 7f9815a4-6f63-476c-a697-0e89d4786af2))
    (fp_line (start 0.8 2.43) (end 0.8 3.03) (layer "B.SilkS") (width 0.12) (tstamp 8be72d5d-ca2e-4717-a7b9-20abc0b1e420))
    (fp_line (start 0 -1.99) (end 5.08 -1.99) (layer "B.SilkS") (width 0.12) (tstamp c115fb6c-f416-4ef0-b9e6-48785ebd536b))
    (fp_line (start -1.38 -2.99) (end 6.46 -2.99) (layer "B.SilkS") (width 0.12) (tstamp d4c15693-b0ba-4a70-b321-0844d65e21e3))
    (fp_line (start -0.8 2.43) (end 0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp e2295087-5671-40de-9cf7-bafe87739d37))
    (fp_line (start 4.28 3.03) (end 4.28 2.43) (layer "B.SilkS") (width 0.12) (tstamp e3df5a68-01cc-48d3-93b1-fe2c15f636a6))
    (fp_line (start 0 -2.99) (end 0 -1.99) (layer "B.SilkS") (width 0.12) (tstamp e4d6d36c-4b9f-4554-81fd-62ad649c9283))
    (fp_line (start -1.38 3.03) (end -1.38 -2.99) (layer "B.SilkS") (width 0.12) (tstamp e6c5549e-7374-466d-b076-e2b534f53ce2))
    (fp_line (start 5.08 -1.99) (end 5.08 -2.99) (layer "B.SilkS") (width 0.12) (tstamp e7661958-0015-4c5c-b2d9-7fd4ab221541))
    (fp_line (start 5.88 2.43) (end 5.88 3.03) (layer "B.SilkS") (width 0.12) (tstamp eaae3a5b-2795-4962-9072-c50177f3cc0b))
    (fp_line (start 0.25 -2.99) (end 0.25 -1.99) (layer "B.SilkS") (width 0.12) (tstamp fcc577cd-1231-4a42-b9a0-52a647d9daa3))
    (fp_line (start -1.77 -3.38) (end 6.85 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 50633363-b75f-4655-96c5-f08e687c48b5))
    (fp_line (start 6.85 3.42) (end -1.77 3.42) (layer "B.CrtYd") (width 0.05) (tstamp 60ba00d4-bd2d-4fa8-8682-caced3c6cd3d))
    (fp_line (start -1.77 3.42) (end -1.77 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 7d402a7b-7650-440d-be4d-233101ab2298))
    (fp_line (start 6.85 -3.38) (end 6.85 3.42) (layer "B.CrtYd") (width 0.05) (tstamp be0a8a45-c69e-4463-8132-7900f5326e1a))
    (fp_line (start -0.562893 0) (end -1.27 -0.5) (layer "B.Fab") (width 0.1) (tstamp 0ed38c49-7491-4985-87a5-338cf213ef0c))
    (fp_line (start 6.35 -2.88) (end 6.35 2.92) (layer "B.Fab") (width 0.1) (tstamp 55ddc5d3-7577-44a9-b042-164bbe140121))
    (fp_line (start -1.27 2.92) (end -1.27 -2.88) (layer "B.Fab") (width 0.1) (tstamp 738e85e5-a60c-4ee9-bdb6-d6d62b53d138))
    (fp_line (start 6.35 2.92) (end -1.27 2.92) (layer "B.Fab") (width 0.1) (tstamp 8a41f665-a0e6-4c7a-b891-029a867d467c))
    (fp_line (start -1.27 -2.88) (end 6.35 -2.88) (layer "B.Fab") (width 0.1) (tstamp c1938634-d19f-413e-a549-5dd97eae04ff))
    (fp_line (start -1.27 0.5) (end -0.562893 0) (layer "B.Fab") (width 0.1) (tstamp e7dc66d2-ba1f-4369-b780-d7479c4cd875))
    (pad "1" thru_hole roundrect locked (at 0 0 270) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.143678)
      (net 22 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 7e385c59-614f-4a23-aa7a-f3f7e2c8b434))
    (pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
      (net 21 "/CAP_SENSOR_1") (pinfunction "Pin_2") (pintype "passive") (tstamp d17b11db-4827-444d-83ed-7a664482b8f6))
    (pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp f4c6ae97-d3da-4bc1-8d3e-00fc6d518397))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_Molex:Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical" (layer "B.Cu")
    (tedit 5EA53D3B) (tstamp 3e27955e-04ed-4c73-87dc-53ab565cc397)
    (at 148.3 73.9 90)
    (descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-02A example for new part number: 22-27-2021, 2 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
    (tags "connector Molex KK-254 vertical")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/d62ce3b6-8656-4f66-8e0d-61a310466a8c")
    (attr through_hole)
    (fp_text reference "J3" (at 1.1 -4.1 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 16765974-d776-4fa7-8c18-9e93ea1287e1)
    )
    (fp_text value "Conn jack DC" (at 1.27 -4.08 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 44857feb-c339-47c1-a9bf-dedb37e669f2)
    )
    (fp_text user "${REFERENCE}" (at 1.27 2.22 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b978362b-034e-4bf9-9c8b-02153d9a3477)
    )
    (fp_line (start -0.8 3.03) (end -0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp 053d4c2a-6c73-474d-a997-7b8dfce40c8a))
    (fp_line (start 0 -2.99) (end 0 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 1c4391dd-2141-4a84-a061-c3687f6abff7))
    (fp_line (start 2.29 -2.99) (end 2.29 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 2980c113-dfcc-487a-ab00-e95be8159df3))
    (fp_line (start -0.8 2.43) (end 0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp 29aa7aef-cc71-4030-8586-7ac648016154))
    (fp_line (start 3.92 3.03) (end -1.38 3.03) (layer "B.SilkS") (width 0.12) (tstamp 2dac6027-4260-4e14-a032-2390b585ef7e))
    (fp_line (start 1.74 2.43) (end 3.34 2.43) (layer "B.SilkS") (width 0.12) (tstamp 322c2be0-cdd9-4aff-ad54-37a74da8aef5))
    (fp_line (start -1.38 3.03) (end -1.38 -2.99) (layer "B.SilkS") (width 0.12) (tstamp 370d3113-26f8-4d06-8141-dfcef93ee68c))
    (fp_line (start 0.25 -2.99) (end 0.25 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 3c6bd3b2-f84c-4427-9f51-00852f606eb4))
    (fp_line (start 3.34 2.43) (end 3.34 3.03) (layer "B.SilkS") (width 0.12) (tstamp 4ce97750-e33b-4b1e-a8ff-383baa490775))
    (fp_line (start 0 -1.99) (end 0.25 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 4da7a319-6ed4-4fb6-ba27-98957768ee7c))
    (fp_line (start 2.29 -1.46) (end 2.54 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 86aae4de-fc59-44ff-8e15-e153d246d2ae))
    (fp_line (start 0.25 -1.46) (end 2.29 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 8c0d0808-6b0a-4ff7-bb6b-2224ef9e4c15))
    (fp_line (start -1.67 2) (end -1.67 -2) (layer "B.SilkS") (width 0.12) (tstamp b1cdcbe9-370d-43fd-858a-2d50985f7721))
    (fp_line (start 0.8 2.43) (end 0.8 3.03) (layer "B.SilkS") (width 0.12) (tstamp b63d3c3e-d10b-4aed-a460-bf6e91dccfb1))
    (fp_line (start 1.74 3.03) (end 1.74 2.43) (layer "B.SilkS") (width 0.12) (tstamp c7a7c74d-d2fa-46ff-b541-50ce0a39f0d8))
    (fp_line (start 0 -1.99) (end 2.54 -1.99) (layer "B.SilkS") (width 0.12) (tstamp ceeaffff-876b-4ae4-9ae7-f2ae0b07cdcf))
    (fp_line (start -1.38 -2.99) (end 3.92 -2.99) (layer "B.SilkS") (width 0.12) (tstamp d27b7c6c-a977-4dba-b622-c51108463b18))
    (fp_line (start 3.92 -2.99) (end 3.92 3.03) (layer "B.SilkS") (width 0.12) (tstamp daf65210-f062-40f1-a8d5-665093a47aff))
    (fp_line (start 2.54 -1.99) (end 2.54 -2.99) (layer "B.SilkS") (width 0.12) (tstamp f0dba4a5-f40b-4978-9da2-faccdec6b747))
    (fp_line (start 4.31 3.42) (end -1.77 3.42) (layer "B.CrtYd") (width 0.05) (tstamp 0249f45e-dac1-4612-9544-ed3b1f4c7e2d))
    (fp_line (start -1.77 3.42) (end -1.77 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 537fa4a0-6862-4a0e-b907-b9cb1902564b))
    (fp_line (start 4.31 -3.38) (end 4.31 3.42) (layer "B.CrtYd") (width 0.05) (tstamp 5ca959a0-ebe1-4e48-9b54-0adeef2cb699))
    (fp_line (start -1.77 -3.38) (end 4.31 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 97e51f94-f7dc-402e-ac11-ff67261e60d5))
    (fp_line (start -1.27 -2.88) (end 3.81 -2.88) (layer "B.Fab") (width 0.1) (tstamp 162198bc-c91f-4446-b208-e9b3abbdf84e))
    (fp_line (start 3.81 2.92) (end -1.27 2.92) (layer "B.Fab") (width 0.1) (tstamp 2666797f-6b65-4fe4-9c64-c03bf33d1a02))
    (fp_line (start 3.81 -2.88) (end 3.81 2.92) (layer "B.Fab") (width 0.1) (tstamp 568abb79-3c2b-45e1-bbfc-8b5fe2006361))
    (fp_line (start -1.27 0.5) (end -0.562893 0) (layer "B.Fab") (width 0.1) (tstamp 59a0f0ba-9b48-4fdc-99d8-0794bd0ca51a))
    (fp_line (start -0.562893 0) (end -1.27 -0.5) (layer "B.Fab") (width 0.1) (tstamp 5bd39ee5-6b6b-4165-a811-2e94130bed8f))
    (fp_line (start -1.27 2.92) (end -1.27 -2.88) (layer "B.Fab") (width 0.1) (tstamp bd00474d-be0a-477b-915c-fff8a6374cec))
    (pad "1" thru_hole roundrect locked (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.143678)
      (net 34 "+5V") (pinfunction "Pin_1") (tstamp b528b640-662e-4d3f-835c-80c143bb3ecd))
    (pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
      (net 35 "GNDPWR") (pinfunction "Pin_2") (tstamp 4dd5d25c-25f2-4965-8bd2-40a9ec7b6047))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical" (layer "B.Cu")
    (tedit 5C28142C) (tstamp 63d12f0c-4360-46c8-99bf-db1d3c139fea)
    (at 149.25 58.45 180)
    (descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
    (tags "connector JST EH vertical")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/501188d5-7e4e-4430-b6f3-b6ff5712afbd")
    (attr through_hole)
    (fp_text reference "J1" (at 6.5 -0.5) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7a316de1-4672-4c30-a031-3be35ee05c8c)
    )
    (fp_text value "Conn battery" (at 1.25 -3.4) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f9bc8d2c-7efb-4cfa-b842-7731d6ab867e)
    )
    (fp_text user "${REFERENCE}" (at 1.25 -1.5) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 76c6986b-0757-4145-ad6c-3959be25bf72)
    )
    (fp_line (start 5.11 -2.31) (end 5.11 1.71) (layer "B.SilkS") (width 0.12) (tstamp 077b8c6a-5b7d-4742-8823-4c632275de1d))
    (fp_line (start -2.11 1.21) (end 4.61 1.21) (layer "B.SilkS") (width 0.12) (tstamp 0b534915-9c62-4719-aeea-22c933e282eb))
    (fp_line (start -2.61 1.71) (end -2.61 -2.31) (layer "B.SilkS") (width 0.12) (tstamp 115d6e40-200e-4f34-8773-02cdf34a7809))
    (fp_line (start -2.61 -0.81) (end -1.61 -0.81) (layer "B.SilkS") (width 0.12) (tstamp 3347b725-b8e7-4364-b13f-83185b99742d))
    (fp_line (start 4.11 -0.81) (end 4.11 -2.31) (layer "B.SilkS") (width 0.12) (tstamp 37e5986c-954a-407a-98ba-a6df669ba3a8))
    (fp_line (start 4.61 1.21) (end 4.61 0) (layer "B.SilkS") (width 0.12) (tstamp 4da43f75-3670-4522-ae55-12c7007b2fb9))
    (fp_line (start -2.91 -0.11) (end -2.91 -2.61) (layer "B.SilkS") (width 0.12) (tstamp 6f0e8300-de92-4f60-9d11-1f6c9fe0d76d))
    (fp_line (start -2.11 0) (end -2.11 1.21) (layer "B.SilkS") (width 0.12) (tstamp 76e62e23-ff3f-4b5b-a263-5bef4626b0fe))
    (fp_line (start -1.61 -0.81) (end -1.61 -2.31) (layer "B.SilkS") (width 0.12) (tstamp 8b9b4db5-fca7-4020-be17-ef7fb79bcf4e))
    (fp_line (start -2.91 -2.61) (end -0.41 -2.61) (layer "B.SilkS") (width 0.12) (tstamp b34783c0-96cc-4c0b-b4ff-b834a103b0e0))
    (fp_line (start -2.61 0) (end -2.11 0) (layer "B.SilkS") (width 0.12) (tstamp d50d6d13-a3f9-4957-ae0f-dc9d88b235ba))
    (fp_line (start 5.11 1.71) (end -2.61 1.71) (layer "B.SilkS") (width 0.12) (tstamp dce2ca2a-c1d2-47e2-a2e8-ef177c97127e))
    (fp_line (start -2.61 -2.31) (end 5.11 -2.31) (layer "B.SilkS") (width 0.12) (tstamp e67c4d3e-3c2b-4211-9e41-c0f1e9e7c952))
    (fp_line (start 5.11 -0.81) (end 4.11 -0.81) (layer "B.SilkS") (width 0.12) (tstamp f3f44af6-015d-484b-b87f-09385527009f))
    (fp_line (start 4.61 0) (end 5.11 0) (layer "B.SilkS") (width 0.12) (tstamp fef35fca-4abd-4a8c-89ce-794de94d33da))
    (fp_line (start 5.5 2.1) (end -3 2.1) (layer "B.CrtYd") (width 0.05) (tstamp 52d3c3aa-8881-4a65-9d84-e4b5b0228acc))
    (fp_line (start -3 -2.7) (end 5.5 -2.7) (layer "B.CrtYd") (width 0.05) (tstamp 62cd4b71-4cef-4090-b606-8b7695285891))
    (fp_line (start 5.5 -2.7) (end 5.5 2.1) (layer "B.CrtYd") (width 0.05) (tstamp 6d4c34dc-f888-4dc6-899e-534584abc010))
    (fp_line (start -3 2.1) (end -3 -2.7) (layer "B.CrtYd") (width 0.05) (tstamp 8238ab54-0f61-4954-baac-190e604ef06d))
    (fp_line (start -2.91 -2.61) (end -0.41 -2.61) (layer "B.Fab") (width 0.1) (tstamp 0c74a7cf-631d-4b3d-b8ac-07a3903989a6))
    (fp_line (start -2.91 -0.11) (end -2.91 -2.61) (layer "B.Fab") (width 0.1) (tstamp 14367625-9f84-44e7-98a8-a72d1c7149fc))
    (fp_line (start -2.5 1.6) (end -2.5 -2.2) (layer "B.Fab") (width 0.1) (tstamp 328fd6a7-4a6f-4d56-9a23-aa33bac44a1d))
    (fp_line (start 5 1.6) (end -2.5 1.6) (layer "B.Fab") (width 0.1) (tstamp 79dd1e47-06f1-48ce-a8da-48c6291b17f3))
    (fp_line (start 5 -2.2) (end 5 1.6) (layer "B.Fab") (width 0.1) (tstamp c69fc5aa-8dca-4197-b35a-e11cee5c044b))
    (fp_line (start -2.5 -2.2) (end 5 -2.2) (layer "B.Fab") (width 0.1) (tstamp c8e04300-89ce-4a25-9d36-b8ebbed48741))
    (pad "1" thru_hole roundrect locked (at 0 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
      (net 30 "-BATT") (pinfunction "Pin_1") (tstamp 9884dbc4-7545-46fe-95ba-ff9004ec6903))
    (pad "2" thru_hole oval locked (at 2.5 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask)
      (net 31 "+BATT") (pinfunction "Pin_2") (tstamp 87446d4d-59f4-4596-b728-7f1df5978b09))
    (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" (layer "B.Cu")
    (tedit 5EA53D3B) (tstamp 6469a6a3-20c4-493c-8d64-60ea87d8c607)
    (at 148.5 86.5 90)
    (descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
    (tags "connector Molex KK-254 vertical")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/3a51076c-38ec-4b03-b8e7-271f7a4bcfe0")
    (attr through_hole)
    (fp_text reference "J2" (at 2.54 -4.5 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 623feb32-4b58-47fb-90bc-a3db92ecb84a)
    )
    (fp_text value "Conn speaker" (at 2.54 -4.08 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f9a60aea-4b04-48b3-9763-4f3e2302e6d7)
    )
    (fp_text user "${REFERENCE}" (at 2.54 2.22 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 68eca0e0-78e6-4f23-8ef4-6b483f11f34e)
    )
    (fp_line (start 4.28 2.43) (end 5.88 2.43) (layer "B.SilkS") (width 0.12) (tstamp 10034459-f9a3-44ea-b526-9fbd8214f8ce))
    (fp_line (start 0 -2.99) (end 0 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 109dd379-e161-40e1-8b60-2ac92fd914bf))
    (fp_line (start 5.88 2.43) (end 5.88 3.03) (layer "B.SilkS") (width 0.12) (tstamp 135711d5-e2d4-46b8-a719-0228f71ed995))
    (fp_line (start 0.8 2.43) (end 0.8 3.03) (layer "B.SilkS") (width 0.12) (tstamp 29a05463-8a93-48a8-8da4-6b527f61c65d))
    (fp_line (start 0 -1.99) (end 0.25 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 2db69458-0ba0-4083-b530-9b47f15fc939))
    (fp_line (start -1.38 3.03) (end -1.38 -2.99) (layer "B.SilkS") (width 0.12) (tstamp 33d31121-b36a-4cac-9014-e9887e14a9dc))
    (fp_line (start -0.8 2.43) (end 0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp 616a7d80-42f3-475e-b16a-20e8c54cb06d))
    (fp_line (start 4.83 -2.99) (end 4.83 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 74a41d68-264c-48b6-ade9-ba8039607840))
    (fp_line (start 6.46 3.03) (end -1.38 3.03) (layer "B.SilkS") (width 0.12) (tstamp 794b215b-4f2b-4e05-8948-82de0d7a7aa1))
    (fp_line (start -1.67 2) (end -1.67 -2) (layer "B.SilkS") (width 0.12) (tstamp 866a1f94-87c2-4fa9-8cc1-77c8205e688d))
    (fp_line (start 0.25 -2.99) (end 0.25 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 9b29b8c6-05aa-4e84-aee8-08c047ed3662))
    (fp_line (start 1.74 3.03) (end 1.74 2.43) (layer "B.SilkS") (width 0.12) (tstamp a90675d2-1ba5-4699-b3dc-8f9d7cde307f))
    (fp_line (start 5.08 -1.99) (end 5.08 -2.99) (layer "B.SilkS") (width 0.12) (tstamp ba9015b5-a090-4080-a700-b87cf9766d9d))
    (fp_line (start 1.74 2.43) (end 3.34 2.43) (layer "B.SilkS") (width 0.12) (tstamp bb8d010c-1acd-4198-8104-43f8aa4bd31a))
    (fp_line (start 0.25 -1.46) (end 4.83 -1.46) (layer "B.SilkS") (width 0.12) (tstamp bf328f10-fd1b-4d25-a5b2-99d346249ca9))
    (fp_line (start 3.34 2.43) (end 3.34 3.03) (layer "B.SilkS") (width 0.12) (tstamp ca79dd4b-679e-4505-ab39-a7772afdd064))
    (fp_line (start 6.46 -2.99) (end 6.46 3.03) (layer "B.SilkS") (width 0.12) (tstamp d43b6d27-95ab-427f-bfb3-42bc70dda0bb))
    (fp_line (start -1.38 -2.99) (end 6.46 -2.99) (layer "B.SilkS") (width 0.12) (tstamp d81069d3-30f1-4e80-bc46-b8b894714270))
    (fp_line (start 0 -1.99) (end 5.08 -1.99) (layer "B.SilkS") (width 0.12) (tstamp db6cc173-5752-4513-94b0-1d7152cb2696))
    (fp_line (start 4.83 -1.46) (end 5.08 -1.99) (layer "B.SilkS") (width 0.12) (tstamp f4b30626-7aa1-4684-b34b-fdd8ef17b98d))
    (fp_line (start 4.28 3.03) (end 4.28 2.43) (layer "B.SilkS") (width 0.12) (tstamp f8d66928-cc3b-46cc-86dc-30669abf7615))
    (fp_line (start -0.8 3.03) (end -0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp fbc61942-383b-42b5-94da-822915b478a4))
    (fp_line (start -1.77 3.42) (end -1.77 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 0e0c33d9-4e84-4d90-9bab-44f322b04238))
    (fp_line (start -1.77 -3.38) (end 6.85 -3.38) (layer "B.CrtYd") (width 0.05) (tstamp 6c7c8569-0752-451a-8657-66c9b7eab7fd))
    (fp_line (start 6.85 3.42) (end -1.77 3.42) (layer "B.CrtYd") (width 0.05) (tstamp 7f5c6b03-cbea-42a2-b1ee-d6adc4cc78fd))
    (fp_line (start 6.85 -3.38) (end 6.85 3.42) (layer "B.CrtYd") (width 0.05) (tstamp a9936593-fd30-4810-b53a-1df29da864e2))
    (fp_line (start -0.562893 0) (end -1.27 -0.5) (layer "B.Fab") (width 0.1) (tstamp ab3be886-dbce-4ca5-95d9-f40d1eb06f18))
    (fp_line (start -1.27 2.92) (end -1.27 -2.88) (layer "B.Fab") (width 0.1) (tstamp b109592d-f90a-403f-91f1-0ca1c085615b))
    (fp_line (start -1.27 0.5) (end -0.562893 0) (layer "B.Fab") (width 0.1) (tstamp cffe2a81-fc9b-4f19-afd3-a80b138e7b2f))
    (fp_line (start 6.35 2.92) (end -1.27 2.92) (layer "B.Fab") (width 0.1) (tstamp d2f636cf-e05e-433c-8b3a-14e043a1a6d1))
    (fp_line (start 6.35 -2.88) (end 6.35 2.92) (layer "B.Fab") (width 0.1) (tstamp e536e325-652a-4dbc-9675-6b1ccc155d77))
    (fp_line (start -1.27 -2.88) (end 6.35 -2.88) (layer "B.Fab") (width 0.1) (tstamp efc512d5-166c-4e1d-9c96-cdfc315aa64b))
    (pad "1" thru_hole roundrect locked (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.143678)
      (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 190217b4-668b-4cbc-a7f1-b8a86f0b53c0))
    (pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
      (net 32 "/SP-") (pinfunction "Pin_2") (pintype "passive") (tstamp bb7a99f1-1a12-443d-8dce-ea2a087e3378))
    (pad "3" thru_hole oval locked (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
      (net 33 "/SP+") (pinfunction "Pin_3") (pintype "passive") (tstamp c3c454c3-2b74-4e01-ac03-992ab8bebec3))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_TO_SOT_THT:TO-92" (layer "B.Cu")
    (tedit 5A279852) (tstamp 72a91eb6-537f-4073-af04-68c9e7936c4a)
    (at 185.6 75.1 -90)
    (descr "TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf)")
    (tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/a4b00b9b-bc90-4f2e-a87d-d96e4d011ab2")
    (attr through_hole)
    (fp_text reference "Q2" (at 5 -0.6 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 49748409-6424-456a-82ed-6de4170c35c4)
    )
    (fp_text value "Q_NMOS_SGD" (at 1.27 -2.79 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 784dc209-b95b-44fb-a145-7a6e0a8bf1a1)
    )
    (fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 4f71b182-39ed-4420-85b0-c217bfcf2814)
    )
    (fp_line (start -0.53 -1.85) (end 3.07 -1.85) (layer "B.SilkS") (width 0.12) (tstamp 42c4b58e-8abe-49e5-baa2-0e16d7fa1fce))
    (fp_arc (start 1.27 0) (end 1.27 2.6) (angle 135) (layer "B.SilkS") (width 0.12) (tstamp 43e8d7b4-bc50-4ca0-a7da-269c5efd5f3f))
    (fp_arc (start 1.27 0) (end 1.27 2.6) (angle -135) (layer "B.SilkS") (width 0.12) (tstamp 5b0ee815-bbc8-4546-a8db-6271a51bb196))
    (fp_line (start -1.46 2.73) (end 4 2.73) (layer "B.CrtYd") (width 0.05) (tstamp 259be054-e526-4640-ac4d-be4637813639))
    (fp_line (start -1.46 2.73) (end -1.46 -2.01) (layer "B.CrtYd") (width 0.05) (tstamp 56dac38f-2527-438f-9f58-50fbfd9de379))
    (fp_line (start 4 -2.01) (end -1.46 -2.01) (layer "B.CrtYd") (width 0.05) (tstamp 7c720a7b-f57a-4e3c-bcd3-be8e34df1e91))
    (fp_line (start 4 -2.01) (end 4 2.73) (layer "B.CrtYd") (width 0.05) (tstamp 99681f5f-d851-4b6e-9ff8-f2b0f7248c54))
    (fp_line (start -0.5 -1.75) (end 3 -1.75) (layer "B.Fab") (width 0.1) (tstamp 94cdc68e-1db4-428c-88c2-8d55e5526d80))
    (fp_arc (start 1.27 0) (end 1.27 2.48) (angle -135) (layer "B.Fab") (width 0.1) (tstamp f20f1520-5f05-4d60-b3a9-a95403b097e5))
    (fp_arc (start 1.27 0) (end 1.27 2.48) (angle 135) (layer "B.Fab") (width 0.1) (tstamp fa674864-dfa5-411f-8333-a6f5e9cc0eb7))
    (pad "1" thru_hole rect locked (at 0 0 270) (size 1.3 1.3) (drill 0.75) (layers *.Cu *.Mask)
      (net 7 "GND") (pinfunction "S") (pintype "passive") (tstamp ac134f4a-7612-468a-82d6-22d64bf70360))
    (pad "2" thru_hole circle locked (at 1.27 1.27 270) (size 1.3 1.3) (drill 0.75) (layers *.Cu *.Mask)
      (net 45 "Net-(Q1-Pad1)") (pinfunction "G") (pintype "input") (tstamp d4a6d311-9ecf-4718-b29e-dd6410b84353))
    (pad "3" thru_hole circle locked (at 2.54 0 270) (size 1.3 1.3) (drill 0.75) (layers *.Cu *.Mask)
      (net 36 "/GND_AUDIO") (pinfunction "D") (pintype "passive") (tstamp 8dca58cb-24bc-4c7a-9e31-58a9d7f5b2a5))
    (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
    (tedit 5F68FEEE) (tstamp 77a64b3f-4e69-4afe-9cd4-bcf9d2ac7fa8)
    (at 180.9 79.6 -90)
    (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
    (tags "resistor handsolder")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/b9e3a6a9-9d89-4301-af63-6b50da779861")
    (attr smd)
    (fp_text reference "R1" (at 0.5 -2.2 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 07eb1f95-402c-4548-ac56-c2a40074879a)
    )
    (fp_text value "4k7" (at 0 -1.43 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp d1066d1a-d223-4fa1-9195-d2131d3c4d70)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
      (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
      (tstamp 3f81388b-2a57-4ca6-90a4-974c2552c9cc)
    )
    (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 9fa5b632-8454-4f8c-a15f-0544c2bf81e8))
    (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp b85db6f6-1f02-4aa0-947a-b5bc4865bdd0))
    (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1b6a6b36-cb56-4e82-b014-879f84005920))
    (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 73df7b4b-c81a-43d9-9103-1a1ff57dfbad))
    (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7c95f703-bd08-4d1e-9b54-ee8025ffcbd3))
    (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp b1278d0c-e5fa-4f93-ab08-bbfd47a2da9c))
    (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 575b0fdc-843c-4137-b53e-d669815ecb0f))
    (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 818be067-0fe5-4455-bcad-418da9c1506d))
    (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 852c7f99-3ae8-4c24-a479-3719cfcc4b55))
    (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 99da387c-327f-4aeb-a1e4-49d1c2cd48e5))
    (pad "1" smd roundrect locked (at -0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 19 "/GND_AUDIO_SW") (pintype "passive") (tstamp d7a0f025-bb95-4eb3-a369-e0ca950fa747))
    (pad "2" smd roundrect locked (at 0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 45 "Net-(Q1-Pad1)") (pintype "passive") (tstamp f5749546-135b-498b-b350-300f4bbc2dbb))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" (layer "B.Cu")
    (tedit 5EA53D3B) (tstamp 8b4359b4-fed5-4233-91ec-d105feb7a38b)
    (at 183.25 56.5 -90)
    (descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
    (tags "connector Molex KK-254 vertical")
    (property "Sheetfile" "boitarire.kicad_sch")
    (property "Sheetname" "")
    (path "/acfa0a7d-d1f6-4c82-878d-ec47dc0c2997")
    (attr through_hole)
    (fp_text reference "J5" (at 2.75 -4.25 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp ded1ab63-5c3a-426c-b480-15537e6b446a)
    )
    (fp_text value "Conn cap sensor 2" (at 2.54 -4.08 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp c1e25a22-f993-4565-ac3d-80d38fd827bf)
    )
    (fp_text user "${REFERENCE}" (at 2.54 2.22 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1dad557b-8fef-4761-a418-65c1c59de78e)
    )
    (fp_line (start 4.28 2.43) (end 5.88 2.43) (layer "B.SilkS") (width 0.12) (tstamp 0c39ab79-ffb2-4a09-a59f-03af78af4176))
    (fp_line (start 1.74 3.03) (end 1.74 2.43) (layer "B.SilkS") (width 0.12) (tstamp 221f55cc-df64-404b-9c42-baa123b631b3))
    (fp_line (start 1.74 2.43) (end 3.34 2.43) (layer "B.SilkS") (width 0.12) (tstamp 2271e9ec-4b0c-4d54-bc42-8b51e6fcd373))
    (fp_line (start 0.8 2.43) (end 0.8 3.03) (layer "B.SilkS") (width 0.12) (tstamp 2938faa6-3454-4fc4-aa45-a0b90989878f))
    (fp_line (start -0.8 2.43) (end 0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp 3f2b25f3-3e72-4b35-ab8e-36377d8c5081))
    (fp_line (start 5.08 -1.99) (end 5.08 -2.99) (layer "B.SilkS") (width 0.12) (tstamp 43a97d69-79a4-4846-9514-d297f1fcebf5))
    (fp_line (start 0.25 -2.99) (end 0.25 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 511a7eda-7f62-4d17-84f8-6a74be1c2898))
    (fp_line (start 4.28 3.03) (end 4.28 2.43) (layer "B.SilkS") (width 0.12) (tstamp 5b0e21b1-a0d7-4f4e-a32f-aa56ef12a61c))
    (fp_line (start 4.83 -1.46) (end 5.08 -1.99) (layer "B.SilkS") (width 0.12) (tstamp 73950b9b-f79a-42d2-a7d2-560f9706768d))
    (fp_line (start 0.25 -1.46) (end 4.83 -1.46) (layer "B.SilkS") (width 0.12) (tstamp 82561596-74de-4492-807e-2252254cafcf))
    (fp_line (start 5.88 2.43) (end 5.88 3.03) (layer "B.SilkS") (width 0.12) (tstamp 9168ff34-da3d-44e1-b529-dc5e94fed24f))
    (fp_line (start 3.34 2.43) (end 3.34 3.03) (layer "B.SilkS") (width 0.12) (tstamp a0425b61-7c74-4090-afa2-ee4604f7e553))
    (fp_line (start 0 -1.99) (end 0.25 -1.46) (layer "B.SilkS") (width 0.12) (tstamp ad1c8606-c9ee-4b7e-9c0a-730ad3d8fc4f))
    (fp_line (start -1.67 2) (end -1.67 -2) (layer "B.SilkS") (width 0.12) (tstamp af6d67d7-6fba-4684-b753-aba4cbc0fae1))
    (fp_line (start -1.38 -2.99) (end 6.46 -2.99) (layer "B.SilkS") (width 0.12) (tstamp bc504348-c914-4893-b5df-ac08e3c710a1))
    (fp_line (start -0.8 3.03) (end -0.8 2.43) (layer "B.SilkS") (width 0.12) (tstamp c8a2a84d-ed55-4179-851d-28b94b2bc286))