-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
hi-lo.kicad_sch
1416 lines (1385 loc) · 53.1 KB
/
hi-lo.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid b8e9f158-11ed-47d8-aeca-b823f9f18779)
(paper "B")
(title_block
(title "microRusEFI-2L")
(date "2020-05-24")
(rev "R0.5.2")
(company "rusEFI.com")
(comment 1 "Donald Becker")
(comment 2 "AI6OD")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Pack04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "RN" (id 0) (at -7.62 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Pack04" (id 1) (at 5.08 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 6.985 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R network parallel topology isolated" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4 resistor network, parallel topology" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP* SOIC* R*Array*Concave* R*Array*Convex*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Pack04_0_1"
(rectangle (start -6.35 -2.413) (end 3.81 2.413)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start -5.715 1.905) (end -4.445 -1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -3.175 1.905) (end -1.905 -1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -0.635 1.905) (end 0.635 -1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -5.08 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 1.905)
(xy -5.08 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.54)
(xy -2.54 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.905)
(xy -2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.905)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.905)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 1.905 1.905) (end 3.175 -1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Pack04_1_1"
(pin passive line (at -5.08 -5.08 90) (length 2.54)
(name "R1.1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -5.08 90) (length 2.54)
(name "R2.1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "R3.1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "R4.1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "R4.2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 5.08 270) (length 2.54)
(name "R3.2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 5.08 270) (length 2.54)
(name "R2.2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 270) (length 2.54)
(name "R1.2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Driver_FET:MIC4427" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MIC4427" (id 1) (at 1.27 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/mic4426.pdf" (id 3) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Driver, Dual MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual 1.5A-Peak Low-Side MOSFET Driver, DIP-8/SOIC-8/MSOP-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x4.9mm*P1.27mm* MSOP*P0.65mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MIC4427_0_1"
(rectangle (start -7.62 -7.62) (end 7.62 7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "MIC4427_1_1"
(pin no_connect line (at -7.62 0 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "IN_A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "IN_B" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -2.54 180) (length 2.54)
(name "OUT_B" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "V+" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 2.54 180) (length 2.54)
(name "OUT_A" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_3_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_3_Open" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Solder Jumper SPDT" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 3-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_3_Open_0_1"
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.508 1.016) (end 0.508 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.016)
(xy -1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_3_Open_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 116.84 162.56) (diameter 0) (color 0 0 0 0)
(uuid 1b77c8f9-b0fa-45ba-a726-522a68924cf1)
)
(junction (at 148.59 156.845) (diameter 0) (color 0 0 0 0)
(uuid 1dfbb08e-4502-4041-b288-07dbab29f6fa)
)
(junction (at 151.13 220.98) (diameter 0) (color 0 0 0 0)
(uuid 30470147-1c1c-474c-b510-0051dbe7652d)
)
(junction (at 151.13 156.845) (diameter 0) (color 0 0 0 0)
(uuid 32af351e-30db-43fd-8004-85c42f0661d4)
)
(junction (at 143.51 140.97) (diameter 0) (color 0 0 0 0)
(uuid 33529587-bbb4-4ca0-bcdf-15fd64295461)
)
(junction (at 149.86 220.98) (diameter 0) (color 0 0 0 0)
(uuid 46d408fa-dd49-4762-9c6e-4858cc3099bc)
)
(junction (at 165.1 162.56) (diameter 0) (color 0 0 0 0)
(uuid 8538d430-1fd4-494f-ab17-e95325a71380)
)
(junction (at 146.05 135.89) (diameter 0) (color 0 0 0 0)
(uuid 9399a2b1-4c2e-41f3-8f9a-0a23f3b4fe50)
)
(junction (at 101.6 128.27) (diameter 0) (color 0 0 0 0)
(uuid 98f7a6a3-ac69-4163-be23-0a2022dda0b0)
)
(junction (at 146.05 156.845) (diameter 0) (color 0 0 0 0)
(uuid adae0e75-68d2-4a2b-98da-d0b9556bd126)
)
(junction (at 151.13 175.26) (diameter 0) (color 0 0 0 0)
(uuid b69731dc-a74d-4be9-8b11-0a21dad4be18)
)
(junction (at 153.67 170.18) (diameter 0) (color 0 0 0 0)
(uuid bb6903ed-84a9-4c39-98ce-b2fbbf83ed6c)
)
(junction (at 90.17 128.27) (diameter 0) (color 0 0 0 0)
(uuid c1383de0-8b89-4198-8e13-094764dd7221)
)
(junction (at 146.05 205.74) (diameter 0) (color 0 0 0 0)
(uuid c9549976-7e08-4d60-8899-3ba07e9939f9)
)
(junction (at 148.59 220.98) (diameter 0) (color 0 0 0 0)
(uuid cbba6077-8b44-42ce-8e79-5897f04e7903)
)
(junction (at 148.59 200.66) (diameter 0) (color 0 0 0 0)
(uuid e48c2411-8cec-4a56-a964-fc311cc46655)
)
(no_connect (at 148.59 146.685) (uuid 1525535f-a14f-4148-bf1a-2c1a2802f16c))
(no_connect (at 151.13 146.685) (uuid fa0658a8-b566-42fd-96ec-033831ff4d14))
(wire (pts (xy 146.05 205.74) (xy 156.21 205.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 001e2ab6-998e-46c3-b909-18e1a6eca211)
)
(wire (pts (xy 196.85 170.18) (xy 198.12 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02c86f21-caef-4fbc-95b0-d828a7114318)
)
(wire (pts (xy 198.12 200.66) (xy 199.39 200.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14202ecb-5941-455d-a867-b86716db90d7)
)
(wire (pts (xy 176.53 205.74) (xy 190.5 205.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14891ca4-c283-4a64-98dc-86c5d6e033a0)
)
(wire (pts (xy 90.17 128.27) (xy 101.6 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18ca81dd-94c5-4d8f-956e-df7c87fd0b93)
)
(wire (pts (xy 198.12 205.74) (xy 199.39 205.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c6434d3-2eb4-45c4-919b-76bc5df93b2a)
)
(wire (pts (xy 95.25 121.92) (xy 97.155 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d901cb2-360a-4708-b3ed-e4b172d3996f)
)
(wire (pts (xy 177.8 162.56) (xy 165.1 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1eff450e-d239-4e31-9c3f-596e83e33a69)
)
(wire (pts (xy 161.925 148.59) (xy 161.925 150.495))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1feb75da-52bc-4f54-bc22-6a4b1520ccea)
)
(wire (pts (xy 196.85 175.26) (xy 198.12 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21930fd1-46a2-4b3e-9765-d207f0464a07)
)
(wire (pts (xy 172.085 135.89) (xy 187.96 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2efaba24-aee5-4bea-ae84-dbce9fb4b72e)
)
(wire (pts (xy 195.58 135.89) (xy 196.85 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3406438b-af44-4c6b-93b5-d0d24ae94a91)
)
(wire (pts (xy 148.59 200.66) (xy 148.59 210.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3493c959-87a4-4c52-b026-4808a6774531)
)
(wire (pts (xy 176.53 200.66) (xy 190.5 200.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 362755ad-ea41-482e-bb23-627c6eb15a40)
)
(wire (pts (xy 138.43 140.97) (xy 143.51 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36ab2ee8-a550-4312-900e-fe60a1ab52df)
)
(wire (pts (xy 110.49 162.56) (xy 116.84 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39b32332-d6eb-4066-9c5a-784c77cb509f)
)
(wire (pts (xy 139.7 170.18) (xy 153.67 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ea03728-7a77-4313-bf8a-27a007c9d6a6)
)
(wire (pts (xy 101.6 135.89) (xy 101.6 137.795))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4227d0f4-4162-4ece-9ec9-195feb76c6dd)
)
(wire (pts (xy 166.37 213.36) (xy 166.37 214.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4362d6f1-39b0-4140-a0c9-e1c7e29f1387)
)
(wire (pts (xy 139.7 175.26) (xy 151.13 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44e721b9-a161-4059-8ad4-0330db8573e5)
)
(wire (pts (xy 143.51 140.97) (xy 143.51 146.685))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4711680f-0033-4792-90b3-99dc2aa8a7cf)
)
(wire (pts (xy 153.67 170.18) (xy 153.67 210.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4da42412-11c8-43c1-a7e4-fee17c98b4ba)
)
(wire (pts (xy 140.97 205.74) (xy 146.05 205.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b55646c-afd9-4127-85d7-7d899753820b)
)
(wire (pts (xy 90.17 125.73) (xy 90.17 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 609c03aa-db26-47fb-b858-1a8c9396360a)
)
(wire (pts (xy 175.26 170.18) (xy 189.23 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dd24007-4e31-4437-a050-fa6e699c9468)
)
(wire (pts (xy 140.97 200.66) (xy 148.59 200.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77da69f1-4a7e-4daf-b100-27fb75871e8c)
)
(wire (pts (xy 165.1 182.88) (xy 165.1 184.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bd6a5a6-975a-47f2-9ae0-724cced216ae)
)
(wire (pts (xy 154.94 170.18) (xy 153.67 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86bba780-a183-42d2-86e6-b1ca627942a1)
)
(wire (pts (xy 83.185 121.92) (xy 85.09 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8edcf05f-b0d5-49a3-b916-fcd5f9b197b1)
)
(wire (pts (xy 138.43 135.89) (xy 146.05 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 906df0a0-5839-47c0-b332-cec00bfc8d50)
)
(wire (pts (xy 151.13 175.26) (xy 151.13 210.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94b2d264-2d2c-4376-b127-a770616fcdbf)
)
(wire (pts (xy 116.84 162.56) (xy 165.1 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c6800c7-760c-4f03-9c91-64575523dd35)
)
(wire (pts (xy 151.13 175.26) (xy 154.94 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a99fd9b5-8940-4c26-9884-c49137a564b7)
)
(wire (pts (xy 146.05 205.74) (xy 146.05 210.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3b1beb9-ce17-4882-bb4d-7e5a00c65d48)
)
(wire (pts (xy 156.21 200.66) (xy 148.59 200.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9601a0d-d977-4b3d-b39f-d76ae64bf1a5)
)
(wire (pts (xy 143.51 140.97) (xy 151.765 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bce33354-18a7-44b2-9dba-ee85e434d6ee)
)
(wire (pts (xy 116.84 170.18) (xy 116.84 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdc5ca11-10e5-4600-9ef9-bb85404d6bea)
)
(wire (pts (xy 148.59 156.845) (xy 151.13 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c03374e9-87ea-401d-8ec8-f0596c74ecdf)
)
(wire (pts (xy 146.05 220.98) (xy 148.59 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0b7f3c6-3a8b-4cbc-8e07-4879365e8103)
)
(wire (pts (xy 151.13 220.98) (xy 153.67 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1212456-d2b9-440c-9946-508c16588497)
)
(wire (pts (xy 175.26 175.26) (xy 189.23 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4b1e7cf-3aa3-45c5-8585-741388413869)
)
(wire (pts (xy 151.765 135.89) (xy 146.05 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9293921-3f4d-4839-bf8f-cb50bb7c5431)
)
(wire (pts (xy 177.8 193.04) (xy 177.8 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb2ff936-d01f-4ed3-a5da-0089d3c4dd41)
)
(wire (pts (xy 143.51 156.845) (xy 146.05 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf03ad8f-66ef-45f9-8345-2635d0d3edd5)
)
(wire (pts (xy 149.86 220.98) (xy 151.13 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf0a08fc-a7e1-4e2e-b77b-d5d82ed08115)
)
(wire (pts (xy 166.37 193.04) (xy 177.8 193.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d35150b0-2eb6-4157-85e4-9498d87dce2c)
)
(wire (pts (xy 195.58 140.97) (xy 196.85 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd25caf2-c470-499e-9b28-d47564283b2f)
)
(wire (pts (xy 101.6 128.27) (xy 161.925 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0e4f26b-9768-45ce-836e-303c9ffcd23d)
)
(wire (pts (xy 146.05 156.845) (xy 148.59 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed5d521b-24d1-4974-b18e-6b700d9b109f)
)
(wire (pts (xy 172.085 140.97) (xy 187.96 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edff7200-18c6-4e0c-99f9-a118fc24b63a)
)
(wire (pts (xy 146.05 135.89) (xy 146.05 146.685))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7cd5e79-c8f9-4e9b-991c-a91934b795d2)
)
(wire (pts (xy 149.86 220.98) (xy 149.86 223.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7d43406-366f-4e28-b077-a5ba452fce9a)
)
(wire (pts (xy 148.59 220.98) (xy 149.86 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fffbe5d9-ab4f-4620-8b07-dfed6958ef21)
)
(text "Note: Jumpering for 12V output\nresults in output resistors not\nsurviving a short to ground"
(at 76.2 114.3 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4d9c5bb1-1a0b-4685-9b64-9623bdfa6e36)
)
(text "6 channel high / low side driver" (at 158.75 83.82 0)
(effects (font (size 4.064 4.064) (thickness 0.8128) bold) (justify left bottom))
(uuid 9a685b37-4a30-4b2a-9c54-4a8e4fc58508)
)
(hierarchical_label "Ign1_MCU" (shape input) (at 139.7 170.18 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid 0a742bb2-0657-47bc-9dea-e70308e1113a)
)
(hierarchical_label "Ign2" (shape input) (at 198.12 175.26 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid 345d0db5-afa8-4790-839b-293d8c7171b3)
)
(hierarchical_label "Ign3" (shape input) (at 199.39 200.66 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid 46f1fe2c-bc01-4b14-852f-f73c7cee1411)
)
(hierarchical_label "Ign3_MCU" (shape input) (at 140.97 200.66 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid 8b398452-7864-4ae1-87b2-f3c31f993db8)
)
(hierarchical_label "Ign1" (shape input) (at 198.12 170.18 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid 907bca71-7218-4f03-b4bd-586121fcf8e0)
)
(hierarchical_label "12V" (shape input) (at 97.155 121.92 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left))
(uuid 911aa946-11a4-4082-a79a-bc4f1c265350)
)
(hierarchical_label "Ign2_MCU" (shape input) (at 139.7 175.26 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid 9a87bfc4-c304-4037-8ceb-f6545574a9e8)
)
(hierarchical_label "GP5" (shape input) (at 196.85 135.89 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid af344df5-f8f1-4300-8c40-51d1681a9cb2)
)
(hierarchical_label "5V" (shape input) (at 83.185 121.92 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid b6d945bb-e2eb-4605-8009-e2c500075502)
)
(hierarchical_label "Ign4_MCU" (shape input) (at 140.97 205.74 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid bea25862-abba-489f-bceb-f737bbb678c5)
)
(hierarchical_label "GP6" (shape input) (at 196.85 140.97 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid c469846c-a104-4bfc-aae8-66d18a7e7de0)
)
(hierarchical_label "GP5_MCU" (shape input) (at 138.43 135.89 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid caa4298d-02d5-4f80-9b9d-47f1bd739f15)
)
(hierarchical_label "Ign4" (shape input) (at 199.39 205.74 0)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left))
(uuid de759948-161e-4bbe-93f4-670a576de500)
)
(hierarchical_label "GP6_MCU" (shape input) (at 138.43 140.97 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid eea8afc9-500b-4e96-9580-ce3dbde5cd58)
)
(hierarchical_label "5V" (shape input) (at 110.49 162.56 180)
(effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify right))
(uuid f48f0041-ce42-4bd4-9cbf-e7a61f40b63d)
)
(symbol (lib_id "power:GND") (at 149.86 223.52 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d14ae1c)
(property "Reference" "#PWR0153" (id 0) (at 149.86 223.52 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 149.86 225.298 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 149.86 223.52 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 149.86 223.52 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 0d8c8089-ae46-48c7-a795-9e419507a290))
)
(symbol (lib_id "Device:C") (at 116.84 166.37 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d15752c)
(property "Reference" "C78" (id 0) (at 113.665 166.37 90)
(effects (font (size 1.016 1.016)))
)
(property "Value" "100nF" (id 1) (at 115.57 172.72 90)
(effects (font (size 1.016 1.016)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 277.368 292.1 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 116.84 166.37 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "LCSC" "C14663" (id 4) (at 116.84 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "KEMET" (id 5) (at 116.84 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part #" "C0603C104J5RACTU" (id 6) (at 116.84 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND" "DIGI" (id 7) (at 116.84 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND#" "399-7844-1-ND" (id 8) (at 116.84 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c0e9b062-c3b9-451a-b23b-76d93dbd6d24))
(pin "2" (uuid d76e354a-8d1a-4b11-ba54-532927a76cd5))
)
(symbol (lib_id "power:GND") (at 116.84 171.45 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d157536)
(property "Reference" "#PWR0149" (id 0) (at 116.84 171.45 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 116.84 173.228 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 116.84 171.45 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 116.84 171.45 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 08ab4f48-e8d4-4022-92b6-c262cb810d6a))
)
(symbol (lib_id "Device:R") (at 191.77 135.89 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d157560)
(property "Reference" "R120" (id 0) (at 191.77 133.858 90)
(effects (font (size 1.016 1.016)))
)
(property "Value" "100" (id 1) (at 191.7954 135.7122 90)
(effects (font (size 1.016 1.016)))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 73.66 305.308 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 191.77 135.89 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Part #" "RMCF0603FT100R" (id 4) (at 60.96 327.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND" "DIGI" (id 5) (at 60.96 327.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND#" "RMCF0603FT100RCT-ND" (id 6) (at 60.96 327.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "StackPole" (id 7) (at 60.96 327.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17901" (id 8) (at 191.77 135.89 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2a4d017e-3312-4bdd-beef-a13c551c25f4))
(pin "2" (uuid 4e0c0120-533f-4432-bb24-7b372635d57b))
)
(symbol (lib_id "power:GND") (at 161.925 150.495 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d157576)
(property "Reference" "#PWR0158" (id 0) (at 161.925 150.495 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 161.925 152.273 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 161.925 150.495 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 161.925 150.495 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 19463e4d-e345-449a-af81-4691d3dc1d99))
)
(symbol (lib_id "power:GND") (at 151.13 156.845 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d1575c4)
(property "Reference" "#PWR0150" (id 0) (at 151.13 156.845 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 151.13 158.623 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 151.13 156.845 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 151.13 156.845 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid a9e2f65c-8a75-4442-87be-666d2b8bae9d))
)
(symbol (lib_id "Device:R") (at 191.77 140.97 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d8f7df1)
(property "Reference" "R121" (id 0) (at 191.77 138.938 90)
(effects (font (size 1.016 1.016)))
)
(property "Value" "100" (id 1) (at 191.7954 140.7922 90)
(effects (font (size 1.016 1.016)))
)
(property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 73.66 310.388 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 191.77 140.97 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Part #" "RMCF0603FT100R" (id 4) (at 60.96 332.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND" "DIGI" (id 5) (at 60.96 332.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "VEND#" "RMCF0603FT100RCT-ND" (id 6) (at 60.96 332.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "StackPole" (id 7) (at 60.96 332.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17901" (id 8) (at 191.77 140.97 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1d212e42-129c-48f5-abb2-ddd0e20faa6f))