-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLS4.kicad_sch
1170 lines (1146 loc) · 39.6 KB
/
LS4.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 20230121) (generator eeschema)
(uuid 19b46a8d-6631-4077-b2ac-3948b9569693)
(paper "A4")
(lib_symbols
(symbol "chips:VNLD5160" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 6.35 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNLD5160TR-E" (at 12.7 -11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 13.97 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C377942" (at 11.43 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VNLD5160_1_1"
(rectangle (start 5.08 2.54) (end 22.86 -10.16)
(stroke (width 0) (type default))
(fill (type background))
)
(pin input line (at 0 0 0) (length 5.08)
(name "IN1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 0 -2.54 0) (length 5.08)
(name "STATUS1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -5.08 0) (length 5.08)
(name "IN2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 0 -7.62 0) (length 5.08)
(name "STATUS2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 27.94 -7.62 180) (length 5.08)
(name "S2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 27.94 -5.08 180) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 27.94 -2.54 180) (length 5.08)
(name "S1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 27.94 0 180) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:1N4148WS" (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148WS" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:SOD-323" (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C2128" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148WS_1_0"
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 2.54 0)
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(pin passive line (at 7.62 0 180) (length 5.08)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 5.08)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:Res" (pin_numbers hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 3.81 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Res" (at 5.08 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 3.81 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Res_1_0"
(rectangle (start 2.54 -1.27) (end 7.62 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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))))
)
)
)
)
(junction (at 172.72 29.21) (diameter 0) (color 0 0 0 0)
(uuid 02e5bf0f-b81f-4118-8cbe-bb4a60f97771)
)
(junction (at 90.17 88.9) (diameter 0) (color 0 0 0 0)
(uuid 0755c785-cb5d-4d02-983f-44c9536f9cf3)
)
(junction (at 127 31.75) (diameter 0) (color 0 0 0 0)
(uuid 0bd70727-fcf4-4efe-81c1-21b390da78cd)
)
(junction (at 198.12 24.13) (diameter 0) (color 0 0 0 0)
(uuid 3958dd42-880e-4da6-8644-e0a2338ccffb)
)
(junction (at 172.72 93.98) (diameter 0) (color 0 0 0 0)
(uuid 60102863-2977-41d0-862f-d1b211c721c0)
)
(junction (at 90.17 93.98) (diameter 0) (color 0 0 0 0)
(uuid 606e4eee-06e1-49da-91d8-9f51abd5759a)
)
(junction (at 127 96.52) (diameter 0) (color 0 0 0 0)
(uuid 8651f9e0-79f1-4b9d-af17-7970a9ffd263)
)
(junction (at 198.12 88.9) (diameter 0) (color 0 0 0 0)
(uuid 90e784a9-a4b5-43dc-a1b0-6de01ef70fdb)
)
(junction (at 90.17 24.13) (diameter 0) (color 0 0 0 0)
(uuid d5c402e5-1fe1-45f9-afa5-63b6bf8b447f)
)
(junction (at 90.17 29.21) (diameter 0) (color 0 0 0 0)
(uuid ea91fbce-b55b-4157-a6e5-d85653bbbaac)
)
(no_connect (at 157.48 26.67) (uuid 61028c22-5389-4dc4-b688-12798b8f1e8b))
(no_connect (at 157.48 31.75) (uuid 7a53255a-ae1e-4775-bca5-aaa56f9c2677))
(no_connect (at 157.48 96.52) (uuid 885a460f-b536-49a2-a3f4-76c33040ef76))
(no_connect (at 157.48 91.44) (uuid e80ae3ae-801f-4147-aa37-a7b8f0c3b413))
(wire (pts (xy 127 99.06) (xy 127 96.52))
(stroke (width 0) (type default))
(uuid 048fd427-ebd5-4d62-b51b-7b02f89ba13d)
)
(wire (pts (xy 157.48 24.13) (xy 198.12 24.13))
(stroke (width 0) (type default))
(uuid 05a9235c-72fe-496e-abdc-8bf6390eb44e)
)
(wire (pts (xy 127 31.75) (xy 127 26.67))
(stroke (width 0) (type default))
(uuid 080c13fb-ad47-4607-8575-34d136f3e7fa)
)
(wire (pts (xy 90.17 20.32) (xy 90.17 24.13))
(stroke (width 0) (type default))
(uuid 0fe5216c-1e80-42f4-ac36-219c97ff1c4a)
)
(wire (pts (xy 172.72 29.21) (xy 185.42 29.21))
(stroke (width 0) (type default))
(uuid 2255c909-de16-41b4-8985-57079d83b1a6)
)
(wire (pts (xy 127 31.75) (xy 129.54 31.75))
(stroke (width 0) (type default))
(uuid 2646ae0a-97a6-49e4-a19c-103311cf3773)
)
(wire (pts (xy 157.48 88.9) (xy 198.12 88.9))
(stroke (width 0) (type default))
(uuid 2f45a391-8506-4eef-b5a1-62d480438943)
)
(wire (pts (xy 127 96.52) (xy 129.54 96.52))
(stroke (width 0) (type default))
(uuid 356c77eb-2f24-453a-abc8-9f87578adc50)
)
(wire (pts (xy 198.12 88.9) (xy 210.82 88.9))
(stroke (width 0) (type default))
(uuid 3ea9b77d-d2ac-401d-93a0-362e29430a8d)
)
(wire (pts (xy 105.41 109.22) (xy 105.41 100.33))
(stroke (width 0) (type default))
(uuid 5f129a0f-84c2-4ccb-a785-e84ddf6ce4e6)
)
(wire (pts (xy 127 91.44) (xy 129.54 91.44))
(stroke (width 0) (type default))
(uuid 603f91d8-b3f7-4faa-8800-90a3589b73d6)
)
(wire (pts (xy 157.48 29.21) (xy 172.72 29.21))
(stroke (width 0) (type default))
(uuid 6c18490a-4b33-4e19-a2fd-4800517d6aa2)
)
(wire (pts (xy 90.17 93.98) (xy 129.54 93.98))
(stroke (width 0) (type default))
(uuid 73123cd0-8c0a-4ace-869d-1fc38650b6b5)
)
(wire (pts (xy 90.17 24.13) (xy 129.54 24.13))
(stroke (width 0) (type default))
(uuid 92bb7ae7-8c7a-4e0c-b6c2-daf2c7567d60)
)
(wire (pts (xy 105.41 100.33) (xy 102.87 100.33))
(stroke (width 0) (type default))
(uuid 9be11b4d-5b22-4e18-95f1-67f91954d48e)
)
(wire (pts (xy 86.36 29.21) (xy 90.17 29.21))
(stroke (width 0) (type default))
(uuid a3f6a8fc-5c98-41aa-a5b1-f6b94a9b6565)
)
(wire (pts (xy 86.36 88.9) (xy 90.17 88.9))
(stroke (width 0) (type default))
(uuid af59ce15-6034-4568-b00a-699b4eb1e765)
)
(wire (pts (xy 157.48 93.98) (xy 172.72 93.98))
(stroke (width 0) (type default))
(uuid b43a9b52-ef2b-48de-985c-9a4e91348e27)
)
(wire (pts (xy 90.17 93.98) (xy 90.17 100.33))
(stroke (width 0) (type default))
(uuid b669ed03-d193-4f56-91a1-429c9630bc6a)
)
(wire (pts (xy 127 34.29) (xy 127 31.75))
(stroke (width 0) (type default))
(uuid b9f37c7e-87b5-45a2-92d2-09b8001ef1d8)
)
(wire (pts (xy 198.12 24.13) (xy 210.82 24.13))
(stroke (width 0) (type default))
(uuid bb3ee776-a76d-4fab-87e8-3799d29cc17e)
)
(wire (pts (xy 90.17 88.9) (xy 129.54 88.9))
(stroke (width 0) (type default))
(uuid c0948506-927a-4b76-b49b-8bd8b61071f1)
)
(wire (pts (xy 90.17 85.09) (xy 90.17 88.9))
(stroke (width 0) (type default))
(uuid c57d77a5-720c-4984-a523-78f8e2df0262)
)
(wire (pts (xy 90.17 29.21) (xy 90.17 35.56))
(stroke (width 0) (type default))
(uuid c8e18366-e131-49fc-ac56-dc7c4507f74a)
)
(wire (pts (xy 86.36 24.13) (xy 90.17 24.13))
(stroke (width 0) (type default))
(uuid d020fdb1-c637-43a1-806b-5f8066527736)
)
(wire (pts (xy 172.72 93.98) (xy 185.42 93.98))
(stroke (width 0) (type default))
(uuid e242f3bf-6ba6-45bd-a254-ea7f3e0708f8)
)
(wire (pts (xy 127 26.67) (xy 129.54 26.67))
(stroke (width 0) (type default))
(uuid e37bb798-4a07-4ef9-9c18-6e92d59031d2)
)
(wire (pts (xy 86.36 93.98) (xy 90.17 93.98))
(stroke (width 0) (type default))
(uuid e78aa97e-bfe2-4b3c-991f-6a3bcd1b2167)
)
(wire (pts (xy 90.17 29.21) (xy 129.54 29.21))
(stroke (width 0) (type default))
(uuid f074323f-d125-4df2-aa74-da7167d48ebf)
)
(wire (pts (xy 127 96.52) (xy 127 91.44))
(stroke (width 0) (type default))
(uuid f6433804-2f64-4fc8-9160-9ce8cef03860)
)
(label "12V_FROM_MAIN_RELAY" (at 102.87 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 146bc948-47eb-4d8e-8e21-17b19860590a)
)
(label "12V_FROM_MAIN_RELAY" (at 102.87 20.32 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3b1d0163-866b-4bd8-9b23-23a4843dd442)
)
(label "12V_FROM_MAIN_RELAY" (at 102.87 35.56 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 62c1dda0-b267-4ea1-b514-e13d5b943c82)
)
(label "12V_FROM_MAIN_RELAY" (at 102.87 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 89621574-8c5d-45d6-90e4-e0cfa5e44967)
)
(hierarchical_label "IN3" (shape input) (at 210.82 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 11845646-854d-4323-a3db-cd5cda35078a)
)
(hierarchical_label "IN4" (shape input) (at 185.42 93.98 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1cb44332-0edf-4a83-acc8-891a9596bef0)
)
(hierarchical_label "OUT3" (shape output) (at 86.36 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 280a67fd-5f42-4a81-af91-07dc4b6f9f8b)
)
(hierarchical_label "OUT4" (shape output) (at 86.36 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4541f796-1b6a-4790-aea9-c0dda6848503)
)
(hierarchical_label "12V_FROM_MAIN_RELAY" (shape input) (at 105.41 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 51954ff4-00d9-4abc-b31e-04644bf99ea8)
)
(hierarchical_label "IN2" (shape input) (at 185.42 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8ab587eb-0660-4c74-bee2-840bc450dd47)
)
(hierarchical_label "OUT2" (shape output) (at 86.36 29.21 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d32f678f-a457-4da2-943e-d047671ae51c)
)
(hierarchical_label "OUT1" (shape output) (at 86.36 24.13 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e535e0c6-d1e9-4378-abc9-44405196509f)
)
(hierarchical_label "IN1" (shape input) (at 210.82 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f790deee-2aef-4767-a800-60f89c189d84)
)
(symbol (lib_id "hellen-one-common:1N4148WS") (at 95.25 20.32 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0f8a2c9e-a75f-48ce-a0a7-0828238acde3)
(property "Reference" "D27" (at 99.06 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "B5819W" (at 101.6 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:SOD-123" (at 97.79 13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 95.25 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C8598" (at 95.25 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e970b2f5-729f-41ab-9bff-16d01dd61346))
(pin "2" (uuid 85a449f9-39a7-4516-9486-05a9e6518cbb))
(instances
(project "lowside_quad"
(path "/06f1b5f2-8e6a-4a36-8b19-89e5b4415d37"
(reference "D27") (unit 1)
)
)
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "D27") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "D27") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "D91") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "D27") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "D2") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "D1") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 198.12 99.06 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 29cedf48-65a4-4fde-bfb9-199304e8b6e7)
(property "Reference" "R30" (at 195.58 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 198.12 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 201.93 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 198.12 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23162" (at 198.12 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 93ff2e62-44cf-46b8-aff5-61146e3c296f))
(pin "2" (uuid 56d8292e-2e9b-4e5d-8769-c837425f4865))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "R30") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R30") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "R67") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "R30") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "R12") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "R4") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 198.12 34.29 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3cbb9730-88fb-4b6e-a13e-22089f2edd9b)
(property "Reference" "R30" (at 195.58 29.21 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 198.12 29.21 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 201.93 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 198.12 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23162" (at 198.12 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a9290a74-7491-4acb-a8bf-bb07c9911a5c))
(pin "2" (uuid f080b683-e9f1-4e09-8c4b-0f8397a32f40))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "R30") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R30") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "R67") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "R30") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "R10") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "R3") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:1N4148WS") (at 95.25 35.56 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 560c98a1-2419-44e1-a4b1-301ffb73fdf7)
(property "Reference" "D27" (at 99.06 31.75 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "B5819W" (at 101.6 36.83 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:SOD-123" (at 97.79 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 95.25 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C8598" (at 95.25 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 14bccc45-66f1-48c6-a8a3-445ba0d95e85))
(pin "2" (uuid abe0ea8d-ab94-4b87-92b1-8fd915be57fa))
(instances
(project "lowside_quad"
(path "/06f1b5f2-8e6a-4a36-8b19-89e5b4415d37"
(reference "D27") (unit 1)
)
)
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "D27") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "D27") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "D91") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "D27") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "D3") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "D2") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 127 34.29 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 64bea999-c91d-4a26-a64c-def34cc1f904)
(property "Reference" "#PWR090" (at 127 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 127 38.1 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 127 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b3c1312d-0b3d-4947-a2de-2abe4aaeb237))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "#PWR090") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "#PWR090") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "#PWR090") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "#PWR015") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 172.72 104.14 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 72621d89-33f2-4aaf-8a48-0319d938e599)
(property "Reference" "#PWR0142" (at 172.72 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 172.72 107.95 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 172.72 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e08edd04-d67b-4320-8266-c3a3ba0e9b1f))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "#PWR0142") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "#PWR0142") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "#PWR0142") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "#PWR024") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 172.72 39.37 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7cc853ba-6b26-46a5-8438-a50128e30d47)
(property "Reference" "R30" (at 170.18 34.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 172.72 34.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 176.53 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23162" (at 172.72 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a909cff0-48c1-4668-8d93-cb35d677e84e))
(pin "2" (uuid 2920c358-7a3d-4642-9592-936f43bbbfaa))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "R30") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R30") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "R67") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "R30") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "R11") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "R1") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 172.72 39.37 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 8518437b-d1a0-4649-913b-378d69267096)
(property "Reference" "#PWR092" (at 172.72 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 172.72 43.18 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 172.72 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dcc8fde3-efca-45fc-a445-5d6cffdd95ae))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "#PWR092") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "#PWR092") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "#PWR092") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "#PWR023") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 198.12 34.29 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9af1b3af-d174-45a1-9442-71bdf89d4977)
(property "Reference" "#PWR093" (at 198.12 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 198.12 38.1 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 198.12 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 198.12 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 748bfd74-f23a-4b65-89d1-cc34df2c9ee7))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "#PWR093") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "#PWR093") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "#PWR093") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "#PWR025") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 198.12 99.06 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a223fa3b-c9c7-42b3-893b-08d6c71642b2)
(property "Reference" "#PWR0141" (at 198.12 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 198.12 102.87 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 198.12 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 198.12 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 863e8fbf-519b-460b-88b8-c78fa0533a1d))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "#PWR0141") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "#PWR0141") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "#PWR0141") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "#PWR026") (unit 1)
)
)
)
)
(symbol (lib_id "chips:VNLD5160") (at 157.48 88.9 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a638199e-9447-4681-8e84-fcda96b4f81e)
(property "Reference" "U8" (at 143.51 81.28 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNLD5160TR-E" (at 143.51 83.82 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 143.51 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 157.48 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C377942" (at 146.05 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "3" (uuid 1f14e70d-ae2e-447a-9314-71cdc00b58be))
(pin "4" (uuid 201dd9ec-d9a5-48f8-a1a4-869bdbde93f1))
(pin "6" (uuid 12721ac9-0916-4bb5-a75f-a1765423fce7))
(pin "5" (uuid 675f34c0-bf40-478d-920f-5adbfaf1adc5))
(pin "2" (uuid 964ef7fa-f449-429c-b94b-4bf65910c268))
(pin "8" (uuid fa18d04f-4be4-46a6-a1b8-90a7f65fafd4))
(pin "1" (uuid f36412f4-81c9-4e4c-bca2-5089c6383b70))
(pin "7" (uuid ffb53cbf-a208-4669-a34b-e95cc62a74dd))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "U8") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "U8") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "U8") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "U2") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:1N4148WS") (at 95.25 100.33 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b4a3c802-c19a-4cde-a545-d233928fa388)
(property "Reference" "D27" (at 99.06 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "B5819W" (at 101.6 101.6 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:SOD-123" (at 97.79 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 95.25 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C8598" (at 95.25 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 89afd149-0525-4c5c-8e6e-3ee5d7e264a6))
(pin "2" (uuid c9ab9364-86d3-4d4b-be7a-293295d141ba))
(instances
(project "lowside_quad"
(path "/06f1b5f2-8e6a-4a36-8b19-89e5b4415d37"
(reference "D27") (unit 1)
)
)
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"
(reference "D27") (unit 1)
)
)
(project "alphax_8ch"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "D27") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/9f286606-17ad-4292-b95a-d7d4de96430a"
(reference "D91") (unit 1)
)
)
(project "LS4"
(path "/6d4075fa-bb19-41ce-9124-2ed2848750ae"
(reference "D27") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/aa4a40ff-b05c-4d24-92a7-fdeac4807f5c"
(reference "D5") (unit 1)
)
)
(project "uaefi-adapter-e36"
(path "/b36a220d-d25c-4142-873c-bb8e1b6826c8/f79e0dd9-5316-4a20-8ec6-bc3b6a643bcf"
(reference "D4") (unit 1)
)
)
)
)
(symbol (lib_id "chips:VNLD5160") (at 157.48 24.13 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b4b59083-9f67-4bb0-a832-33022136e1e1)
(property "Reference" "U7" (at 143.51 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNLD5160TR-E" (at 143.51 19.05 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 143.51 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 157.48 24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C377942" (at 146.05 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "3" (uuid fdd645ca-5963-42b6-b6d5-267144bd3810))
(pin "4" (uuid eab1b19a-d0cf-49e5-b464-070c47548b31))
(pin "6" (uuid e6a64351-86a8-4071-8004-ba35e5ac7a29))
(pin "5" (uuid abb4afaf-456f-4d7b-b02d-b202c82dfdbc))
(pin "2" (uuid 9b468437-2006-4b24-b26a-d8e875c5abdd))
(pin "8" (uuid 1e27d096-3380-41f1-b8d4-579df0ca517d))
(pin "1" (uuid 25a7d880-df9e-4d48-b119-a7dfe8faa517))
(pin "7" (uuid 64b2e906-dce1-4f95-876c-69dafbc73fd9))
(instances
(project "uaefi-adapter-NA6"
(path "/62be380c-4f45-483a-9614-39f0039d587a/c2b6e1f2-3e50-418d-8341-cb2bdccf8e7d"