This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscience_cake_mosfets_2.net
924 lines (924 loc) · 37.7 KB
/
science_cake_mosfets_2.net
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
(export (version D)
(design
(source "C:\\Users\\alexa\\Documents\\SC Robotics\\cake mosfets\\science_cake_mosfets_2\\science_cake_mosfets_2.sch")
(date "12/31/2021 2:33:03 PM")
(tool "Eeschema (5.1.10)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source science_cake_mosfets_2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J3)
(value Conn_01x20)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x20) (description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61CEBDB4))
(comp (ref J5)
(value Conn_01x20)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x20) (description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61CED90F))
(comp (ref J4)
(value Conn_01x03)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D183DD))
(comp (ref M2)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61D1B0F6))
(comp (ref D2)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61D1C208))
(comp (ref R2)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61D1D187))
(comp (ref Q2)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61D1DECB))
(comp (ref M3)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61D37E90))
(comp (ref D3)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61D37E96))
(comp (ref R3)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61D37E9C))
(comp (ref Q3)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61D37EA2))
(comp (ref M5)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61D484EA))
(comp (ref D5)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61D484F0))
(comp (ref R5)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61D484F6))
(comp (ref Q5)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61D484FC))
(comp (ref M6)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61D4850B))
(comp (ref D6)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61D48511))
(comp (ref R6)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61D48517))
(comp (ref Q6)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61D4851D))
(comp (ref M7)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61D538E6))
(comp (ref D7)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61D538EC))
(comp (ref R7)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61D538F2))
(comp (ref Q7)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61D538F8))
(comp (ref J7)
(value Screw_Terminal_01x06)
(footprint alexisawesome:TerminalBlock_bornier-6_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x06) (description "Generic screw terminal, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D9B697))
(comp (ref M1)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61DBFF44))
(comp (ref D1)
(value 1N4001)
(footprint Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61DBFF4A))
(comp (ref R1)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61DBFF50))
(comp (ref Q1)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61DBFF56))
(comp (ref M4)
(value Motor_DC)
(datasheet ~)
(libsource (lib Motor) (part Motor_DC) (description "DC Motor"))
(sheetpath (names /) (tstamps /))
(tstamp 61E3EBD2))
(comp (ref D4)
(value 1N4001)
(datasheet http://www.vishay.com/docs/88503/1n4001.pdf)
(libsource (lib Diode) (part 1N4001) (description "50V 1A General Purpose Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 61E3EBD8))
(comp (ref R4)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61E3EBDE))
(comp (ref Q4)
(value IRLB8721PBF)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591)
(libsource (lib Transistor_FET) (part IRLB8721PBF) (description "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220"))
(sheetpath (names /) (tstamps /))
(tstamp 61E3EBE4))
(comp (ref J8)
(value Screw_Terminal_01x04)
(footprint alexisawesome:TerminalBlock_bornier-4_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x04) (description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61E9AC17))
(comp (ref J1)
(value Conn_01x20)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x20) (description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61F89022))
(comp (ref J2)
(value Conn_01x20)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x20) (description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61F89028))
(comp (ref J6)
(value Screw_Terminal_01x02)
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D9C950))
(comp (ref PICO2)
(value SC0915_Debugger)
(footprint SC0915_RPI)
(libsource (lib alex_library) (part SC0915) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61CEA542))
(comp (ref PICO1)
(value SC0915_Target)
(footprint SC0915_RPI)
(libsource (lib alex_library) (part SC0915) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61CE8456)))
(libparts
(libpart (lib Connector) (part Screw_Terminal_01x02)
(description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Screw_Terminal_01x04)
(description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_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 Connector) (part Screw_Terminal_01x06)
(description "Generic screw terminal, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x06))
(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))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (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_01x20)
(description "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x20))
(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))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(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 Diode) (part 1N4001)
(aliases
(alias 1N4002)
(alias 1N4003)
(alias 1N4004)
(alias 1N4005)
(alias 1N4006)
(alias 1N4007)
(alias BA157)
(alias BA158)
(alias BA159))
(description "50V 1A General Purpose Rectifier Diode, DO-41")
(docs http://www.vishay.com/docs/88503/1n4001.pdf)
(footprints
(fp D*DO?41*))
(fields
(field (name Reference) D)
(field (name Value) 1N4001)
(field (name Footprint) Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Motor) (part Motor_DC)
(description "DC Motor")
(docs ~)
(footprints
(fp PinHeader*P2.54mm*)
(fp TerminalBlock*))
(fields
(field (name Reference) M)
(field (name Value) Motor_DC))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib Transistor_FET) (part BUZ11)
(aliases
(alias IRF3205)
(alias IRF540N)
(alias IRF740)
(alias IRLB8721PBF)
(alias IRLZ34N)
(alias IRLZ44N)
(alias VNP10N07)
(alias IPP060N06N))
(description "30A Id, 50V Vds, N-Channel Power MOSFET, TO-220")
(docs https://media.digikey.com/pdf/Data%20Sheets/Fairchild%20PDFs/BUZ11.pdf)
(footprints
(fp TO?220*))
(fields
(field (name Reference) Q)
(field (name Value) BUZ11)
(field (name Footprint) Package_TO_SOT_THT:TO-220-3_Vertical))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive))))
(libpart (lib alex_library) (part SC0915)
(footprints
(fp SC0915_RPI))
(fields
(field (name Reference) U)
(field (name Value) SC0915)
(field (name Footprint) SC0915_RPI))
(pins
(pin (num 1) (name UART0_TX/I2C0_SDA/SPI0_RX/GP0) (type BiDi))
(pin (num 2) (name UART0_RX/I2C0_SCL/GPI0_CSn/GP1) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name I2C1_SDA/SPI0_SCK/GP2) (type BiDi))
(pin (num 5) (name I2C1_SCL/SPI0_TX/GP3) (type BiDi))
(pin (num 6) (name UART1_TX/I2C0_SDA/SPI0_RX/GP4) (type BiDi))
(pin (num 7) (name UART1_RX/I2C0_SCL/SPI0_CSn/GP5) (type BiDi))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name I2C1_SDA/SPI0_SCK/GP6) (type BiDi))
(pin (num 10) (name I2C1_SCL/SPI0_TX/GP7) (type BiDi))
(pin (num 11) (name UART1_TX/I2C0_SDA/SPI1_RX/GP8) (type BiDi))
(pin (num 12) (name UART1_RX/I2C0_SCL/SPI1_CSn/GP9) (type BiDi))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name I2C1_SDA/SPI1_SCK/GP10) (type BiDi))
(pin (num 15) (name I2C1_SCL/SPI1_TX/GP11) (type BiDi))
(pin (num 16) (name UART0_TX/I2C0_SDA/GPI1_RX/GP12) (type BiDi))
(pin (num 17) (name UART0_RX/I2C0_SCL/SPI1_CSn/GP13) (type BiDi))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name I2C1_SDA/SPI1_SCK/GP14) (type BiDi))
(pin (num 20) (name I2C1_SCL/SPI1_TX/GP15) (type BiDi))
(pin (num 21) (name UART0_TX/I2C0_SDA/SPI0_RX/GP16) (type BiDi))
(pin (num 22) (name UART0_RX/I2C0_SCL/SPI0_CSn/GP17) (type BiDi))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name I2C1_SDA/SPI0_SCK/GP18) (type BiDi))
(pin (num 25) (name I2C1_SCL/SPI0_TX/GP19) (type BiDi))
(pin (num 26) (name I2C0_SDA/GP20) (type BiDi))
(pin (num 27) (name I2C0_SCL/GP21) (type BiDi))
(pin (num 28) (name GND) (type power_in))
(pin (num 29) (name GP22) (type BiDi))
(pin (num 30) (name RUN) (type unspc))
(pin (num 31) (name I2C1_SDA/ADC0/GP26) (type BiDi))
(pin (num 32) (name I2C1_SCL/ADC1/GP27) (type BiDi))
(pin (num 33) (name AGND/GND) (type power_in))
(pin (num 34) (name ADC2/GP28) (type BiDi))
(pin (num 35) (name ADC_VREF) (type power_in))
(pin (num 36) (name 3V3OUT) (type output))
(pin (num 37) (name 3V3_EN) (type power_in))
(pin (num 38) (name GND) (type power_in))
(pin (num 39) (name VSYS) (type power_in))
(pin (num 40) (name VBUS) (type power_in))
(pin (num A) (name GND) (type power_in))
(pin (num B) (name GND) (type power_in))
(pin (num C) (name GND) (type power_in))
(pin (num D) (name GND) (type power_in))
(pin (num D1) (name SWCLK) (type unspc))
(pin (num D2) (name GND) (type power_in))
(pin (num D3) (name SWDIO) (type unspc))
(pin (num TP1) (name GND) (type power_in))
(pin (num TP2) (name USB_DM) (type unspc))
(pin (num TP3) (name USB_DP) (type unspc))
(pin (num TP4) (name GPIO/SMPS) (type unspc))
(pin (num TP5) (name GPIO25/LED) (type unspc))
(pin (num TP6) (name BOOTSEL) (type unspc)))))
(libraries
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Diode)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Diode.lib"))
(library (logical Motor)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Motor.lib"))
(library (logical Transistor_FET)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Transistor_FET.lib"))
(library (logical alex_library)
(uri C:/Users/alexa/Documents/PCBs/alex_library.lib)))
(nets
(net (code 1) (name "Net-(PICO1-Pad39)")
(node (ref PICO1) (pin 39)))
(net (code 2) (name "Net-(PICO1-PadTP6)")
(node (ref PICO1) (pin TP6)))
(net (code 3) (name "Net-(PICO1-PadTP5)")
(node (ref PICO1) (pin TP5)))
(net (code 4) (name "Net-(PICO1-PadTP4)")
(node (ref PICO1) (pin TP4)))
(net (code 5) (name "Net-(PICO1-PadTP3)")
(node (ref PICO1) (pin TP3)))
(net (code 6) (name "Net-(PICO1-PadTP2)")
(node (ref PICO1) (pin TP2)))
(net (code 7) (name "Net-(PICO1-Pad37)")
(node (ref PICO1) (pin 37)))
(net (code 8) (name "Net-(PICO1-Pad36)")
(node (ref PICO1) (pin 36)))
(net (code 9) (name "Net-(PICO1-Pad35)")
(node (ref PICO1) (pin 35)))
(net (code 10) (name "Net-(PICO1-Pad34)")
(node (ref PICO1) (pin 34)))
(net (code 11) (name "Net-(PICO1-Pad32)")
(node (ref PICO1) (pin 32)))
(net (code 12) (name "Net-(PICO1-Pad31)")
(node (ref PICO1) (pin 31)))
(net (code 13) (name "Net-(PICO1-Pad30)")
(node (ref PICO1) (pin 30)))
(net (code 14) (name "Net-(PICO2-PadTP6)")
(node (ref PICO2) (pin TP6)))
(net (code 15) (name "Net-(PICO2-PadTP5)")
(node (ref PICO2) (pin TP5)))
(net (code 16) (name COM)
(node (ref Q3) (pin 3))
(node (ref Q5) (pin 3))
(node (ref R6) (pin 2))
(node (ref Q6) (pin 3))
(node (ref R5) (pin 2))
(node (ref R3) (pin 2))
(node (ref R7) (pin 2))
(node (ref Q7) (pin 3))
(node (ref J1) (pin 3))
(node (ref PICO1) (pin 18))
(node (ref PICO1) (pin 28))
(node (ref PICO1) (pin 38))
(node (ref PICO2) (pin 3))
(node (ref R4) (pin 2))
(node (ref Q4) (pin 3))
(node (ref J5) (pin 3))
(node (ref J3) (pin 18))
(node (ref R2) (pin 2))
(node (ref Q2) (pin 3))
(node (ref J4) (pin 2))
(node (ref J5) (pin 18))
(node (ref R1) (pin 2))
(node (ref Q1) (pin 3))
(node (ref J6) (pin 1)))
(net (code 17) (name "Net-(PICO2-PadTP4)")
(node (ref PICO2) (pin TP4)))
(net (code 18) (name "Net-(PICO1-Pad20)")
(node (ref PICO1) (pin 20)))
(net (code 19) (name "Net-(PICO1-Pad19)")
(node (ref PICO1) (pin 19)))
(net (code 20) (name "Net-(PICO1-Pad17)")
(node (ref PICO1) (pin 17)))
(net (code 21) (name "Net-(PICO1-Pad16)")
(node (ref PICO1) (pin 16)))
(net (code 22) (name "Net-(PICO1-Pad13)")
(node (ref PICO1) (pin 13)))
(net (code 23) (name "Net-(PICO1-Pad6)")
(node (ref PICO1) (pin 6)))
(net (code 24) (name "Net-(PICO1-Pad5)")
(node (ref PICO1) (pin 5)))
(net (code 25) (name "Net-(PICO1-Pad4)")
(node (ref PICO1) (pin 4)))
(net (code 26) (name "Net-(PICO2-Pad9)")
(node (ref PICO2) (pin 9)))
(net (code 27) (name "Net-(PICO2-Pad19)")
(node (ref PICO2) (pin 19)))
(net (code 28) (name "Net-(PICO2-Pad17)")
(node (ref PICO2) (pin 17)))
(net (code 29) (name "Net-(PICO2-Pad16)")
(node (ref PICO2) (pin 16)))
(net (code 30) (name "Net-(PICO2-Pad15)")
(node (ref PICO2) (pin 15)))
(net (code 31) (name "Net-(PICO2-Pad14)")
(node (ref PICO2) (pin 14)))
(net (code 32) (name "Net-(PICO2-Pad13)")
(node (ref PICO2) (pin 13)))
(net (code 33) (name "Net-(PICO2-Pad12)")
(node (ref PICO2) (pin 12)))
(net (code 34) (name "Net-(PICO2-Pad11)")
(node (ref PICO2) (pin 11)))
(net (code 35) (name "Net-(PICO2-Pad10)")
(node (ref PICO2) (pin 10)))
(net (code 36) (name "Net-(PICO2-Pad20)")
(node (ref PICO2) (pin 20)))
(net (code 37) (name "Net-(PICO2-Pad2)")
(node (ref PICO2) (pin 2)))
(net (code 38) (name "Net-(PICO2-Pad1)")
(node (ref PICO2) (pin 1)))
(net (code 39) (name "Net-(PICO2-Pad27)")
(node (ref PICO2) (pin 27)))
(net (code 40) (name "Net-(PICO2-PadTP3)")
(node (ref PICO2) (pin TP3)))
(net (code 41) (name "Net-(PICO2-PadTP2)")
(node (ref PICO2) (pin TP2)))
(net (code 42) (name "Net-(PICO2-PadD3)")
(node (ref PICO2) (pin D3)))
(net (code 43) (name "Net-(PICO2-Pad39)")
(node (ref PICO2) (pin 39)))
(net (code 44) (name "Net-(PICO2-PadD1)")
(node (ref PICO2) (pin D1)))
(net (code 45) (name "Net-(PICO2-Pad37)")
(node (ref PICO2) (pin 37)))
(net (code 46) (name "Net-(PICO2-Pad36)")
(node (ref PICO2) (pin 36)))
(net (code 47) (name "Net-(PICO2-Pad35)")
(node (ref PICO2) (pin 35)))
(net (code 48) (name "Net-(PICO2-Pad34)")
(node (ref PICO2) (pin 34)))
(net (code 49) (name "Net-(PICO2-Pad29)")
(node (ref PICO2) (pin 29)))
(net (code 50) (name "Net-(PICO2-Pad30)")
(node (ref PICO2) (pin 30)))
(net (code 51) (name "Net-(PICO2-Pad31)")
(node (ref PICO2) (pin 31)))
(net (code 52) (name "Net-(PICO2-Pad32)")
(node (ref PICO2) (pin 32)))
(net (code 53) (name "Net-(PICO2-Pad26)")
(node (ref PICO2) (pin 26)))
(net (code 54) (name "Net-(PICO2-Pad25)")
(node (ref PICO2) (pin 25)))
(net (code 55) (name "Net-(PICO2-Pad24)")
(node (ref PICO2) (pin 24)))
(net (code 56) (name "Net-(PICO2-Pad22)")
(node (ref PICO2) (pin 22)))
(net (code 57) (name "Net-(PICO2-Pad21)")
(node (ref PICO2) (pin 21)))
(net (code 58) (name "Net-(J1-Pad1)")
(node (ref J1) (pin 1)))
(net (code 59) (name "Net-(J1-Pad10)")
(node (ref J1) (pin 10)))
(net (code 60) (name "Net-(J1-Pad11)")
(node (ref J1) (pin 11)))
(net (code 61) (name "Net-(J1-Pad12)")
(node (ref J1) (pin 12)))
(net (code 62) (name "Net-(J1-Pad13)")
(node (ref J1) (pin 13)))
(net (code 63) (name "Net-(J1-Pad14)")
(node (ref J1) (pin 14)))
(net (code 64) (name "Net-(J2-Pad4)")
(node (ref J2) (pin 4)))
(net (code 65) (name "Net-(J2-Pad14)")
(node (ref J2) (pin 14)))
(net (code 66) (name "Net-(J2-Pad15)")
(node (ref J2) (pin 15)))
(net (code 67) (name "Net-(J2-Pad16)")
(node (ref J2) (pin 16)))
(net (code 68) (name "Net-(J2-Pad17)")
(node (ref J2) (pin 17)))
(net (code 69) (name "Net-(J2-Pad18)")
(node (ref J2) (pin 18)))
(net (code 70) (name "Net-(J2-Pad19)")
(node (ref J2) (pin 19)))
(net (code 71) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2)))
(net (code 72) (name "Net-(J2-Pad20)")
(node (ref J2) (pin 20)))
(net (code 73) (name "Net-(J2-Pad3)")
(node (ref J2) (pin 3)))
(net (code 74) (name "Net-(J2-Pad13)")
(node (ref J2) (pin 13)))
(net (code 75) (name "Net-(J2-Pad5)")
(node (ref J2) (pin 5)))
(net (code 76) (name "Net-(J2-Pad6)")
(node (ref J2) (pin 6)))
(net (code 77) (name "Net-(J2-Pad7)")
(node (ref J2) (pin 7)))
(net (code 78) (name "Net-(J2-Pad8)")
(node (ref J2) (pin 8)))
(net (code 79) (name "Net-(J2-Pad9)")
(node (ref J2) (pin 9)))
(net (code 80) (name SWDIO)
(node (ref PICO1) (pin D3))
(node (ref J4) (pin 3))
(node (ref PICO2) (pin 5))
(node (ref J1) (pin 5)))
(net (code 81) (name "Net-(J1-Pad15)")
(node (ref J1) (pin 15)))
(net (code 82) (name "Net-(J1-Pad16)")
(node (ref J1) (pin 16)))
(net (code 83) (name "Net-(J1-Pad17)")
(node (ref J1) (pin 17)))
(net (code 84) (name "Net-(J1-Pad18)")
(node (ref J1) (pin 18)))
(net (code 85) (name "Net-(J1-Pad19)")
(node (ref J1) (pin 19)))
(net (code 86) (name "Net-(J1-Pad2)")
(node (ref J1) (pin 2)))
(net (code 87) (name "Net-(J1-Pad20)")
(node (ref J1) (pin 20)))
(net (code 88) (name TX)
(node (ref PICO1) (pin 2))
(node (ref J3) (pin 2))
(node (ref J1) (pin 6))
(node (ref PICO2) (pin 6)))
(net (code 89) (name RX)
(node (ref PICO2) (pin 7))
(node (ref J3) (pin 1))
(node (ref J1) (pin 7))
(node (ref PICO1) (pin 1)))
(net (code 90) (name "Net-(J1-Pad8)")
(node (ref J1) (pin 8)))
(net (code 91) (name "Net-(J1-Pad9)")
(node (ref J1) (pin 9)))
(net (code 92) (name VBUS)
(node (ref PICO2) (pin 40))
(node (ref J5) (pin 1))
(node (ref PICO1) (pin 40))
(node (ref J2) (pin 1)))
(net (code 93) (name "Net-(J2-Pad10)")
(node (ref J2) (pin 10)))
(net (code 94) (name "Net-(J2-Pad11)")
(node (ref J2) (pin 11)))
(net (code 95) (name "Net-(J2-Pad12)")
(node (ref J2) (pin 12)))
(net (code 96) (name "Net-(PICO1-Pad11)")
(node (ref PICO1) (pin 11)))
(net (code 97) (name "Net-(PICO1-Pad12)")
(node (ref PICO1) (pin 12)))
(net (code 98) (name "Net-(PICO1-Pad14)")
(node (ref PICO1) (pin 14)))
(net (code 99) (name "Net-(PICO1-Pad15)")
(node (ref PICO1) (pin 15)))
(net (code 100) (name "Net-(PICO1-Pad10)")
(node (ref PICO1) (pin 10)))
(net (code 101) (name "Net-(PICO1-Pad23)")
(node (ref PICO1) (pin 23)))
(net (code 102) (name "Net-(PICO1-PadTP1)")
(node (ref PICO1) (pin TP1)))
(net (code 103) (name "Net-(PICO2-Pad8)")
(node (ref PICO2) (pin 8)))
(net (code 104) (name "Net-(PICO1-Pad8)")
(node (ref PICO1) (pin 8)))
(net (code 105) (name "Net-(PICO1-Pad3)")
(node (ref PICO1) (pin 3)))
(net (code 106) (name "Net-(PICO1-PadA)")
(node (ref PICO1) (pin A)))
(net (code 107) (name "Net-(PICO1-PadB)")
(node (ref PICO1) (pin B)))
(net (code 108) (name "Net-(PICO1-PadC)")
(node (ref PICO1) (pin C)))
(net (code 109) (name "Net-(PICO1-PadD)")
(node (ref PICO1) (pin D)))
(net (code 110) (name "Net-(PICO1-PadD2)")
(node (ref PICO1) (pin D2)))
(net (code 111) (name "Net-(PICO1-Pad33)")
(node (ref PICO1) (pin 33)))
(net (code 112) (name "Net-(PICO2-Pad23)")
(node (ref PICO2) (pin 23)))
(net (code 113) (name "Net-(PICO1-Pad7)")
(node (ref PICO1) (pin 7)))
(net (code 114) (name "Net-(PICO1-Pad9)")
(node (ref PICO1) (pin 9)))
(net (code 115) (name "Net-(PICO2-Pad18)")
(node (ref PICO2) (pin 18)))
(net (code 116) (name "Net-(PICO2-Pad28)")
(node (ref PICO2) (pin 28)))
(net (code 117) (name "Net-(PICO2-PadA)")
(node (ref PICO2) (pin A)))
(net (code 118) (name "Net-(PICO2-PadD2)")
(node (ref PICO2) (pin D2)))
(net (code 119) (name "Net-(PICO2-PadTP1)")
(node (ref PICO2) (pin TP1)))
(net (code 120) (name "Net-(PICO2-PadD)")
(node (ref PICO2) (pin D)))
(net (code 121) (name "Net-(PICO2-PadB)")
(node (ref PICO2) (pin B)))
(net (code 122) (name "Net-(PICO2-PadC)")
(node (ref PICO2) (pin C)))
(net (code 123) (name "Net-(PICO2-Pad38)")
(node (ref PICO2) (pin 38)))
(net (code 124) (name "Net-(PICO2-Pad33)")
(node (ref PICO2) (pin 33)))
(net (code 125) (name SWCLK)
(node (ref PICO1) (pin D1))
(node (ref PICO2) (pin 4))
(node (ref J1) (pin 4))
(node (ref J4) (pin 1)))
(net (code 126) (name PUMPS_12V)
(node (ref D6) (pin 1))
(node (ref J8) (pin 1))
(node (ref J8) (pin 3))
(node (ref D4) (pin 1))
(node (ref D5) (pin 1))
(node (ref M3) (pin 1))
(node (ref D3) (pin 1))
(node (ref M2) (pin 1))
(node (ref D2) (pin 1))
(node (ref M4) (pin 1))
(node (ref M1) (pin 1))
(node (ref D1) (pin 1))
(node (ref M6) (pin 1))
(node (ref J6) (pin 2))
(node (ref J7) (pin 6))
(node (ref D7) (pin 1))
(node (ref M5) (pin 1))
(node (ref M7) (pin 1)))
(net (code 127) (name D_PUMP_B)
(node (ref M3) (pin 2))
(node (ref Q3) (pin 2))
(node (ref D3) (pin 2))
(node (ref J7) (pin 4)))
(net (code 128) (name G_VACUUM)
(node (ref R4) (pin 1))
(node (ref PICO1) (pin 22))
(node (ref Q4) (pin 1))
(node (ref J5) (pin 19)))
(net (code 129) (name "Net-(J5-Pad10)")
(node (ref J5) (pin 10)))
(net (code 130) (name "Net-(J5-Pad11)")
(node (ref J5) (pin 11)))
(net (code 131) (name G_PUMP_A)
(node (ref Q2) (pin 1))
(node (ref R2) (pin 1))
(node (ref J5) (pin 12))
(node (ref PICO1) (pin 29)))
(net (code 132) (name "Net-(J5-Pad13)")
(node (ref J5) (pin 13)))
(net (code 133) (name G_PUMP_B)
(node (ref R3) (pin 1))
(node (ref J5) (pin 14))
(node (ref Q3) (pin 1))
(node (ref PICO1) (pin 27)))
(net (code 134) (name G_PUMP_C)
(node (ref J5) (pin 15))
(node (ref PICO1) (pin 26))
(node (ref Q5) (pin 1))
(node (ref R5) (pin 1)))
(net (code 135) (name G_PUMP_D)
(node (ref Q6) (pin 1))
(node (ref J5) (pin 16))
(node (ref PICO1) (pin 25))
(node (ref R6) (pin 1)))
(net (code 136) (name G_PUMP_E)
(node (ref Q7) (pin 1))
(node (ref J5) (pin 17))
(node (ref R7) (pin 1))
(node (ref PICO1) (pin 24)))
(net (code 137) (name "Net-(J5-Pad2)")
(node (ref J5) (pin 2)))
(net (code 138) (name G_WATER)
(node (ref PICO1) (pin 21))
(node (ref R1) (pin 1))
(node (ref Q1) (pin 1))
(node (ref J5) (pin 20)))
(net (code 139) (name "Net-(J5-Pad4)")
(node (ref J5) (pin 4)))
(net (code 140) (name "Net-(J5-Pad5)")
(node (ref J5) (pin 5)))
(net (code 141) (name "Net-(J5-Pad6)")
(node (ref J5) (pin 6)))
(net (code 142) (name "Net-(J5-Pad7)")
(node (ref J5) (pin 7)))
(net (code 143) (name "Net-(J5-Pad8)")
(node (ref J5) (pin 8)))
(net (code 144) (name "Net-(J5-Pad9)")
(node (ref J5) (pin 9)))
(net (code 145) (name "Net-(J3-Pad19)")
(node (ref J3) (pin 19)))
(net (code 146) (name "Net-(J3-Pad10)")
(node (ref J3) (pin 10)))
(net (code 147) (name "Net-(J3-Pad11)")
(node (ref J3) (pin 11)))
(net (code 148) (name "Net-(J3-Pad12)")
(node (ref J3) (pin 12)))
(net (code 149) (name "Net-(J3-Pad13)")
(node (ref J3) (pin 13)))
(net (code 150) (name "Net-(J3-Pad14)")
(node (ref J3) (pin 14)))
(net (code 151) (name "Net-(J3-Pad15)")
(node (ref J3) (pin 15)))
(net (code 152) (name "Net-(J3-Pad16)")
(node (ref J3) (pin 16)))
(net (code 153) (name "Net-(J3-Pad17)")
(node (ref J3) (pin 17)))
(net (code 154) (name "Net-(J3-Pad20)")
(node (ref J3) (pin 20)))
(net (code 155) (name "Net-(J3-Pad3)")
(node (ref J3) (pin 3)))
(net (code 156) (name "Net-(J3-Pad4)")
(node (ref J3) (pin 4)))
(net (code 157) (name "Net-(J3-Pad5)")
(node (ref J3) (pin 5)))
(net (code 158) (name "Net-(J3-Pad6)")
(node (ref J3) (pin 6)))
(net (code 159) (name "Net-(J3-Pad7)")
(node (ref J3) (pin 7)))
(net (code 160) (name "Net-(J3-Pad8)")
(node (ref J3) (pin 8)))
(net (code 161) (name "Net-(J3-Pad9)")
(node (ref J3) (pin 9)))
(net (code 162) (name D_PUMP_A)
(node (ref M2) (pin 2))
(node (ref Q2) (pin 2))
(node (ref D2) (pin 2))
(node (ref J7) (pin 5)))
(net (code 163) (name D_WATER)
(node (ref J8) (pin 2))
(node (ref D1) (pin 2))
(node (ref M1) (pin 2))
(node (ref Q1) (pin 2)))
(net (code 164) (name D_VACUUM)
(node (ref J8) (pin 4))
(node (ref Q4) (pin 2))
(node (ref M4) (pin 2))
(node (ref D4) (pin 2)))
(net (code 165) (name D_PUMP_C)
(node (ref M5) (pin 2))
(node (ref D5) (pin 2))
(node (ref Q5) (pin 2))
(node (ref J7) (pin 3)))
(net (code 166) (name D_PUMP_D)
(node (ref J7) (pin 2))
(node (ref D6) (pin 2))
(node (ref M6) (pin 2))
(node (ref Q6) (pin 2)))
(net (code 167) (name D_PUMP_E)
(node (ref D7) (pin 2))
(node (ref Q7) (pin 2))
(node (ref M7) (pin 2))
(node (ref J7) (pin 1)))))