Skip to content
openEmbroideryCard_V02.net 37.3 KiB
Newer Older
3dsman's avatar
3dsman 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
(export (version D)
  (design
    (source /home/seb/projets/brodeuse/elec/openEmbroideryCard_V02/openEmbroideryCard_V02.sch)
    (date "ven. 16 mars 2018 00:58:36 CET")
    (tool "Eeschema 5.0.0-rc2-dev-unknown-2c85de3~62~ubuntu16.04.1")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title "Open Embroidery Electronic Card V02")
        (company electrolab)
        (rev)
        (date)
        (source openEmbroideryCard_V02.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref J1)
      (value Conn_01x03)
      (footprint OE_lib:connector_NSK254_1x03)
      (libsource (lib Connector_Generic) (part Conn_01x03))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9BA441))
    (comp (ref R3)
      (value 100)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9BA551))
    (comp (ref R4)
      (value 8.2K)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9BA5EB))
    (comp (ref U1)
      (value L6470)
      (footprint OE_lib:POWERSO36)
      (libsource (lib OE_lib) (part L6470))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9F0D24))
    (comp (ref R14)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9F3B2E))
    (comp (ref R12)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9FCE3E))
    (comp (ref D2)
      (value D)
      (footprint Diode_SMD:D_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part D))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9FE83D))
    (comp (ref D4)
      (value D)
      (footprint Diode_SMD:D_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part D))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9FE92B))
    (comp (ref C2)
      (value C)
      (footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9FE9C0))
    (comp (ref C3)
      (value C)
      (footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9FEC2C))
    (comp (ref R16)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA06046))
    (comp (ref R17)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA0619A))
    (comp (ref U2)
      (value L6470)
      (footprint OE_lib:POWERSO36)
      (libsource (lib OE_lib) (part L6470))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA11281))
    (comp (ref R15)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112B0))
    (comp (ref R13)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112CC))
    (comp (ref D3)
      (value D)
      (footprint Diode_SMD:D_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part D))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112D4))
    (comp (ref D5)
      (value D)
      (footprint Diode_SMD:D_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part D))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112DA))
    (comp (ref C4)
      (value C)
      (footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112E0))
    (comp (ref C5)
      (value C)
      (footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA112E6))
    (comp (ref U3)
      (value MC34063AD)
      (footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
      (datasheet http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF)
      (libsource (lib Regulator_Switching) (part MC34063AD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA2236B))
    (comp (ref RSC1)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA22644))
    (comp (ref C1)
      (value C)
      (footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA34C08))
    (comp (ref CT1)
      (value 1u)
      (footprint Capacitor_SMD:CP_Elec_4x5.3)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA4607E))
    (comp (ref L1)
      (value 400u)
      (footprint Inductor_SMD:L_Wuerth_WE-PD2-Typ-L)
      (libsource (lib Device) (part L))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA4F545))
    (comp (ref D1)
      (value B140-E3)
      (footprint Diode_SMD:D_SMA)
      (datasheet http://www.vishay.com/docs/88946/b120.pdf)
      (libsource (lib Diode) (part B140-E3))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA4F825))
    (comp (ref C0)
      (value 100u)
      (footprint Capacitor_SMD:CP_Elec_6.3x5.3)
      (libsource (lib Device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA5E29F))
    (comp (ref R2)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA6D9A5))
    (comp (ref R1)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA6DAB9))
    (comp (ref Q1)
      (value Q_NMOS_GSD)
      (footprint Package_TO_SOT_SMD:SOT-323_SC-70_Handsoldering)
      (libsource (lib Device) (part Q_NMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5A9BAB2E))
    (comp (ref J2)
      (value Conn_01x03)
      (footprint OE_lib:connector_NSK254_1x03)
      (libsource (lib Connector_Generic) (part Conn_01x03))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB19B12))
    (comp (ref R6)
      (value 100)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB19B18))
    (comp (ref R7)
      (value 8.2K)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB19B1E))
    (comp (ref Q2)
      (value Q_NMOS_GSD)
      (footprint Package_TO_SOT_SMD:SOT-323_SC-70_Handsoldering)
      (libsource (lib Device) (part Q_NMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB19B2D))
    (comp (ref J3)
      (value Conn_01x03)
      (footprint OE_lib:connector_NSK254_1x03)
      (libsource (lib Connector_Generic) (part Conn_01x03))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB2A00F))
    (comp (ref R8)
      (value 100)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB2A015))
    (comp (ref R9)
      (value 8.2K)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB2A01B))
    (comp (ref Q3)
      (value Q_NMOS_GSD)
      (footprint Package_TO_SOT_SMD:SOT-323_SC-70_Handsoldering)
      (libsource (lib Device) (part Q_NMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB2A02A))
    (comp (ref U4)
      (value STM32F042K6Tx)
      (footprint Package_QFP:LQFP-32_7x7mm_P0.8mm)
      (datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00105814.pdf)
      (libsource (lib OE_lib) (part STM32F042K6Tx))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ABACE5A))
    (comp (ref R5)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AC9EBBF))
    (comp (ref R10)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ACB460A))
    (comp (ref R11)
      (value 10k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ACC9F40))
    (comp (ref J5)
      (value Conn_01x04)
      (footprint OE_lib:connector_NSK254_1x04_angle)
      (libsource (lib Connector_Generic) (part Conn_01x04))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AD04D17))
    (comp (ref J4)
      (value Conn_01x04)
      (footprint OE_lib:connector_NSK254_1x04_angle)
      (libsource (lib Connector_Generic) (part Conn_01x04))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AD05363))
    (comp (ref J6)
      (value Barrel_Jack)
      (footprint Connector_BarrelJack:BarrelJack_Horizontal)
      (libsource (lib Connector_Specialized) (part Barrel_Jack))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA624CA))
    (comp (ref U5)
      (value HC-05)
      (footprint OE_lib:HC-05)
      (libsource (lib OE_lib) (part HC-05))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA867D0))
    (comp (ref D6)
      (value LED)
      (footprint LED_SMD:LED_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AAD9723))
    (comp (ref R18)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AB27117))
    (comp (ref J7)
      (value USB_OTG)
      (footprint Connector_USB:USB_Mini-B_Lumber_2486_Horizontal)
      (libsource (lib Connector_Specialized) (part USB_OTG))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA65FFB))
    (comp (ref R19)
      (value 100k)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AA66FED))
    (comp (ref R21)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ABE6FAF))
    (comp (ref D8)
      (value LED)
      (footprint LED_SMD:LED_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ABE6FA8))
    (comp (ref R20)
      (value R)
      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.50mm_HandSolder)
      (libsource (lib Device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AC3A733))
    (comp (ref D7)
      (value LED)
      (footprint LED_SMD:LED_0805_2012Metric_Pad0.97x1.50mm_HandSolder)
      (libsource (lib Device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AC3A739))
    (comp (ref U6)
      (value TPD4E1U06)
      (footprint Package_TO_SOT_SMD:SOT-23-6_Handsoldering)
      (datasheet http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf)
      (libsource (lib OE_lib) (part TPD4E1U06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5AAD35E8)))
  (libparts
    (libpart (lib Diode) (part B120-E3)
      (aliases
        (alias B130-E3)
        (alias B140-E3)
        (alias B150-E3)
        (alias B160-E3))
      (description "20V 1A Schottky Barrier Rectifier Diode, SMA/DO-214AC")
      (docs http://www.vishay.com/docs/88946/b120.pdf)
      (footprints
        (fp D*DO?214AC*)
        (fp D*SMA*)
        (fp DO?214AC*)
        (fp SMA*))
      (fields
        (field (name Reference) D)
        (field (name Value) B120-E3)
        (field (name Footprint) Diode_SMD:D_SMA))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib Connector_Specialized) (part Barrel_Jack)
      (aliases
        (alias Jack-DC))
      (description "DC Barrel Jack")
      (docs ~)
      (footprints
        (fp Barrel*Jack*)
        (fp BARREL*JACK*))
      (fields
        (field (name Reference) J)
        (field (name Value) Barrel_Jack))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))
        (pin (num 3) (name ~) (type passive))))
    (libpart (lib Device) (part C)
      (description "Unpolarized capacitor")
      (docs ~)
      (footprints
        (fp C_*))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib Connector_Generic) (part Conn_01x03)
      (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
      (docs ~)
      (footprints
        (fp Connector*:*_1x??_*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_01x03))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))))
    (libpart (lib Connector_Generic) (part Conn_01x04)
      (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
      (docs ~)
      (footprints
        (fp Connector*:*_1x??_*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_01x04))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))))
    (libpart (lib Device) (part D)
      (description Diode)
      (docs ~)
      (footprints
        (fp TO-???*)
        (fp *SingleDiode)
        (fp *_Diode_*)
        (fp *SingleDiode*)
        (fp D_*))
      (fields
        (field (name Reference) D)
        (field (name Value) D))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib OE_lib) (part HC-05)
      (fields
        (field (name Reference) U)
        (field (name Value) HC-05))
      (pins
        (pin (num 1) (name UART_TXD) (type input))
        (pin (num 2) (name UART_RXD) (type input))
        (pin (num 3) (name CTS) (type input))
        (pin (num 4) (name RTS) (type input))
        (pin (num 5) (name PCM_CLK) (type input))
        (pin (num 6) (name PCM_OUT) (type input))
        (pin (num 7) (name PCM_IN) (type input))
        (pin (num 8) (name PCM_SYNC) (type input))
        (pin (num 9) (name AIO0) (type input))
        (pin (num 10) (name AIO1) (type input))
        (pin (num 11) (name RESET) (type input))
        (pin (num 12) (name 3.3V) (type input))
        (pin (num 13) (name GND) (type input))
        (pin (num 14) (name NC) (type input))
        (pin (num 15) (name USB_D-) (type input))
        (pin (num 16) (name CSB) (type input))
        (pin (num 17) (name MOSI) (type input))
        (pin (num 18) (name MISO) (type input))
        (pin (num 19) (name CLK) (type input))
        (pin (num 20) (name USB_D+) (type input))
        (pin (num 21) (name GND) (type input))
        (pin (num 22) (name GND) (type input))
        (pin (num 23) (name PIO0) (type input))
        (pin (num 24) (name PIO1) (type input))
        (pin (num 25) (name PIO2) (type input))
        (pin (num 26) (name PIO3) (type input))
        (pin (num 27) (name PIO4) (type input))
        (pin (num 28) (name PIO5) (type input))
        (pin (num 29) (name PIO6) (type input))
        (pin (num 30) (name PIO7) (type input))
        (pin (num 31) (name PIO8) (type input))
        (pin (num 32) (name PIO9) (type input))
        (pin (num 33) (name PIO10) (type input))
        (pin (num 34) (name PIO11) (type input))))
    (libpart (lib Device) (part L)
      (description Inductor)
      (docs ~)
      (footprints
        (fp Choke_*)
        (fp *Coil*)
        (fp Inductor_*)
        (fp L_*))
      (fields
        (field (name Reference) L)
        (field (name Value) L))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib OE_lib) (part L6470)
      (fields
        (field (name Reference) U)
        (field (name Value) L6470))
      (pins
        (pin (num 1) (name PGND) (type power_in))
        (pin (num 2) (name OUT1A) (type output))
        (pin (num 3) (name OUT1A) (type output))
        (pin (num 4) (name VSA) (type power_in))
        (pin (num 5) (name VSA) (type power_in))
        (pin (num 6) (name RESETn) (type input))
        (pin (num 7) (name SW) (type input))
        (pin (num 8) (name ADCIN) (type input))
        (pin (num 9) (name VREG) (type power_out))
        (pin (num 10) (name OSCIN) (type input))
        (pin (num 11) (name OSCOUT) (type output))
        (pin (num 12) (name AGND) (type power_in))
        (pin (num 13) (name CP) (type output))
        (pin (num 14) (name VBOOT) (type power_in))
        (pin (num 15) (name VSB) (type power_in))
        (pin (num 16) (name VSB) (type power_in))
        (pin (num 17) (name OUT1B) (type output))
        (pin (num 18) (name OUT1B) (type output))
        (pin (num 19) (name PGND) (type power_in))
        (pin (num 20) (name OUT2B) (type output))
        (pin (num 21) (name OUT2B) (type output))
        (pin (num 22) (name VSB) (type power_in))
        (pin (num 23) (name VSB) (type power_in))
        (pin (num 24) (name VDD) (type power_in))
        (pin (num 25) (name SDO) (type output))
        (pin (num 26) (name CK) (type input))
        (pin (num 27) (name SDI) (type input))
        (pin (num 28) (name DGND) (type power_in))
        (pin (num 29) (name BUSYn) (type openEm))
        (pin (num 30) (name CSn) (type input))
        (pin (num 31) (name FLAGn) (type openEm))
        (pin (num 32) (name STCK) (type input))
        (pin (num 33) (name VSA) (type power_in))
        (pin (num 34) (name VSA) (type power_in))
        (pin (num 35) (name OUT2A) (type output))
        (pin (num 36) (name OUT2A) (type output))
        (pin (num GND) (name GND) (type power_in))))
    (libpart (lib Device) (part LED)
      (description "LED generic")
      (docs ~)
      (footprints
        (fp LED*)
        (fp LED_SMD:*)
        (fp LED_THT:*))
      (fields
        (field (name Reference) D)
        (field (name Value) LED))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib Regulator_Switching) (part MC33063AD)
      (aliases
        (alias SC33063AD)
        (alias NCV33063AVD)
        (alias MC34063AD))
      (description "1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, SO-8")
      (docs http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF)
      (footprints
        (fp SOIC*3.9x4.9mm*P1.27mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) MC33063AD)
        (field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm))
      (pins
        (pin (num 1) (name SwC) (type openCol))
        (pin (num 2) (name SwE) (type openEm))
        (pin (num 3) (name TC) (type passive))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name Vfb) (type input))
        (pin (num 6) (name Vin) (type power_in))
        (pin (num 7) (name Ipk) (type input))
        (pin (num 8) (name DC) (type openCol))))
    (libpart (lib Device) (part Q_NMOS_GSD)
      (description "Transistor N-MOSFETwith substrate diode (general)")
      (docs ~)
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_NMOS_GSD))
      (pins
        (pin (num 1) (name G) (type input))
        (pin (num 2) (name S) (type passive))
        (pin (num 3) (name D) (type passive))))
    (libpart (lib Device) (part R)
      (description Resistor)
      (docs ~)
      (footprints
        (fp R_*)
        (fp R_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib OE_lib) (part STM32F042K6Tx)
      (description "Core: ARM Cortex-M0, Package: LQFP32, Flash: 32 kB, RAM: 6 kB, Frequency: 48 MHz, Voltage: 2..3.6V, I/O pins: 26")
      (docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00105814.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F042K6Tx)
        (field (name Footprint) LQFP32))
      (pins
        (pin (num 1) (name VDD) (type power_in))
        (pin (num 2) (name PF0/I2C1_SDA) (type input))
        (pin (num 3) (name PF1/I2C1_SCL) (type input))
        (pin (num 4) (name NRST) (type input))
        (pin (num 5) (name VDDA) (type power_in))
        (pin (num 6) (name TIM2_CH1/USART2_CTS/PA0) (type BiDi))
        (pin (num 7) (name TIM2_CH2/USART2_DE/USART2_RTS/PA1) (type BiDi))
        (pin (num 8) (name TIM2_CH3/USART2_TX/PA2) (type BiDi))
        (pin (num 9) (name TIM2_CH4/USART2_RX/PA3) (type BiDi))
        (pin (num 10) (name SPI1_NSS/TIM14_CH1/USART2_CK/USB_OE/PA4) (type BiDi))
        (pin (num 11) (name SPI1_SCK/TIM2_CH1/PA5) (type BiDi))
        (pin (num 12) (name SPI1_MISO/TIM16_CH1/TIM3_CH1/PA6) (type BiDi))
        (pin (num 13) (name SPI1_MOSI/TIM14_CH1/TIM17_CH1/TIM3_CH2/PA7) (type BiDi))
        (pin (num 14) (name PB0/TIM3_CH3) (type BiDi))
        (pin (num 15) (name PB1/TIM14_CH1/TIM3_CH4) (type BiDi))
        (pin (num 16) (name VSS) (type power_in))
        (pin (num 17) (name VDDIO2) (type power_in))
        (pin (num 18) (name TIM1_CH1/USART1_CK/PA8) (type BiDi))
        (pin (num 19) (name I2C1_SCL/TIM1_CH2/USART1_TX/PA9) (type BiDi))
        (pin (num 20) (name I2C1_SDA/TIM1_CH3/USART1_RX/PA10) (type BiDi))
        (pin (num 21) (name I2C1_SCL/TIM1_CH4/USART1_CTS/USB_DM/PA11) (type BiDi))
        (pin (num 22) (name I2C1_SDA/USART1_DE/USART1_RTS/USB_DP/PA12) (type BiDi))
        (pin (num 23) (name USB_OE/PA13) (type BiDi))
        (pin (num 24) (name USART2_TX/PA14) (type BiDi))
        (pin (num 25) (name SPI1_NSS/TIM2_CH1/USART2_RX/USB_OE/PA15) (type BiDi))
        (pin (num 26) (name PB3/SPI1_SCK/TIM2_CH2) (type BiDi))
        (pin (num 27) (name PB4/SPI1_MISO/TIM3_CH1) (type BiDi))
        (pin (num 28) (name PB5/SPI1_MOSI/TIM3_CH2) (type BiDi))
        (pin (num 29) (name PB6/I2C1_SCL/USART1_TX) (type BiDi))
        (pin (num 30) (name PB7/I2C1_SDA/USART1_RX) (type BiDi))
        (pin (num 31) (name PB8/I2C1_SCL/TIM16_CH1) (type BiDi))
        (pin (num 32) (name VSSA) (type power_in))))
    (libpart (lib OE_lib) (part TPD4E1U06)
      (description "4-Channel ESD Protection for Super-Speed USB 3.0 Interface, USON-10")
      (docs http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf)
      (footprints
        (fp USON*2.5x1.0mm*P0.5mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) TPD4E1U06)
        (field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
      (pins
        (pin (num 1) (name D1+) (type passive))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name D2+) (type passive))
        (pin (num 4) (name D2-) (type passive))
        (pin (num 5) (name NC) (type NotConnected))
        (pin (num 6) (name D1-) (type passive))))
    (libpart (lib Connector_Specialized) (part USB_OTG)
      (description "USB mini/micro connector")
      (footprints
        (fp USB*))
      (fields
        (field (name Reference) J)
        (field (name Value) USB_OTG))
      (pins
        (pin (num 1) (name VBUS) (type power_in))
        (pin (num 2) (name D-) (type passive))
        (pin (num 3) (name D+) (type passive))
        (pin (num 4) (name ID) (type passive))
        (pin (num 5) (name GND) (type power_in))
        (pin (num 6) (name Shield) (type passive)))))
  (libraries
    (library (logical Connector_Generic)
      (uri /usr/share/kicad/kicad-symbols/Connector_Generic.lib))
    (library (logical Connector_Specialized)
      (uri /usr/share/kicad/kicad-symbols/Connector_Specialized.lib))
    (library (logical Device)
      (uri /usr/share/kicad/kicad-symbols/Device.lib))
    (library (logical Diode)
      (uri /usr/share/kicad/kicad-symbols/Diode.lib))
    (library (logical OE_lib)
      (uri /home/seb/projets/brodeuse/elec/openEmbroideryCard_V02/libs/OE_lib.pretty/OE_lib.lib))
    (library (logical Regulator_Switching)
      (uri /usr/share/kicad/kicad-symbols/Regulator_Switching.lib)))
  (nets
    (net (code 1) (name /BUSYn2)
      (node (ref U4) (pin 8))
      (node (ref U2) (pin 29)))
    (net (code 2) (name /FLAGn2)
      (node (ref U2) (pin 31))
      (node (ref U4) (pin 7)))
    (net (code 3) (name +3V3)
      (node (ref R7) (pin 1))
      (node (ref U4) (pin 5))
      (node (ref L1) (pin 2))
      (node (ref C0) (pin 1))
      (node (ref R6) (pin 1))
      (node (ref R2) (pin 1))
      (node (ref R3) (pin 1))
      (node (ref R4) (pin 1))
      (node (ref R8) (pin 1))
      (node (ref R9) (pin 1))
      (node (ref U4) (pin 17))
      (node (ref U5) (pin 12))
      (node (ref R5) (pin 1))
      (node (ref U4) (pin 1)))
    (net (code 4) (name /BOOT0)
      (node (ref R5) (pin 2))
      (node (ref U4) (pin 31)))
    (net (code 5) (name +BATT)
      (node (ref U2) (pin 5))
      (node (ref U2) (pin 34))
      (node (ref U2) (pin 16))
      (node (ref U2) (pin 33))
      (node (ref U2) (pin 4))
      (node (ref J6) (pin 1))
      (node (ref R16) (pin 1))
      (node (ref R12) (pin 1))
      (node (ref D4) (pin 2))
      (node (ref C2) (pin 1))
      (node (ref U2) (pin 23))
      (node (ref U2) (pin 24))
      (node (ref R15) (pin 2))
      (node (ref R13) (pin 1))
      (node (ref U2) (pin 9))
      (node (ref U3) (pin 6))
      (node (ref RSC1) (pin 2))
      (node (ref D5) (pin 2))
      (node (ref C4) (pin 1))
      (node (ref U2) (pin 15))
      (node (ref U2) (pin 22))
      (node (ref U1) (pin 22))
      (node (ref U1) (pin 23))
      (node (ref U1) (pin 24))
      (node (ref U1) (pin 33))
      (node (ref U1) (pin 15))
      (node (ref U1) (pin 16))
      (node (ref R14) (pin 2))
      (node (ref U1) (pin 34))
      (node (ref U1) (pin 4))
      (node (ref U1) (pin 5))
      (node (ref U1) (pin 9))
      (node (ref C1) (pin 1))
      (node (ref R11) (pin 2))
      (node (ref R10) (pin 2)))
    (net (code 6) (name "Net-(U2-Pad8)")
      (node (ref U2) (pin 8)))
    (net (code 7) (name /BUSYn1)
      (node (ref U1) (pin 29))
      (node (ref U4) (pin 9)))
    (net (code 8) (name /FLAGn1)
      (node (ref U4) (pin 6))
      (node (ref U1) (pin 31)))
    (net (code 9) (name GND)
      (node (ref U1) (pin 1))
      (node (ref J7) (pin 6))
      (node (ref J7) (pin 5))
      (node (ref Q3) (pin 2))
      (node (ref R19) (pin 2))
      (node (ref U4) (pin 16))
      (node (ref J6) (pin 3))
      (node (ref U5) (pin 13))
      (node (ref U5) (pin 21))
      (node (ref U5) (pin 22))
      (node (ref U1) (pin 12))
      (node (ref U2) (pin 19))
      (node (ref U4) (pin 32))
      (node (ref U2) (pin 12))
      (node (ref R17) (pin 2))
      (node (ref U2) (pin 1))
      (node (ref U1) (pin 28))
      (node (ref D6) (pin 1))
      (node (ref U2) (pin 28))
      (node (ref Q2) (pin 2))
      (node (ref U3) (pin 4))
      (node (ref U1) (pin 19))
      (node (ref R1) (pin 2))
      (node (ref CT1) (pin 2))
      (node (ref Q1) (pin 2))
      (node (ref D8) (pin 1))
      (node (ref C1) (pin 2))
      (node (ref D7) (pin 1))
      (node (ref U2) (pin GND))
      (node (ref U1) (pin GND))
      (node (ref C0) (pin 2))
      (node (ref D1) (pin 2))
      (node (ref U6) (pin 2)))
    (net (code 10) (name "Net-(R16-Pad2)")
      (node (ref U1) (pin 8))
      (node (ref R17) (pin 1))
      (node (ref R16) (pin 2)))
    (net (code 11) (name "Net-(J3-Pad1)")
      (node (ref Q3) (pin 3))
      (node (ref J3) (pin 1)))
    (net (code 12) (name "Net-(J3-Pad3)")
      (node (ref J3) (pin 3))
      (node (ref R8) (pin 2)))
    (net (code 13) (name NEEDLE_EN)
      (node (ref U4) (pin 24))
      (node (ref Q3) (pin 1)))
    (net (code 14) (name NEEDLE)
      (node (ref J3) (pin 2))
      (node (ref R9) (pin 2))
      (node (ref U4) (pin 25)))
    (net (code 15) (name "Net-(J2-Pad1)")
      (node (ref J2) (pin 1))
      (node (ref Q2) (pin 3)))
    (net (code 16) (name "Net-(U4-Pad3)")
      (node (ref U4) (pin 3)))
    (net (code 17) (name POS_X_EN)
      (node (ref U4) (pin 30))
      (node (ref Q1) (pin 1)))
    (net (code 18) (name "Net-(U4-Pad4)")
      (node (ref U4) (pin 4)))
    (net (code 19) (name /USB_DM)
      (node (ref J7) (pin 2))
      (node (ref U6) (pin 4))
      (node (ref U4) (pin 21)))
    (net (code 20) (name /USB_DP)
      (node (ref U4) (pin 22))
      (node (ref J7) (pin 3))
      (node (ref U6) (pin 1)))
    (net (code 21) (name "Net-(U4-Pad18)")
      (node (ref U4) (pin 18)))
    (net (code 22) (name "Net-(U4-Pad10)")
      (node (ref U4) (pin 10)))
    (net (code 23) (name /SPICLK)
      (node (ref U4) (pin 11))
      (node (ref U2) (pin 26))
      (node (ref U1) (pin 26)))
    (net (code 24) (name /MISO)
      (node (ref U4) (pin 12))
      (node (ref U1) (pin 25))
      (node (ref U2) (pin 25)))
    (net (code 25) (name /MOSI)
      (node (ref U2) (pin 27))
      (node (ref U1) (pin 27))
      (node (ref U4) (pin 13)))
    (net (code 26) (name "Net-(U4-Pad14)")
      (node (ref U4) (pin 14)))
    (net (code 27) (name "Net-(U4-Pad15)")
      (node (ref U4) (pin 15)))
    (net (code 28) (name /BT_RX)
      (node (ref U4) (pin 19))
      (node (ref U5) (pin 2)))
    (net (code 29) (name "Net-(U4-Pad2)")
      (node (ref U4) (pin 2)))
    (net (code 30) (name /BT_TX)
      (node (ref U4) (pin 20))
      (node (ref U5) (pin 1)))
    (net (code 31) (name "Net-(R21-Pad1)")
      (node (ref R21) (pin 1))
      (node (ref U4) (pin 23)))
    (net (code 32) (name "Net-(R20-Pad1)")
      (node (ref R20) (pin 1))
      (node (ref U4) (pin 26)))
    (net (code 33) (name "Net-(D8-Pad2)")
      (node (ref D8) (pin 2))
      (node (ref R21) (pin 2)))
    (net (code 34) (name POS_Y)
      (node (ref U4) (pin 27))
      (node (ref R7) (pin 2))
      (node (ref J2) (pin 2)))
    (net (code 35) (name POS_X)
      (node (ref R4) (pin 2))
      (node (ref J1) (pin 2))
      (node (ref U4) (pin 29)))
    (net (code 36) (name POS_Y_EN)
      (node (ref Q2) (pin 1))
      (node (ref U4) (pin 28)))
    (net (code 37) (name "Net-(U6-Pad6)")
      (node (ref U6) (pin 6)))
    (net (code 38) (name "Net-(U6-Pad3)")
      (node (ref U6) (pin 3)))
    (net (code 39) (name "Net-(U6-Pad5)")
      (node (ref U6) (pin 5)))
    (net (code 40) (name "Net-(R1-Pad1)")
      (node (ref U3) (pin 5))
      (node (ref R2) (pin 2))
      (node (ref R1) (pin 1)))
    (net (code 41) (name "Net-(D7-Pad2)")
      (node (ref D7) (pin 2))
      (node (ref R20) (pin 2)))
    (net (code 42) (name "Net-(U5-Pad33)")
      (node (ref U5) (pin 33)))
    (net (code 43) (name "Net-(R18-Pad1)")
      (node (ref R18) (pin 1))
      (node (ref U5) (pin 24)))
    (net (code 44) (name "Net-(U5-Pad25)")
      (node (ref U5) (pin 25)))
    (net (code 45) (name "Net-(U5-Pad26)")
      (node (ref U5) (pin 26)))
    (net (code 46) (name "Net-(U5-Pad27)")
      (node (ref U5) (pin 27)))
    (net (code 47) (name "Net-(U5-Pad28)")
      (node (ref U5) (pin 28)))
    (net (code 48) (name "Net-(U5-Pad29)")
      (node (ref U5) (pin 29)))
    (net (code 49) (name "Net-(U5-Pad3)")
      (node (ref U5) (pin 3)))
    (net (code 50) (name "Net-(U5-Pad30)")
      (node (ref U5) (pin 30)))
    (net (code 51) (name "Net-(U5-Pad31)")
      (node (ref U5) (pin 31)))
    (net (code 52) (name "Net-(U5-Pad32)")
      (node (ref U5) (pin 32)))
    (net (code 53) (name "Net-(U5-Pad23)")
      (node (ref U5) (pin 23)))
    (net (code 54) (name "Net-(U5-Pad34)")
      (node (ref U5) (pin 34)))
    (net (code 55) (name "Net-(U5-Pad4)")
      (node (ref U5) (pin 4)))
    (net (code 56) (name "Net-(U5-Pad5)")
      (node (ref U5) (pin 5)))
    (net (code 57) (name "Net-(U5-Pad6)")
      (node (ref U5) (pin 6)))
    (net (code 58) (name "Net-(U5-Pad7)")
      (node (ref U5) (pin 7)))
    (net (code 59) (name "Net-(U5-Pad8)")
      (node (ref U5) (pin 8)))
    (net (code 60) (name "Net-(U5-Pad9)")
      (node (ref U5) (pin 9)))
    (net (code 61) (name "Net-(U5-Pad14)")
      (node (ref U5) (pin 14)))
    (net (code 62) (name "Net-(J6-Pad2)")
      (node (ref J6) (pin 2)))
    (net (code 63) (name "Net-(U5-Pad10)")
      (node (ref U5) (pin 10)))
    (net (code 64) (name "Net-(U5-Pad11)")
      (node (ref U5) (pin 11)))
    (net (code 65) (name "Net-(U5-Pad15)")
      (node (ref U5) (pin 15)))
    (net (code 66) (name "Net-(U5-Pad16)")
      (node (ref U5) (pin 16)))
    (net (code 67) (name "Net-(U5-Pad17)")
      (node (ref U5) (pin 17)))
    (net (code 68) (name "Net-(U5-Pad18)")
      (node (ref U5) (pin 18)))
    (net (code 69) (name "Net-(U5-Pad19)")
      (node (ref U5) (pin 19)))
    (net (code 70) (name "Net-(U5-Pad20)")
      (node (ref U5) (pin 20)))
    (net (code 71) (name "Net-(D6-Pad2)")
      (node (ref D6) (pin 2))
      (node (ref R18) (pin 2)))
    (net (code 72) (name "Net-(J7-Pad1)")
      (node (ref J7) (pin 1)))
    (net (code 73) (name "Net-(J7-Pad4)")
      (node (ref J7) (pin 4))
      (node (ref R19) (pin 1)))
    (net (code 74) (name "Net-(C3-Pad1)")
      (node (ref U1) (pin 13))
      (node (ref C3) (pin 1)))
    (net (code 75) (name "Net-(C3-Pad2)")
      (node (ref D4) (pin 1))
      (node (ref D2) (pin 2))
      (node (ref C3) (pin 2)))
    (net (code 76) (name "Net-(U1-Pad32)")
      (node (ref U1) (pin 32)))
    (net (code 77) (name "Net-(R12-Pad2)")
      (node (ref U1) (pin 7))
      (node (ref R12) (pin 2)))
    (net (code 78) (name "Net-(C2-Pad2)")
      (node (ref C2) (pin 2))
      (node (ref D2) (pin 1))
      (node (ref U1) (pin 14)))
    (net (code 79) (name "Net-(U2-Pad32)")
      (node (ref U2) (pin 32)))
    (net (code 80) (name "Net-(U2-Pad10)")
      (node (ref U2) (pin 10)))
    (net (code 81) (name "Net-(U2-Pad11)")
      (node (ref U2) (pin 11)))
    (net (code 82) (name "Net-(R14-Pad1)")
      (node (ref U1) (pin 6))
      (node (ref R14) (pin 1)))
    (net (code 83) (name "Net-(J1-Pad3)")
      (node (ref J1) (pin 3))
      (node (ref R3) (pin 2)))
    (net (code 84) (name "Net-(U1-Pad10)")
      (node (ref U1) (pin 10)))
    (net (code 85) (name "Net-(U1-Pad11)")
      (node (ref U1) (pin 11)))
    (net (code 86) (name /CS1n)
      (node (ref R10) (pin 1))
      (node (ref U1) (pin 30)))
    (net (code 87) (name /MOT1_1A)
      (node (ref U1) (pin 2))
      (node (ref J5) (pin 1))
      (node (ref U1) (pin 3)))
    (net (code 88) (name /MOT1_2A)
      (node (ref U1) (pin 36))
      (node (ref J5) (pin 2))
      (node (ref U1) (pin 35)))
    (net (code 89) (name /MOT1_1B)
      (node (ref U1) (pin 18))
      (node (ref U1) (pin 17))
      (node (ref J5) (pin 3)))
    (net (code 90) (name /MOT1_2B)
      (node (ref J5) (pin 4))
      (node (ref U1) (pin 21))
      (node (ref U1) (pin 20)))
    (net (code 91) (name "Net-(D1-Pad1)")
      (node (ref U3) (pin 2))
      (node (ref D1) (pin 1))
      (node (ref L1) (pin 1)))
    (net (code 92) (name "Net-(CT1-Pad1)")
      (node (ref U3) (pin 3))
      (node (ref CT1) (pin 1)))
    (net (code 93) (name "Net-(J2-Pad3)")
      (node (ref J2) (pin 3))
      (node (ref R6) (pin 2)))
    (net (code 94) (name "Net-(J1-Pad1)")
      (node (ref Q1) (pin 3))
      (node (ref J1) (pin 1)))
    (net (code 95) (name /MOT2_1B)
      (node (ref J4) (pin 3))
      (node (ref U2) (pin 18))