Skip to content
Snippets Groups Projects
LoRaTracker_BaseBoard_V2.kicad_pcb-bak 250 KiB
Newer Older
julian.quandt's avatar
julian.quandt committed
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 20171130) (host pcbnew "(5.0.1)-3")

  (general
    (thickness 1.6)
    (drawings 28)
    (tracks 733)
    (zones 0)
    (modules 48)
    (nets 41)
  )

  (page A4)
  (layers
    (0 F.Cu signal)
    (31 B.Cu signal)
    (32 B.Adhes user)
    (33 F.Adhes user)
    (34 B.Paste user)
    (35 F.Paste user)
    (36 B.SilkS user)
    (37 F.SilkS user)
    (38 B.Mask user)
    (39 F.Mask user)
    (40 Dwgs.User user)
    (41 Cmts.User user)
    (42 Eco1.User user)
    (43 Eco2.User user)
    (44 Edge.Cuts user)
    (45 Margin user)
    (46 B.CrtYd user)
    (47 F.CrtYd user)
    (48 B.Fab user)
    (49 F.Fab user)
  )

  (setup
    (last_trace_width 0.25)
    (trace_clearance 0.2)
    (zone_clearance 0.508)
    (zone_45_only no)
    (trace_min 0.2)
    (segment_width 0.2)
    (edge_width 0.15)
    (via_size 0.6)
    (via_drill 0.4)
    (via_min_size 0.4)
    (via_min_drill 0.3)
    (uvia_size 0.3)
    (uvia_drill 0.1)
    (uvias_allowed no)
    (uvia_min_size 0.2)
    (uvia_min_drill 0.1)
    (pcb_text_width 0.3)
    (pcb_text_size 1.5 1.5)
    (mod_edge_width 0.15)
    (mod_text_size 1 1)
    (mod_text_width 0.15)
    (pad_size 1.7 1.7)
    (pad_drill 1)
    (pad_to_mask_clearance 0.2)
    (solder_mask_min_width 0.25)
    (aux_axis_origin 0 0)
    (grid_origin 166.37 114.3)
    (visible_elements 7FFFFFFF)
    (pcbplotparams
      (layerselection 0x030fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes false)
      (usegerberadvancedattributes false)
      (creategerberjobfile false)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "C:/Users/quandt/Desktop/MONICA/MonicaGit/LoraTest/TrackerPCB_M8Q/Gerber_FTDI/"))
  )

  (net 0 "")
  (net 1 GND)
  (net 2 +BATT)
  (net 3 "Net-(D3-Pad1)")
  (net 4 VBUS)
  (net 5 GNSS_RXD)
  (net 6 GNSS_TXD)
  (net 7 "Net-(IC2-Pad1)")
  (net 8 "Net-(IC2-Pad5)")
  (net 9 TXD_ESP)
  (net 10 RXD_ESP)
  (net 11 LED_GR)
  (net 12 LoRa_RST)
  (net 13 MISO)
  (net 14 MOSI)
  (net 15 SCK)
  (net 16 CS)
  (net 17 LoRa_DI0)
  (net 18 LoRa_ANT)
  (net 19 MP_BUTTON)
  (net 20 DTR)
  (net 21 RTS)
  (net 22 IO0)
  (net 23 ESP_RESET)
  (net 24 "Net-(C9-Pad1)")
  (net 25 USB_DM)
  (net 26 USB_DP)
  (net 27 "Net-(Q4-Pad2)")
  (net 28 "Net-(Q4-Pad5)")
  (net 29 GNSS_ON_OFF)
  (net 30 +3V3)
  (net 31 SDA)
  (net 32 SCL)
  (net 33 "Net-(D2-Pad2)")
  (net 34 3V3_EN)
  (net 35 V_IN)
  (net 36 Batt_Mon)
  (net 37 GPIO_25)
  (net 38 GNSS_VCC)
  (net 39 "Net-(D4-PadA)")
  (net 40 "Net-(R13-Pad2)")

  (net_class Default "Dies ist die voreingestellte Netzklasse."
    (clearance 0.2)
    (trace_width 0.25)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net 3V3_EN)
    (add_net Batt_Mon)
    (add_net CS)
    (add_net DTR)
    (add_net ESP_RESET)
    (add_net GND)
    (add_net GNSS_ON_OFF)
    (add_net GNSS_RXD)
    (add_net GNSS_TXD)
    (add_net GNSS_VCC)
    (add_net GPIO_25)
    (add_net IO0)
    (add_net LED_GR)
    (add_net LoRa_DI0)
    (add_net LoRa_RST)
    (add_net MISO)
    (add_net MOSI)
    (add_net MP_BUTTON)
    (add_net "Net-(C9-Pad1)")
    (add_net "Net-(D2-Pad2)")
    (add_net "Net-(D3-Pad1)")
    (add_net "Net-(D4-PadA)")
    (add_net "Net-(IC2-Pad1)")
    (add_net "Net-(IC2-Pad5)")
    (add_net "Net-(Q4-Pad2)")
    (add_net "Net-(Q4-Pad5)")
    (add_net "Net-(R13-Pad2)")
    (add_net RTS)
    (add_net RXD_ESP)
    (add_net SCK)
    (add_net SCL)
    (add_net SDA)
    (add_net TXD_ESP)
    (add_net USB_DM)
    (add_net USB_DP)
  )

  (net_class LoRa_ANT ""
    (clearance 0.2)
    (trace_width 1)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net LoRa_ANT)
  )

  (net_class VBATT ""
    (clearance 0.2)
    (trace_width 0.5)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net +3V3)
    (add_net +BATT)
    (add_net VBUS)
    (add_net V_IN)
  )

  (module SMD-BUTTON_4P-5.2X5.2X1.5MM-SKQGADE010_:SW4-SMD-5.2X5.2X1.5MM (layer F.Cu) (tedit 5C7FC14A) (tstamp 5C7FC9FE)
    (at 125.984 102.616 90)
    (path /5C779A8E)
    (attr smd)
    (fp_text reference SW2 (at -0.522824 -3.24963 90) (layer F.SilkS) hide
      (effects (font (size 0.701109 0.701109) (thickness 0.05)))
    )
    (fp_text value "SMD-BUTTON(4P-5.2X5.2X1.5MM-SKQGADE010)" (at -0.80772 -9.55548 90) (layer F.SilkS) hide
      (effects (font (size 0.500091 0.500091) (thickness 0.05)))
    )
    (fp_line (start -1.5 2.6) (end -2.4 1.7) (layer F.SilkS) (width 0.127))
    (fp_line (start -1.45982 2.6) (end -1.5 2.6) (layer F.SilkS) (width 0.127))
    (fp_line (start 1.5 2.6) (end 2.4 1.7) (layer F.SilkS) (width 0.127))
    (fp_line (start 1.5 -2.6) (end 2.4 -1.7) (layer F.SilkS) (width 0.127))
    (fp_line (start -1.4 -2.6) (end -2.4 -1.6) (layer F.SilkS) (width 0.127))
    (fp_poly (pts (xy -2.50085 -2.6) (xy 2.6 -2.6) (xy 2.6 2.60088) (xy -2.50085 2.60088)) (layer Eco1.User) (width 0))
    (fp_line (start 1.43381 -2.6) (end 2.6 -1.43381) (layer Eco2.User) (width 0.127))
    (fp_line (start -1.4 -2.6) (end 1.5 -2.6) (layer F.SilkS) (width 0.127))
    (fp_line (start -2.6 -1.39584) (end -1.39584 -2.6) (layer Eco2.User) (width 0.127))
    (fp_line (start -1.45982 2.6) (end -2.6 1.45982) (layer Eco2.User) (width 0.127))
    (fp_line (start -1.1 2.6) (end -1.45982 2.6) (layer F.SilkS) (width 0.127))
    (fp_line (start 1.5 2.6) (end -1.1 2.6) (layer F.SilkS) (width 0.127))
    (fp_line (start 2.6 1.46863) (end 1.46863 2.6) (layer Eco2.User) (width 0.127))
    (pad 4 smd rect (at 3 1.85 90) (size 1 0.7) (layers F.Cu F.Paste F.Mask))
    (pad 3 smd rect (at -3 1.85 90) (size 1 0.7) (layers F.Cu F.Paste F.Mask)
      (net 39 "Net-(D4-PadA)"))
    (pad 2 smd rect (at 3 -1.85 90) (size 1 0.7) (layers F.Cu F.Paste F.Mask))
    (pad 1 smd rect (at -3 -1.85 90) (size 1 0.7) (layers F.Cu F.Paste F.Mask)
      (net 40 "Net-(R13-Pad2)"))
  )

  (module SparkFun-Connectors:1X04_SMD_STRAIGHT_COMBO (layer F.Cu) (tedit 5C7FC135) (tstamp 5C7688ED)
    (at 165.481 108.585 90)
    (path /5C7B1258)
    (attr smd)
    (fp_text reference J2 (at 3.175 -3.556 90) (layer F.SilkS) hide
      (effects (font (size 1.27 1.27) (thickness 0.127)))
    )
    (fp_text value M04SMD (at 3.81 3.556 90) (layer F.SilkS) hide
      (effects (font (size 1.27 1.27) (thickness 0.1016)))
    )
    (fp_line (start 0.7874 -1.24968) (end 1.75006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 0.7874 1.28778) (end 1.75006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start 3.3274 -1.24968) (end 4.29006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 3.3274 1.28778) (end 4.29006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start 5.8674 -1.24968) (end 6.83006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 5.8674 1.28778) (end 6.83006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start -1.36906 -1.24968) (end -0.72898 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.3185 -1.24968) (end 8.98906 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.98906 1.24968) (end 8.3185 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start -0.72898 1.24968) (end -1.36906 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.98906 -1.24968) (end 8.98906 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start -1.36906 1.24968) (end -1.36906 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 0 -1.27) (end 0 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 5.08 -1.27) (end 5.08 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer F.Cu) (width 0.4064))
    (pad 4-2 smd rect (at 7.62 1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 4 smd rect (at 7.62 -1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 38 GNSS_VCC))
    (pad 3-2 smd rect (at 5.08 -1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 3 smd rect (at 5.08 1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 5 GNSS_RXD))
    (pad 2-2 smd rect (at 2.54 1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 2 smd rect (at 2.54 -1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 6 GNSS_TXD))
    (pad 1-2 smd rect (at 0 -1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 1 smd rect (at 0 1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
  )

  (module SparkFun-Connectors:1X04_SMD_STRAIGHT_COMBO (layer F.Cu) (tedit 5C7FC13A) (tstamp 5C7688ED)
    (at 165.481 108.585 90)
    (path /5C7B1258)
    (attr smd)
    (fp_text reference J2 (at 3.175 -3.556 90) (layer F.SilkS) hide
      (effects (font (size 1.27 1.27) (thickness 0.127)))
    )
    (fp_text value M04SMD (at 3.81 3.556 90) (layer F.SilkS) hide
      (effects (font (size 1.27 1.27) (thickness 0.1016)))
    )
    (fp_line (start 0.7874 -1.24968) (end 1.75006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 0.7874 1.28778) (end 1.75006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start 3.3274 -1.24968) (end 4.29006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 3.3274 1.28778) (end 4.29006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start 5.8674 -1.24968) (end 6.83006 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 5.8674 1.28778) (end 6.83006 1.28778) (layer F.SilkS) (width 0.1778))
    (fp_line (start -1.36906 -1.24968) (end -0.72898 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.3185 -1.24968) (end 8.98906 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.98906 1.24968) (end 8.3185 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start -0.72898 1.24968) (end -1.36906 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 8.98906 -1.24968) (end 8.98906 1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start -1.36906 1.24968) (end -1.36906 -1.24968) (layer F.SilkS) (width 0.1778))
    (fp_line (start 0 -1.27) (end 0 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 5.08 -1.27) (end 5.08 1.27) (layer F.Cu) (width 0.4064))
    (fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer F.Cu) (width 0.4064))
    (pad 4-2 smd rect (at 7.62 1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 4 smd rect (at 7.62 -1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 38 GNSS_VCC))
    (pad 3-2 smd rect (at 5.08 -1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 3 smd rect (at 5.08 1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 5 GNSS_RXD))
    (pad 2-2 smd rect (at 2.54 1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 2 smd rect (at 2.54 -1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 6 GNSS_TXD))
    (pad 1-2 smd rect (at 0 -1.64846 180) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask))
    (pad 1 smd rect (at 0 1.64846) (size 1.99898 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
  )

  (module RFM95W-868S2:XCVR_RFM95W-868S2 (layer B.Cu) (tedit 5BE4056C) (tstamp 5C6FF545)
    (at 134.62 102.87 270)
    (path /5C07D236)
    (attr smd)
    (fp_text reference U3 (at -17.66824 -0.49784 270) (layer B.SilkS) hide
      (effects (font (size 1.00191 1.00191) (thickness 0.05)) (justify mirror))
    )
    (fp_text value RFM95W-868S2 (at -21.3995 0.0381 180) (layer B.SilkS) hide
      (effects (font (size 1.00181 1.00181) (thickness 0.05)) (justify mirror))
    )
    (fp_poly (pts (xy -10.0115 7.2) (xy -9.5 7.2) (xy -9.5 6.8078) (xy -10.0115 6.8078)) (layer B.SilkS) (width 0))
    (fp_circle (center -9.75 7) (end -9.45845 7) (layer B.SilkS) (width 0.2))
    (fp_line (start -8.65 -8.25) (end -8.65 8.25) (layer Eco1.User) (width 0.05))
    (fp_line (start 8.65 -8.25) (end -8.65 -8.25) (layer Eco1.User) (width 0.05))
    (fp_line (start 8.65 8.25) (end 8.65 -8.25) (layer Eco1.User) (width 0.05))
    (fp_line (start -8.65 8.25) (end 8.65 8.25) (layer Eco1.User) (width 0.05))
    (fp_line (start -8 -8) (end -8 8) (layer Dwgs.User) (width 0.2))
    (fp_line (start 8 -8) (end -8 -8) (layer B.SilkS) (width 0.2))
    (fp_line (start 8 8) (end 8 -8) (layer Dwgs.User) (width 0.2))
    (fp_line (start -8 8) (end 8 8) (layer B.SilkS) (width 0.2))
    (pad 16 smd rect (at 7.4 7 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask))
    (pad 15 smd rect (at 7.4 5 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask))
    (pad 14 smd rect (at 7.4 3 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 17 LoRa_DI0))
    (pad 13 smd rect (at 7.4 1 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 30 +3V3))
    (pad 12 smd rect (at 7.4 -1 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask))
    (pad 11 smd rect (at 7.4 -3 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask))
    (pad 10 smd rect (at 7.4 -5 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 9 smd rect (at 7.4 -7 90) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 18 LoRa_ANT))
    (pad 8 smd rect (at -7.4 -7 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 7 smd rect (at -7.4 -5 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask))
    (pad 6 smd rect (at -7.4 -3 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 12 LoRa_RST))
    (pad 5 smd rect (at -7.4 -1 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 16 CS))
    (pad 4 smd rect (at -7.4 1 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 15 SCK))
    (pad 3 smd rect (at -7.4 3 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 14 MOSI))
    (pad 2 smd rect (at -7.4 5 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 13 MISO))
    (pad 1 smd rect (at -7.4 7 270) (size 1.95 1.05) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model ${KIPRJMOD}/KiCadLibs/3D/RFM95W.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.4 0.3 0.39))
      (rotate (xyz -90 0 0))
    )
  )

  (module TO_SOT_Packages_SMD:SOT-23-5_HandSoldering (layer B.Cu) (tedit 5C0FA0CD) (tstamp 5C753498)
    (at 129.794 90.678 90)
    (descr "5-pin SOT23 package")
    (tags "SOT-23-5 hand-soldering")
    (path /5C26303D)
    (attr smd)
    (fp_text reference IC2 (at 0 2.9 90) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value MCP73831-2-OT (at 0 -2.9 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start 2.38 -1.8) (end -2.38 -1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 2.38 -1.8) (end 2.38 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -2.38 1.8) (end -2.38 -1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -2.38 1.8) (end 2.38 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 0.9 1.55) (end 0.9 -1.55) (layer B.Fab) (width 0.1))
    (fp_line (start 0.9 -1.55) (end -0.9 -1.55) (layer B.Fab) (width 0.1))
    (fp_line (start -0.9 0.9) (end -0.9 -1.55) (layer B.Fab) (width 0.1))
    (fp_line (start 0.9 1.55) (end -0.25 1.55) (layer B.Fab) (width 0.1))
    (fp_line (start -0.9 0.9) (end -0.25 1.55) (layer B.Fab) (width 0.1))
    (fp_line (start 0.9 1.61) (end -1.55 1.61) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.9 -1.61) (end 0.9 -1.61) (layer B.SilkS) (width 0.12))
    (fp_text user %R (at 0.151969 -0.303763) (layer B.Fab)
      (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
    )
    (pad 5 smd rect (at 1.35 0.95 90) (size 1.56 0.65) (layers B.Cu B.Paste B.Mask)
      (net 8 "Net-(IC2-Pad5)"))
    (pad 4 smd rect (at 1.35 -0.95 90) (size 1.56 0.65) (layers B.Cu B.Paste B.Mask)
      (net 4 VBUS))
    (pad 3 smd rect (at -1.35 -0.95 90) (size 1.56 0.65) (layers B.Cu B.Paste B.Mask)
      (net 2 +BATT))
    (pad 2 smd rect (at -1.35 0 90) (size 1.56 0.65) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 1 smd rect (at -1.35 0.95 90) (size 1.56 0.65) (layers B.Cu B.Paste B.Mask)
      (net 7 "Net-(IC2-Pad1)"))
    (model ${KISYS3DMOD}/TO_SOT_Packages_SMD.3dshapes\SOT-23-5.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module adafruit:SOD-323F (layer B.Cu) (tedit 5C3F1605) (tstamp 5C6FEEF1)
    (at 123.317 103.759 90)
    (path /5C2B9D66)
    (attr smd)
    (fp_text reference D1 (at 0.23114 1.30556 90) (layer B.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)) (justify mirror))
    )
    (fp_text value MBRA160T3G (at 0.33782 -1.29286 90) (layer B.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)) (justify mirror))
    )
    (fp_line (start 1.19888 -0.19812) (end 0.89916 -0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start 1.19888 0.19812) (end 1.19888 -0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.89916 0.19812) (end 1.19888 0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start -1.19888 -0.19812) (end -0.89916 -0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start -1.19888 0.19812) (end -1.19888 -0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start -0.89916 0.19812) (end -1.19888 0.19812) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.29972 -0.59944) (end 0.29972 0.59944) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.39878 -0.59944) (end 0.29972 -0.59944) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.39878 0.59944) (end 0.39878 -0.59944) (layer B.SilkS) (width 0.127))
    (fp_line (start -0.84836 -0.6477) (end -0.84836 0.6477) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.84836 -0.6477) (end -0.84836 -0.6477) (layer B.SilkS) (width 0.127))
    (fp_line (start 0.84836 0.6477) (end 0.84836 -0.6477) (layer B.SilkS) (width 0.127))
    (fp_line (start -0.84836 0.6477) (end 0.84836 0.6477) (layer B.SilkS) (width 0.127))
    (pad C smd rect (at 0.99822 0 90) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
      (net 35 V_IN))
    (pad A smd rect (at -0.99822 0 90) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
      (net 4 VBUS))
  )

  (module adafruit:TSSOP20 (layer F.Cu) (tedit 5C0FB577) (tstamp 5C0FAA6B)
    (at 124.841 113.157 90)
    (path /5C109200)
    (attr smd)
    (fp_text reference U4 (at -4.0513 -0.4572 180) (layer B.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.1016)) (justify mirror))
    )
    (fp_text value FT231XS (at 4.0259 -0.9652 180) (layer B.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.1016)) (justify mirror))
    )
    (fp_circle (center -2.2733 1.2192) (end -1.950011 1.2192) (layer F.SilkS) (width 0.0762))
    (fp_line (start -3.1623 2.28092) (end -3.1623 -2.28092) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.1623 -2.28092) (end -3.1623 -2.28092) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.1623 -2.28092) (end 3.1623 2.28092) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.1623 2.28092) (end 3.1623 2.28092) (layer F.SilkS) (width 0.1524))
    (fp_line (start 2.82194 -2.28092) (end 2.82194 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.82194 -3.11912) (end 3.02514 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 3.02514 -2.28092) (end 3.02514 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.82194 -2.28092) (end 3.02514 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 -2.28092) (end 2.1717 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 -3.11912) (end 2.3749 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.3749 -2.28092) (end 2.3749 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 -2.28092) (end 2.3749 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.82194 3.11912) (end 2.82194 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.82194 2.28092) (end 3.02514 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 3.02514 3.11912) (end 3.02514 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.82194 3.11912) (end 3.02514 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 3.11912) (end 2.1717 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 2.28092) (end 2.3749 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.3749 3.11912) (end 2.3749 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 2.1717 3.11912) (end 2.3749 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 -2.28092) (end -3.02514 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 -3.11912) (end -2.82194 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.82194 -2.28092) (end -2.82194 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 -2.28092) (end -2.82194 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 -2.28092) (end -2.3749 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 -3.11912) (end -2.1717 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.1717 -2.28092) (end -2.1717 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 -2.28092) (end -2.1717 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 -2.28092) (end -1.72466 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 -3.11912) (end -1.52146 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.52146 -2.28092) (end -1.52146 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 -2.28092) (end -1.52146 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 -2.28092) (end -1.07442 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 -3.11912) (end -0.87122 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.87122 -2.28092) (end -0.87122 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 -2.28092) (end -0.87122 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 -2.28092) (end -0.42418 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 -3.11912) (end -0.22098 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.22098 -2.28092) (end -0.22098 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 -2.28092) (end -0.22098 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 -2.28092) (end 0.22098 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 -3.11912) (end 0.42418 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.42418 -2.28092) (end 0.42418 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 -2.28092) (end 0.42418 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 -2.28092) (end 0.87122 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 -3.11912) (end 1.07442 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.07442 -2.28092) (end 1.07442 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 -2.28092) (end 1.07442 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 -2.28092) (end 1.52146 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 -3.11912) (end 1.72466 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.72466 -2.28092) (end 1.72466 -3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 -2.28092) (end 1.72466 -2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 3.11912) (end 1.52146 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 2.28092) (end 1.72466 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.72466 3.11912) (end 1.72466 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.52146 3.11912) (end 1.72466 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 3.11912) (end 0.87122 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 2.28092) (end 1.07442 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.07442 3.11912) (end 1.07442 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.87122 3.11912) (end 1.07442 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 3.11912) (end 0.22098 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 2.28092) (end 0.42418 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.42418 3.11912) (end 0.42418 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.22098 3.11912) (end 0.42418 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 3.11912) (end -0.42418 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 2.28092) (end -0.22098 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.22098 3.11912) (end -0.22098 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.42418 3.11912) (end -0.22098 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 3.11912) (end -1.07442 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 2.28092) (end -0.87122 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.87122 3.11912) (end -0.87122 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.07442 3.11912) (end -0.87122 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 3.11912) (end -1.72466 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 2.28092) (end -1.52146 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.52146 3.11912) (end -1.52146 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -1.72466 3.11912) (end -1.52146 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 3.11912) (end -2.3749 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 2.28092) (end -2.1717 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.1717 3.11912) (end -2.1717 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.3749 3.11912) (end -2.1717 3.11912) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 3.11912) (end -3.02514 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 2.28092) (end -2.82194 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -2.82194 3.11912) (end -2.82194 2.28092) (layer F.SilkS) (width 0.06604))
    (fp_line (start -3.02514 3.11912) (end -2.82194 3.11912) (layer F.SilkS) (width 0.06604))
    (pad 20 smd rect (at -2.92354 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 10 RXD_ESP))
    (pad 19 smd rect (at -2.2733 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 18 smd rect (at -1.62306 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 17 smd rect (at -0.97282 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 16 smd rect (at -0.32258 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
    (pad 15 smd rect (at 0.32258 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 4 VBUS))
    (pad 14 smd rect (at 0.97282 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 24 "Net-(C9-Pad1)"))
    (pad 13 smd rect (at 1.62306 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 24 "Net-(C9-Pad1)"))
    (pad 12 smd rect (at 2.2733 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 25 USB_DM))
    (pad 11 smd rect (at 2.92354 -2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 26 USB_DP))
    (pad 10 smd rect (at 2.92354 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 9 smd rect (at 2.2733 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 8 smd rect (at 1.62306 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 7 smd rect (at 0.97282 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 6 smd rect (at 0.32258 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
    (pad 5 smd rect (at -0.32258 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask))
    (pad 4 smd rect (at -0.97282 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 9 TXD_ESP))
    (pad 3 smd rect (at -1.62306 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 24 "Net-(C9-Pad1)"))
    (pad 2 smd rect (at -2.2733 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 21 RTS))
    (pad 1 smd rect (at -2.92354 2.91592 90) (size 0.3048 0.9906) (layers F.Cu F.Paste F.Mask)
      (net 20 DTR))
  )

  (module SparkFun-Connectors:USB-MICROB (layer B.Cu) (tedit 5C0FB56C) (tstamp 5C0DF91E)
    (at 120.777 112.395 90)
    (descr "MICRO USB PACKAGE")
    (tags "MICRO USB PACKAGE")
    (path /5C108F26)
    (attr smd)
    (fp_text reference M1 (at 0.3048 0.03048 90) (layer B.SilkS) hide
      (effects (font (size 0.762 0.762) (thickness 0.0508)) (justify mirror))
    )
    (fp_text value USBSMD (at 0.381 -2.794 90) (layer B.SilkS) hide
      (effects (font (size 0.762 0.762) (thickness 0.0508)) (justify mirror))
    )
    (fp_arc (start 2.76352 -2.56032) (end 2.99974 -2.59842) (angle -84.5) (layer B.SilkS) (width 0.127))
    (fp_arc (start -2.76098 -2.56286) (end -2.79908 -2.79908) (angle -84.5) (layer B.SilkS) (width 0.127))
    (fp_line (start 2.99974 -2.59842) (end 2.99974 -2.14884) (layer B.SilkS) (width 0.127))
    (fp_line (start -2.79908 -2.79908) (end 2.74828 -2.79908) (layer B.SilkS) (width 0.127))
    (fp_line (start -2.99974 -2.14884) (end -2.99974 -2.54762) (layer B.SilkS) (width 0.127))
    (fp_line (start 3.39852 -2.14884) (end 3.99796 -2.74828) (layer B.SilkS) (width 0.2032))
    (fp_line (start -3.39852 -2.14884) (end -3.99796 -2.74828) (layer B.SilkS) (width 0.2032))
    (fp_line (start 2.19964 1.4478) (end 2.19964 2.84988) (layer B.SilkS) (width 0.2032))
    (fp_line (start -2.19964 1.4478) (end 2.19964 1.4478) (layer B.SilkS) (width 0.2032))
    (fp_line (start -2.19964 2.84988) (end -2.19964 1.4478) (layer B.SilkS) (width 0.2032))
    (fp_line (start -3.39852 2.84988) (end -2.19964 2.84988) (layer B.SilkS) (width 0.127))
    (fp_line (start -2.19964 1.4478) (end -2.19964 2.84988) (layer B.SilkS) (width 0.127))
    (fp_line (start 2.19964 1.4478) (end 2.19964 2.84988) (layer B.SilkS) (width 0.127))
    (fp_line (start -2.19964 1.4478) (end 2.19964 1.4478) (layer B.SilkS) (width 0.127))
    (fp_line (start -3.39852 -1.4478) (end 3.39852 -1.4478) (layer B.SilkS) (width 0.2032))
    (fp_line (start 3.39852 1.24968) (end 3.39852 2.84988) (layer B.SilkS) (width 0.2032))
    (fp_line (start 3.39852 2.84988) (end 2.19964 2.84988) (layer B.SilkS) (width 0.2032))
    (fp_line (start -3.39852 2.84988) (end -2.19964 2.84988) (layer B.SilkS) (width 0.2032))
    (fp_line (start -3.39852 1.24968) (end -3.39852 2.84988) (layer B.SilkS) (width 0.2032))
    (fp_line (start -3.39852 -1.4478) (end 3.39852 -1.4478) (layer B.SilkS) (width 0.127))
    (fp_line (start 3.39852 -1.4478) (end 3.39852 -2.14884) (layer B.SilkS) (width 0.127))
    (fp_line (start 3.39852 2.84988) (end 3.39852 -1.4478) (layer B.SilkS) (width 0.127))
    (fp_line (start 3.39852 2.84988) (end 2.19964 2.84988) (layer B.SilkS) (width 0.127))
    (fp_line (start -3.39852 -1.4478) (end -3.39852 2.84988) (layer B.SilkS) (width 0.127))
    (fp_line (start -3.39852 -2.14884) (end -3.39852 -1.4478) (layer B.SilkS) (width 0.127))
    (fp_line (start 2.99974 -2.14884) (end 3.39852 -2.14884) (layer B.SilkS) (width 0.127))
    (fp_line (start -3.39852 -2.14884) (end -2.99974 -2.14884) (layer B.SilkS) (width 0.127))
    (pad VBUS smd rect (at -1.29794 2.64922) (size 1.39954 0.34798) (layers B.Cu B.Paste B.Mask)
      (net 4 VBUS))
    (pad P$2 smd rect (at 1.27 0 90) (size 1.89992 1.89992) (layers B.Cu B.Paste B.Mask))
    (pad P$1 smd rect (at -1.27 0 90) (size 1.89992 1.89992) (layers B.Cu B.Paste B.Mask))
    (pad MT2 smd rect (at 3.99796 0 90) (size 1.79832 1.89992) (layers B.Cu B.Paste B.Mask))
    (pad MT1 smd rect (at -3.99796 0 90) (size 1.79832 1.89992) (layers B.Cu B.Paste B.Mask))
    (pad ID smd rect (at 0.6477 2.64922) (size 1.39954 0.34798) (layers B.Cu B.Paste B.Mask))
    (pad GND smd rect (at 1.29794 2.64922) (size 1.39954 0.34798) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad D- smd rect (at -0.6477 2.64922) (size 1.39954 0.34798) (layers B.Cu B.Paste B.Mask)
      (net 25 USB_DM))
    (pad D+ smd rect (at 0 2.64922) (size 1.39954 0.34798) (layers B.Cu B.Paste B.Mask)
      (net 26 USB_DP))
  )

  (module adafruit:U.FL (layer B.Cu) (tedit 5BE55B15) (tstamp 5C6FF855)
    (at 141.605 116.332 90)
    (path /5C0F71D0)
    (attr smd)
    (fp_text reference X1 (at -7.62 -7.62 90) (layer B.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.1778)) (justify mirror))
    )
    (fp_text value ANTENNA_U.FL (at -6.35 -7.62) (layer B.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)) (justify mirror))
    )
    (fp_line (start 1.4986 -2.09804) (end 1.29794 -2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.4986 -0.6985) (end 1.29794 -0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.4986 0.6985) (end 1.29794 0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.4986 2.09804) (end 1.29794 2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.4986 -2.09804) (end 1.4986 -0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.4986 0.6985) (end 1.4986 2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.39954 -1.99898) (end 1.39954 -0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.39954 0.6985) (end 1.39954 1.99898) (layer B.SilkS) (width 0.2032))
    (fp_line (start -1.29794 -2.09804) (end -1.29794 -0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start -1.29794 0.6985) (end -1.29794 2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.29794 -2.09804) (end 1.29794 -0.6985) (layer B.SilkS) (width 0.2032))
    (fp_line (start -1.29794 -2.09804) (end 1.29794 -2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.29794 2.09804) (end -1.29794 2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start 1.29794 0.6985) (end 1.29794 2.09804) (layer B.SilkS) (width 0.2032))
    (fp_line (start -0.889 -0.8255) (end -0.889 0.8255) (layer B.SilkS) (width 0.06604))
    (fp_line (start -0.889 0.8255) (end 0.889 0.8255) (layer B.SilkS) (width 0.06604))
    (fp_line (start 0.889 -0.8255) (end 0.889 0.8255) (layer B.SilkS) (width 0.06604))
    (fp_line (start -0.889 -0.8255) (end 0.889 -0.8255) (layer B.SilkS) (width 0.06604))
    (pad 3 smd rect (at 1.524 0 90) (size 0.79756 0.99822) (layers B.Cu B.Paste B.Mask)
      (net 18 LoRa_ANT))
    (pad 2 smd rect (at 0 -1.37414 90) (size 2.19964 1.04902) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 1 smd rect (at 0 1.37414 90) (size 2.19964 1.04902) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer B.Cu) (tedit 5BE55DCC) (tstamp 5C6FEEBF)
    (at 123.764 97.409 180)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5BFB3EE2)
    (attr smd)
    (fp_text reference C1 (at 0 -1.905 180) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10uF (at 0 -1.5 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 1.25 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.35 0.6) (end 0.35 0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start 0.35 -0.6) (end -0.35 -0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 180) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 35 V_IN))
    (pad 2 smd rect (at 0.95 0 180) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer B.Cu) (tedit 5C3DBBCA) (tstamp 5C6FEE8F)
    (at 122.875 95.758)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5BFE5EA1)
    (attr smd)
    (fp_text reference C2 (at 0 -1.6002) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 1uF (at 0 -1.5) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at -5.10028 1.78308 -270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.35 0.6) (end 0.35 0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start 0.35 -0.6) (end -0.35 -0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 30 +3V3))
    (pad 2 smd rect (at 0.95 0) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer B.Cu) (tedit 5BE55DE0) (tstamp 5C6FF069)
    (at 127 90.678 90)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5C010D60)
    (attr smd)
    (fp_text reference C5 (at 0 1.25 90) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10uF (at 0 -1.5 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 1.25 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.35 0.6) (end 0.35 0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start 0.35 -0.6) (end -0.35 -0.6) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end 1.8 0.65) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -0.65) (end -1.8 -0.65) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 90) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 2 +BATT))
    (pad 2 smd rect (at 0.95 0 90) (size 1.2 0.75) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer B.Cu) (tedit 5BE55DE9) (tstamp 5C6FF1E0)
    (at 152.019 115.951)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C1555E9)
    (attr smd)
    (fp_text reference R1 (at -3.175 0) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 100k (at 0 -1.55) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 0) (layer B.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.5 -0.68) (end -0.5 -0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.5 0.68) (end 0.5 0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.96 0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.96 0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 2 +BATT))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 36 Batt_Mon))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer B.Cu) (tedit 5BE55DEE) (tstamp 5C753B33)
    (at 155.956 115.951)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C155651)
    (attr smd)
    (fp_text reference R2 (at -3.175 0) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 100k (at 0 -1.55) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 0) (layer B.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.5 -0.68) (end -0.5 -0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.5 0.68) (end 0.5 0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.96 0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.96 0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 36 Batt_Mon))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer B.Cu) (tedit 5C6D78D7) (tstamp 5BD2E38C)
    (at 159.766 114.554 180)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C13CB35)
    (attr smd)
    (fp_text reference R3 (at -3.175 0 180) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10k (at 0 -1.55 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 0 270) (layer B.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.5 -0.68) (end -0.5 -0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.5 0.68) (end 0.5 0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.96 0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.96 0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0 180) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 30 +3V3))
    (pad 2 smd rect (at 1.1 0 180) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 23 ESP_RESET))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer B.Cu) (tedit 5BE55E08) (tstamp 5C75362E)
    (at 123.233 93.218)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5BF8EE15)
    (attr smd)
    (fp_text reference R4 (at -3.175 0) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10k (at 0 -1.55) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at -0.077237 0) (layer B.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.5 -0.68) (end -0.5 -0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.5 0.68) (end 0.5 0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.96 0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.96 0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 4 VBUS))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer B.Cu) (tedit 5BE55DC7) (tstamp 5C6FF009)
    (at 151.384 114.427)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C876BD7)
    (attr smd)
    (fp_text reference R5 (at 3.175 0) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10k (at 0 -1.55) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user %R (at 0 0) (layer B.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)) (justify mirror))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
    (fp_line (start 0.5 -0.68) (end -0.5 -0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -0.5 0.68) (end 0.5 0.68) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.96 0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.96 0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end 1.95 0.7) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.95 -0.7) (end -1.96 -0.7) (layer B.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 34 3V3_EN))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers B.Cu B.Paste B.Mask)
      (net 37 GPIO_25))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5BE55E01) (tstamp 5C6FF75F)
    (at 124.206 107.188 180)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C94880A)
    (attr smd)
    (fp_text reference R6 (at -3.3401 0.0127 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100k (at 0 1.55 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 180) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0 180) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 19 MP_BUTTON))
    (pad 2 smd rect (at 1.1 0 180) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5BE55DFB) (tstamp 5C754385)
    (at 155.575 90.17 180)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C1E1F52)
    (attr smd)
    (fp_text reference R8 (at -3.3401 0 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100 (at 0 1.55 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 180) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))