-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLowside Adder.kicad_sch
1134 lines (1109 loc) · 39.4 KB
/
Lowside Adder.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 90a9bbe6-97b3-44ec-b6c3-ce5711b05b61)
(paper "A4")
(title_block
(title "Polygonus Universal 88p")
(date "2023-11-12")
(rev "v1.0")
(company "FutureProofPerformance.com")
)
(lib_symbols
(symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Schottky" (at 0 -2.54 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" "diode Schottky" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Schottky_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (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" (at -7.62 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Pack04" (at 5.08 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 6.985 0 90)
(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" "R network parallel topology isolated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4 resistor network, parallel topology" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP* SOIC* R*Array*Concave* R*Array*Convex*" (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))
(fill (type background))
)
(rectangle (start -5.715 1.905) (end -4.445 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start -3.175 1.905) (end -1.905 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start -0.635 1.905) (end 0.635 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -5.08 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 1.905)
(xy -5.08 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.54)
(xy -2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.905)
(xy -2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.905)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.905)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 1.905 1.905) (end 3.175 -1.905)
(stroke (width 0.254) (type default))
(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 "Simon:VNL5090" (in_bom yes) (on_board yes)
(property "Reference" "U22" (at 6.1081 0.0001 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "VNL5090" (at 6.1081 -2.5399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223" (at 6.1081 -5.0799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VNL5090_0_1"
(rectangle (start -5.08 1.27) (end 5.08 -6.35)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VNL5090_1_1"
(pin input line (at -7.62 0 0) (length 2.54)
(name "Input" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "Drain" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -5.08 0) (length 2.54)
(name "Source" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 -2.54 180) (length 2.54)
(name "Drain" (effects (font (size 1.27 1.27))))
(number "4" (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" "power-flag" (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 99.06 86.36) (diameter 0) (color 0 0 0 0)
(uuid 1f23acb1-5a1f-4c7e-bbb6-270b1ef60f46)
)
(junction (at 101.6 88.9) (diameter 0) (color 0 0 0 0)
(uuid 4362ce1c-6c5d-4e40-98eb-486ad7971d60)
)
(junction (at 157.48 67.945) (diameter 0) (color 0 0 0 0)
(uuid 44c4c334-b9d7-4b90-87fa-09e0f2a2712e)
)
(junction (at 157.48 53.34) (diameter 0) (color 0 0 0 0)
(uuid 4930cd80-686f-4e52-913d-b10feff5f3d1)
)
(junction (at 153.67 42.545) (diameter 0) (color 0 0 0 0)
(uuid 52d532b7-287e-44b4-ac6e-ab7ed971a437)
)
(junction (at 93.98 81.28) (diameter 0) (color 0 0 0 0)
(uuid 6a947054-0cac-466a-9529-3b087f3fafa7)
)
(junction (at 96.52 83.82) (diameter 0) (color 0 0 0 0)
(uuid 807d473f-f435-4add-87ae-0f251ba3ef8d)
)
(junction (at 153.67 57.15) (diameter 0) (color 0 0 0 0)
(uuid a8f1e260-0e17-4bf8-aceb-920842ddd4bf)
)
(junction (at 157.48 95.25) (diameter 0) (color 0 0 0 0)
(uuid ba94ed0b-0c51-4281-99d1-6cb2b2ccdbc9)
)
(junction (at 153.67 84.455) (diameter 0) (color 0 0 0 0)
(uuid e1f1d878-55ea-4dbb-aad3-fdf035a89938)
)
(junction (at 157.48 109.855) (diameter 0) (color 0 0 0 0)
(uuid f2970101-63cc-40f4-ad2c-b48b350cf69d)
)
(wire (pts (xy 90.17 88.9) (xy 101.6 88.9))
(stroke (width 0) (type default))
(uuid 039bdd91-aa66-4320-922a-323539f74c4c)
)
(wire (pts (xy 163.195 67.945) (xy 157.48 67.945))
(stroke (width 0) (type default))
(uuid 04c10771-3eda-472c-8874-f30601e51a68)
)
(wire (pts (xy 161.925 53.34) (xy 157.48 53.34))
(stroke (width 0) (type default))
(uuid 057688ee-bd61-4a89-943f-5fbcdcd991da)
)
(wire (pts (xy 129.54 92.71) (xy 120.015 92.71))
(stroke (width 0) (type default))
(uuid 0f265f72-3eac-4487-8979-df84524d09dc)
)
(wire (pts (xy 90.17 83.82) (xy 96.52 83.82))
(stroke (width 0) (type default))
(uuid 11a2d54f-b9d4-4ac5-bc75-dd77c6f90a99)
)
(wire (pts (xy 118.11 107.315) (xy 128.905 107.315))
(stroke (width 0) (type default))
(uuid 18c487b9-c8a0-4c3b-bf21-7dc2f4da84bd)
)
(wire (pts (xy 157.48 57.15) (xy 153.67 57.15))
(stroke (width 0) (type default))
(uuid 21d60125-aba9-475f-b42f-f13a51d4d1a1)
)
(wire (pts (xy 161.925 39.37) (xy 153.67 39.37))
(stroke (width 0) (type default))
(uuid 21f9ab50-92ea-468b-8ace-d090b4def76e)
)
(wire (pts (xy 90.17 86.36) (xy 99.06 86.36))
(stroke (width 0) (type default))
(uuid 2580ff26-68b1-4f09-a6da-91a5b785de10)
)
(wire (pts (xy 164.465 95.25) (xy 157.48 95.25))
(stroke (width 0) (type default))
(uuid 25f08ef9-e5c3-4ec5-98c6-2be1478e49ff)
)
(wire (pts (xy 157.48 42.545) (xy 153.67 42.545))
(stroke (width 0) (type default))
(uuid 267e9a90-43b9-4680-91b3-2b1a34367e01)
)
(wire (pts (xy 114.3 88.9) (xy 118.11 88.9))
(stroke (width 0) (type default))
(uuid 2e5a2fa2-5209-42e9-bded-e6042d20e98c)
)
(wire (pts (xy 153.67 42.545) (xy 153.67 57.15))
(stroke (width 0) (type default))
(uuid 38293143-7ec2-4bb6-9230-60a8ace64971)
)
(wire (pts (xy 127 50.8) (xy 118.11 50.8))
(stroke (width 0) (type default))
(uuid 388ca79b-cd6c-4125-a7d4-381f41ef7646)
)
(wire (pts (xy 157.48 59.055) (xy 157.48 57.15))
(stroke (width 0) (type default))
(uuid 405a7e55-de78-4b57-80fc-1a055116b560)
)
(wire (pts (xy 104.14 86.36) (xy 99.06 86.36))
(stroke (width 0) (type default))
(uuid 419c30ff-4005-48ea-aeb3-ff789bfbac59)
)
(wire (pts (xy 157.48 52.07) (xy 157.48 53.34))
(stroke (width 0) (type default))
(uuid 48afb982-4028-4d1e-810b-d18fa03c39b7)
)
(wire (pts (xy 90.17 81.28) (xy 93.98 81.28))
(stroke (width 0) (type default))
(uuid 499b2edb-4001-4994-a354-281f135710ce)
)
(wire (pts (xy 157.48 108.585) (xy 157.48 109.855))
(stroke (width 0) (type default))
(uuid 5c87ae63-5c70-4d41-91b3-c7ace25654c0)
)
(wire (pts (xy 104.14 81.28) (xy 93.98 81.28))
(stroke (width 0) (type default))
(uuid 6deb752c-0ba4-4188-a9b7-f99e7bfff43a)
)
(wire (pts (xy 163.83 109.855) (xy 157.48 109.855))
(stroke (width 0) (type default))
(uuid 72bfcd83-9860-4cec-add1-fcdfdc45b8a0)
)
(wire (pts (xy 157.48 66.675) (xy 157.48 67.945))
(stroke (width 0) (type default))
(uuid 7356961c-5885-4ae1-820a-0cb7c5773dfb)
)
(wire (pts (xy 157.48 100.965) (xy 157.48 99.06))
(stroke (width 0) (type default))
(uuid 76bebac6-1460-42fe-9269-c841eeae2c39)
)
(wire (pts (xy 96.52 83.82) (xy 104.14 83.82))
(stroke (width 0) (type default))
(uuid 827578b0-edcb-448b-9fbb-3f3f49bc86c0)
)
(wire (pts (xy 114.3 83.82) (xy 120.015 83.82))
(stroke (width 0) (type default))
(uuid 8333779a-3851-4af6-b386-885f9504fb66)
)
(wire (pts (xy 153.67 39.37) (xy 153.67 42.545))
(stroke (width 0) (type default))
(uuid 8356797e-db1c-4d18-9a77-eea19638192c)
)
(wire (pts (xy 118.11 50.8) (xy 118.11 81.28))
(stroke (width 0) (type default))
(uuid 83c5ddc6-3701-48c5-9a6b-475c5b20c67b)
)
(wire (pts (xy 153.67 84.455) (xy 153.67 99.06))
(stroke (width 0) (type default))
(uuid 890b2c39-684c-4bad-87fc-4e9309884892)
)
(wire (pts (xy 96.52 91.44) (xy 96.52 83.82))
(stroke (width 0) (type default))
(uuid 8e347589-554d-4947-bcca-6cf945980e79)
)
(wire (pts (xy 157.48 93.98) (xy 157.48 95.25))
(stroke (width 0) (type default))
(uuid 9422fc7b-3822-4e87-9733-b04f67b81042)
)
(wire (pts (xy 101.6 91.44) (xy 101.6 88.9))
(stroke (width 0) (type default))
(uuid 9e50124d-0183-49fb-97b7-dbf9d56670c3)
)
(wire (pts (xy 157.48 44.45) (xy 157.48 42.545))
(stroke (width 0) (type default))
(uuid a936e761-ee48-490e-ba5a-9e5925b2ea31)
)
(wire (pts (xy 93.98 81.28) (xy 93.98 91.44))
(stroke (width 0) (type default))
(uuid b5076cb4-16b4-463a-bca7-5952e2403bdb)
)
(wire (pts (xy 157.48 109.855) (xy 144.145 109.855))
(stroke (width 0) (type default))
(uuid b6b01320-3a01-4b38-9717-169f67cf9f90)
)
(wire (pts (xy 153.67 57.15) (xy 153.67 84.455))
(stroke (width 0) (type default))
(uuid ba534176-5459-4580-9437-ef0b807d220b)
)
(wire (pts (xy 99.06 86.36) (xy 99.06 91.44))
(stroke (width 0) (type default))
(uuid c8e5a578-1e15-4181-99fc-e3f5ae4dacfa)
)
(wire (pts (xy 114.3 86.36) (xy 120.015 86.36))
(stroke (width 0) (type default))
(uuid cc302152-73b3-4eb6-b6c8-a59037d92827)
)
(wire (pts (xy 157.48 67.945) (xy 143.51 67.945))
(stroke (width 0) (type default))
(uuid d6f952da-a621-4c50-9763-8d4ce735ce92)
)
(wire (pts (xy 120.015 86.36) (xy 120.015 92.71))
(stroke (width 0) (type default))
(uuid d75966f1-9249-4d4f-9f76-f826450b063b)
)
(wire (pts (xy 120.015 65.405) (xy 128.27 65.405))
(stroke (width 0) (type default))
(uuid da5f0827-501f-4557-9eba-b804d71b1f11)
)
(wire (pts (xy 157.48 99.06) (xy 153.67 99.06))
(stroke (width 0) (type default))
(uuid dc6774ba-a3aa-44b6-b24d-9ca3d3833445)
)
(wire (pts (xy 114.3 81.28) (xy 118.11 81.28))
(stroke (width 0) (type default))
(uuid e0f9f231-eb71-41a4-b8f4-4ec1d4b5c8b4)
)
(wire (pts (xy 101.6 88.9) (xy 104.14 88.9))
(stroke (width 0) (type default))
(uuid e20b0073-4937-4e0d-9a87-a8d9352192f8)
)
(wire (pts (xy 157.48 86.36) (xy 157.48 84.455))
(stroke (width 0) (type default))
(uuid ecdfcb41-bb20-4511-a4fa-9f3bcbea107e)
)
(wire (pts (xy 118.11 88.9) (xy 118.11 107.315))
(stroke (width 0) (type default))
(uuid f0c3052c-1cd9-43ec-abdf-2d5e6503e296)
)
(wire (pts (xy 157.48 53.34) (xy 142.24 53.34))
(stroke (width 0) (type default))
(uuid f2c5ee97-bea5-4ee4-999a-562390ceb55e)
)
(wire (pts (xy 120.015 65.405) (xy 120.015 83.82))
(stroke (width 0) (type default))
(uuid f7056a2e-91e8-4cf6-b379-0153b9883f88)
)
(wire (pts (xy 157.48 95.25) (xy 144.78 95.25))
(stroke (width 0) (type default))
(uuid f96dca21-d7bf-469a-afcd-2d17c8b6de7b)
)
(wire (pts (xy 157.48 84.455) (xy 153.67 84.455))
(stroke (width 0) (type default))
(uuid fd743b23-278f-4143-9819-745a4f594f4d)
)
(hierarchical_label "OUT4" (shape output) (at 163.83 109.855 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1308b0c9-988d-4f67-b325-587bcaa10d44)
)
(hierarchical_label "IN2" (shape input) (at 90.17 83.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 68122dba-55bc-4a21-8cc2-3a162072c825)
)
(hierarchical_label "IN4" (shape input) (at 90.17 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 731a4922-0f1e-416e-9953-6fb71b0ff1bf)
)
(hierarchical_label "OUT3" (shape output) (at 164.465 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 77020f0c-1f21-40d4-8f58-790b6958960a)
)
(hierarchical_label "IN3" (shape input) (at 90.17 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8961b14e-84ed-4188-b4a0-8f9285e94e4e)
)
(hierarchical_label "IN1" (shape input) (at 90.17 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9c02ed87-2ae5-4dbb-bf80-81f95f1eb547)
)
(hierarchical_label "DIODE_CLAMP" (shape bidirectional) (at 161.925 39.37 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9fe2f93b-45f0-4d2d-a9d9-a786edc7cbc1)
)
(hierarchical_label "OUT2" (shape output) (at 163.195 67.945 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d0da9b6c-2002-4b55-b7b4-18cedf88d6a7)
)
(hierarchical_label "OUT1" (shape output) (at 161.925 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid da0e6a8b-c82b-4915-8e1f-86ca094032d4)
)
(symbol (lib_id "Simon:VNL5090") (at 135.89 65.405 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 06f4ef43-fcd4-4582-bad0-3459bf0aed5c)
(property "Reference" "U17" (at 135.89 57.5203 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNL5090" (at 135.89 60.2954 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223" (at 135.89 63.0705 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at 135.89 65.405 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C2680415" (at 135.89 65.405 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 66d2297c-5730-4412-bf47-36f1503974c3))
(pin "2" (uuid 95633c6e-09d6-4307-aa3b-3c5ab73cee8d))
(pin "3" (uuid add1e10f-4eb1-439f-8693-6fd567de9cf2))
(pin "4" (uuid 07555f8e-68d9-497b-b0ed-ee773a314e16))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "U17") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "U12") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 127 55.88 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0c49a4b1-83a2-4f50-b9f1-6f5088577529)
(property "Reference" "#PWR0136" (at 120.65 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 122.6058 56.007 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 127 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 71deb0e4-e8a7-4cb3-b7a5-f3eb9ac99e5c))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0136") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0121") (unit 1)
)
)
)
)
(symbol (lib_id "Simon:VNL5090") (at 137.16 92.71 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0d9d19ce-21f0-4386-a9a0-1b98db7f8f7c)
(property "Reference" "U19" (at 137.16 84.8253 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNL5090" (at 137.16 87.6004 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223" (at 137.16 90.3755 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at 137.16 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C2680415" (at 137.16 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4dc1ca0e-6f56-4bc8-877a-71ec017f9bba))
(pin "2" (uuid 0b56a81b-1440-476a-b96e-040989801aee))
(pin "3" (uuid 26520e16-497c-4201-b2da-59ee44864ddf))
(pin "4" (uuid 18197bc7-f5e9-45c6-980d-1a8ea6f69ace))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "U19") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "U14") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 93.98 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2a8dd59e-03a2-43e8-bc09-862db2fd028b)
(property "Reference" "#PWR0132" (at 93.98 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 91.44 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 93.98 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 93.98 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dd5a44f4-d00e-490b-9147-df463fd47e73))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0132") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0117") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 129.54 97.79 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 469b03e7-f9a6-4978-9d45-349aabeca45d)
(property "Reference" "#PWR0139" (at 123.19 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 125.1458 97.917 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 129.54 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0a3b96ed-4ad8-46bb-9be3-dc63edf3635a))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0139") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0124") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 96.52 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4dd41cd4-407b-4685-ae4a-e5eee9f06d5a)
(property "Reference" "#PWR0133" (at 96.52 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 96.647 105.9942 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 96.52 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 96.52 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fc436105-b285-459f-88dc-17bb98f7a91f))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0133") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0118") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky") (at 157.48 62.865 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 558658e2-3a88-4983-be3b-a14a8e661c5d)
(property "Reference" "D3" (at 160.02 62.5475 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky" (at 160.02 63.8175 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Diode_SMD:D_SMA" (at 157.48 62.865 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 157.48 62.865 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d1d53e5c-6a9e-4ba0-94ff-0024e8dac22a))
(pin "2" (uuid ed7db13e-2254-4449-bb14-b6cb908f8e1c))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "D3") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "D7") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 101.6 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6b2654e5-ac67-42fe-828d-c52ababdc9ca)
(property "Reference" "#PWR0135" (at 101.6 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 101.727 105.9942 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 101.6 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 101.6 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0c699d40-c88b-4edb-9229-e93771943213))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0135") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0120") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky") (at 157.48 104.775 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7503833b-d8e3-49c7-b26c-2a98822a6dbf)
(property "Reference" "D5" (at 160.02 104.4575 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky" (at 160.02 105.7275 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Diode_SMD:D_SMA" (at 157.48 104.775 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 157.48 104.775 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bf372b70-2aec-45a1-9814-21f54a4bc37a))
(pin "2" (uuid 5ca6bc88-73b6-40fb-aa25-2f857f52f822))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "D5") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "D9") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky") (at 157.48 90.17 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 87d4dfac-2c31-41d3-a466-6ad6ddb7d074)
(property "Reference" "D4" (at 160.02 89.8525 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky" (at 160.02 91.1225 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Diode_SMD:D_SMA" (at 157.48 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 157.48 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 54c512a9-2817-458d-8970-c52f45e91084))
(pin "2" (uuid ddeab904-5c05-45e3-81a5-bac4f4638d1c))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "D4") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "D8") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 128.905 112.395 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 94755d12-d4c7-4807-967c-26144f852b51)
(property "Reference" "#PWR0138" (at 122.555 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 124.5108 112.522 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 128.905 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 128.905 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a4c38815-9748-4c2e-a133-09d4a5b0ed96))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0138") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0123") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 99.06 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a1ab8942-5d40-4a69-9b9a-096a9c4ed3f8)
(property "Reference" "#PWR0134" (at 99.06 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 99.187 105.9942 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 99.06 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 99.06 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bc78d53b-cfbb-4c4c-8845-8d961ae922b3))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0134") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0119") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 128.27 70.485 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid abeaad0b-e723-47c4-b83a-1c0132ef596c)
(property "Reference" "#PWR0137" (at 121.92 70.485 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 123.8758 70.612 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 128.27 70.485 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 128.27 70.485 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8f9015a3-8435-42b6-85a9-05b7f31af911))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "#PWR0137") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "#PWR0122") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Pack04") (at 109.22 83.82 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b4313fa9-a0a5-4c08-a5bd-5c669af43466)
(property "Reference" "RN4" (at 109.22 94.4118 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1k" (at 109.22 92.1004 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 109.22 76.835 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 109.22 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (at 109.22 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C20197" (at 109.22 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (at 109.22 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57e29dd8-947f-4541-937c-2ac4ffbdc9fa))
(pin "2" (uuid 7d589f0f-1e94-40cb-82a9-5af4aaa76a71))
(pin "3" (uuid 6ed71ded-5233-4c83-9a94-150f9523ff6a))
(pin "4" (uuid 2400cfa9-16b2-4f7e-8681-e4174e279f21))
(pin "5" (uuid b35ebe97-d154-489a-9837-e5f7f2f68dae))
(pin "6" (uuid 20c7417e-9cb1-415b-bcfa-8882d3fd66c8))
(pin "7" (uuid 6e71cc43-72cb-412b-b5ab-d5df04e3731f))
(pin "8" (uuid 8cb32f5b-a569-41e0-924a-8dc99e9551ce))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2e1028d9-7b0e-4bfd-a0ec-cbc4907c4bcc"
(reference "RN4") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/de31d6fa-be3a-4a6f-8e1e-8e6b8372a269"
(reference "RN2") (unit 1)
)
)
)
)
(symbol (lib_id "Simon:VNL5090") (at 134.62 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid b98b6da9-4c0e-431f-88ce-a5e4e12b2217)
(property "Reference" "U16" (at 134.62 42.9153 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNL5090" (at 134.62 45.6904 0)