-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12VSB.kicad_sch
1571 lines (1526 loc) · 52.5 KB
/
12VSB.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 9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75)
(paper "A4")
(lib_symbols
(symbol "12VSB Library:FP6296" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at -5.08 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -5.08 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -5.08 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FP6296_1_1"
(rectangle (start -7.62 7.62) (end 7.62 -8.89)
(stroke (width 0) (type default))
(fill (type background))
)
(pin passive line (at -10.16 5.08 0) (length 2.54)
(name "LX" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 1.27 0) (length 2.54)
(name "LX" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -2.54 0) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -6.35 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -6.35 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -2.54 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 1.27 180) (length 2.54)
(name "OC" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 5.08 180) (length 2.54)
(name "HVDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -11.43 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -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 "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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:L_Iron" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L_Iron" (at 2.794 0 90)
(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" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor with iron core" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Iron_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 2.54)
(xy 1.016 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -2.54)
(xy 1.524 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_Iron_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 "2" (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" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 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 res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "Diode:1N5712" (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" "1N5712" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.microsemi.com/document-portal/doc_download/8865-lds-0040-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" "20V 75mA Schottky diode, DO-35" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*DO?35*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N5712_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 "1N5712_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 "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (at 0 4.445 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (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 68.58 63.5) (diameter 0) (color 0 0 0 0)
(uuid 23880085-7b81-4a94-ba84-fd1f7b0a6256)
)
(junction (at 104.14 48.26) (diameter 0) (color 0 0 0 0)
(uuid 2651c386-2da3-496a-8e6b-13416aa6e3a1)
)
(junction (at 121.92 22.86) (diameter 0) (color 0 0 0 0)
(uuid 4536c79b-8d18-41ac-9975-0f50d1880ea6)
)
(junction (at 68.58 87.63) (diameter 0) (color 0 0 0 0)
(uuid 4965e5f6-7801-42cc-b937-2c082cbeb70e)
)
(junction (at 68.58 71.12) (diameter 0) (color 0 0 0 0)
(uuid 56933b3d-9ef9-42b7-9ea0-977615aa43b8)
)
(junction (at 49.53 33.02) (diameter 0) (color 0 0 0 0)
(uuid a9e21ece-376b-4f85-896a-2ebf796d3c0a)
)
(junction (at 104.14 40.64) (diameter 0) (color 0 0 0 0)
(uuid bdf338ac-4d23-4c9a-bd0e-da73a69c7e53)
)
(junction (at 49.53 22.86) (diameter 0) (color 0 0 0 0)
(uuid bdfef8f8-fd80-46ad-b22c-430c8bcf1596)
)
(junction (at 74.93 22.86) (diameter 0) (color 0 0 0 0)
(uuid bf9c3443-3273-4da3-be76-3220f2cd497d)
)
(junction (at 121.92 35.56) (diameter 0) (color 0 0 0 0)
(uuid c6e7e983-a1ab-46ab-bf2b-a1cca65480d5)
)
(junction (at 74.93 33.02) (diameter 0) (color 0 0 0 0)
(uuid e968b44c-c538-45e9-8090-3775a1360d2c)
)
(junction (at 68.58 80.01) (diameter 0) (color 0 0 0 0)
(uuid fbc6ae70-39a1-4a4f-ae89-27fb19a4e0bf)
)
(junction (at 72.39 48.26) (diameter 0) (color 0 0 0 0)
(uuid ff73370b-7f8d-4b3e-9691-d64be7bdf341)
)
(wire (pts (xy 121.92 44.45) (xy 121.92 48.26))
(stroke (width 0) (type default))
(uuid 04df3d66-ead3-4f3d-9d5a-532efaff054d)
)
(wire (pts (xy 22.86 40.64) (xy 38.1 40.64))
(stroke (width 0) (type default))
(uuid 059147b0-1d4f-48af-86bb-573b475a55ce)
)
(wire (pts (xy 95.25 33.02) (xy 104.14 33.02))
(stroke (width 0) (type default))
(uuid 061262ad-04b5-42e3-bf12-4d197a9a2a08)
)
(wire (pts (xy 29.21 64.77) (xy 34.29 64.77))
(stroke (width 0) (type default))
(uuid 0716c17d-e7df-495c-9e30-bc16b5c822e8)
)
(wire (pts (xy 121.92 35.56) (xy 121.92 34.29))
(stroke (width 0) (type default))
(uuid 0a44c669-9a2c-4710-b985-ae71e5b3705c)
)
(wire (pts (xy 29.21 73.66) (xy 34.29 73.66))
(stroke (width 0) (type default))
(uuid 0bcd269d-7751-474f-8fba-646ca7fbe37c)
)
(wire (pts (xy 68.58 80.01) (xy 83.82 80.01))
(stroke (width 0) (type default))
(uuid 11a1d2bb-3270-4111-98a8-1d6370abc6fe)
)
(wire (pts (xy 68.58 87.63) (xy 83.82 87.63))
(stroke (width 0) (type default))
(uuid 144ed3b1-abe7-47f2-a5b2-39a10fef338e)
)
(wire (pts (xy 72.39 40.64) (xy 72.39 48.26))
(stroke (width 0) (type default))
(uuid 15ca620e-7bc1-4346-a059-d2341ccfefb0)
)
(wire (pts (xy 74.93 97.79) (xy 81.28 97.79))
(stroke (width 0) (type default))
(uuid 1b3834ba-65aa-428a-845f-a4cd9b6e818f)
)
(wire (pts (xy 68.58 71.12) (xy 83.82 71.12))
(stroke (width 0) (type default))
(uuid 1c4752b1-bf7d-48e5-93aa-a87d7b742a99)
)
(wire (pts (xy 49.53 22.86) (xy 57.15 22.86))
(stroke (width 0) (type default))
(uuid 1ef9e26a-ba79-4df0-8710-7d99adc4fd44)
)
(wire (pts (xy 116.84 35.56) (xy 121.92 35.56))
(stroke (width 0) (type default))
(uuid 20906e47-6266-43cb-890b-a1e7c692e4de)
)
(wire (pts (xy 69.85 40.64) (xy 72.39 40.64))
(stroke (width 0) (type default))
(uuid 220aa56d-c785-442f-b2c0-eb0aa6ca52d1)
)
(wire (pts (xy 72.39 48.26) (xy 76.2 48.26))
(stroke (width 0) (type default))
(uuid 24a9648b-dbac-40ab-af31-e888c366387e)
)
(polyline (pts (xy 15.24 16.51) (xy 138.43 16.51))
(stroke (width 0) (type dash))
(uuid 27a7c9f2-d3dc-4b20-8897-a24822567501)
)
(wire (pts (xy 74.93 36.83) (xy 69.85 36.83))
(stroke (width 0) (type default))
(uuid 3114d154-07b9-4303-9e13-236f6dcba09e)
)
(wire (pts (xy 45.72 33.02) (xy 49.53 33.02))
(stroke (width 0) (type default))
(uuid 32a3b69a-c96a-4d96-92d1-c39405d3a7d1)
)
(wire (pts (xy 68.58 63.5) (xy 63.5 63.5))
(stroke (width 0) (type default))
(uuid 32d25f4c-7a5a-45d5-a99c-0a8622b7e91b)
)
(wire (pts (xy 60.96 97.79) (xy 67.31 97.79))
(stroke (width 0) (type default))
(uuid 36cffff2-a055-4793-ba41-8d3971bb91a2)
)
(wire (pts (xy 29.21 82.55) (xy 33.02 82.55))
(stroke (width 0) (type default))
(uuid 3ddb1b8a-9937-43b2-98e5-825e78e2f2f1)
)
(wire (pts (xy 72.39 57.15) (xy 87.63 57.15))
(stroke (width 0) (type default))
(uuid 440bace6-1378-4751-879c-068403c5ab48)
)
(wire (pts (xy 121.92 35.56) (xy 121.92 36.83))
(stroke (width 0) (type default))
(uuid 46e610c9-7bc0-482c-8589-b6b6a556904a)
)
(wire (pts (xy 104.14 40.64) (xy 104.14 48.26))
(stroke (width 0) (type default))
(uuid 49452cd0-c104-4979-a4c4-880eb8bc1e89)
)
(wire (pts (xy 95.25 40.64) (xy 104.14 40.64))
(stroke (width 0) (type default))
(uuid 4f75bbb4-6750-472d-a461-1c2a4a382c5b)
)
(wire (pts (xy 35.56 22.86) (xy 39.37 22.86))
(stroke (width 0) (type default))
(uuid 52fe40ed-47e8-4668-b687-585c2c433242)
)
(polyline (pts (xy 15.24 16.51) (xy 15.24 102.87))
(stroke (width 0) (type dash))
(uuid 56c03346-8551-4303-ae41-3fee71071150)
)
(wire (pts (xy 64.77 22.86) (xy 74.93 22.86))
(stroke (width 0) (type default))
(uuid 59645b74-e87e-4215-80b8-d0674274f6ec)
)
(wire (pts (xy 58.42 71.12) (xy 68.58 71.12))
(stroke (width 0) (type default))
(uuid 5a8c27fd-4418-4d34-98c6-ba68e6f7a9ba)
)
(wire (pts (xy 95.25 57.15) (xy 104.14 57.15))
(stroke (width 0) (type default))
(uuid 5d1323f0-05a8-42c8-85aa-50a954bf2bbf)
)
(wire (pts (xy 49.53 49.53) (xy 49.53 44.45))
(stroke (width 0) (type default))
(uuid 5f51943a-6a64-4a7f-bb28-8026f626b913)
)
(wire (pts (xy 116.84 60.96) (xy 116.84 35.56))
(stroke (width 0) (type default))
(uuid 60f08601-fd02-48a4-b168-995240bffa52)
)
(wire (pts (xy 83.82 48.26) (xy 87.63 48.26))
(stroke (width 0) (type default))
(uuid 62aa9320-a250-47a3-8b8f-bdd354d71bb1)
)
(wire (pts (xy 74.93 22.86) (xy 121.92 22.86))
(stroke (width 0) (type default))
(uuid 644d6e81-9e09-4eeb-97ed-28bbe399c683)
)
(wire (pts (xy 59.69 49.53) (xy 59.69 52.07))
(stroke (width 0) (type default))
(uuid 65d6f54b-ebb5-420b-b838-a759fec41c56)
)
(polyline (pts (xy 138.43 102.87) (xy 138.43 16.51))
(stroke (width 0) (type dash))
(uuid 66f8631f-9d1f-44af-9ed8-70f4b84f8a73)
)
(wire (pts (xy 104.14 57.15) (xy 104.14 48.26))
(stroke (width 0) (type default))
(uuid 67d26f59-0917-49e7-a227-b58379888ab7)
)
(wire (pts (xy 121.92 22.86) (xy 121.92 26.67))
(stroke (width 0) (type default))
(uuid 76419074-704d-4445-a2f1-fa6779bf01e7)
)
(wire (pts (xy 68.58 63.5) (xy 83.82 63.5))
(stroke (width 0) (type default))
(uuid 779a67da-0b93-4d65-be37-df5154455fca)
)
(wire (pts (xy 95.25 48.26) (xy 104.14 48.26))
(stroke (width 0) (type default))
(uuid 7a0b8a1b-19fd-4001-b26f-6478e7836bcb)
)
(wire (pts (xy 74.93 33.02) (xy 87.63 33.02))
(stroke (width 0) (type default))
(uuid 7b874283-b7c0-4962-b658-8bb8963288f9)
)
(wire (pts (xy 104.14 40.64) (xy 111.76 40.64))
(stroke (width 0) (type default))
(uuid 857cc1e2-a077-460e-adf0-c1b25d166dde)
)
(wire (pts (xy 58.42 87.63) (xy 68.58 87.63))
(stroke (width 0) (type default))
(uuid 9045006d-3233-491f-8c6f-68084dfff950)
)
(wire (pts (xy 33.02 49.53) (xy 38.1 49.53))
(stroke (width 0) (type default))
(uuid 92d8d491-a91c-4d93-b1a2-168fed3e067b)
)
(wire (pts (xy 74.93 36.83) (xy 74.93 40.64))
(stroke (width 0) (type default))
(uuid 9c6c7156-d177-42b7-9a59-24a8dfb8dd8c)
)
(wire (pts (xy 69.85 60.96) (xy 116.84 60.96))
(stroke (width 0) (type default))
(uuid a708ef89-12c8-43ef-93a9-ee2800efc99d)
)
(wire (pts (xy 49.53 33.02) (xy 49.53 36.83))
(stroke (width 0) (type default))
(uuid a9beac06-243e-485c-9e8e-f94ec944500f)
)
(wire (pts (xy 74.93 33.02) (xy 74.93 30.48))
(stroke (width 0) (type default))
(uuid ad060729-5d9f-4b08-b07d-aa08408a2412)
)
(wire (pts (xy 74.93 40.64) (xy 87.63 40.64))
(stroke (width 0) (type default))
(uuid b1aefcd8-ed9e-46d9-bc78-9b9ada9c9af3)
)
(wire (pts (xy 29.21 93.98) (xy 35.56 93.98))
(stroke (width 0) (type default))
(uuid babf5970-9216-489f-906f-e3bbe83f1670)
)
(polyline (pts (xy 15.24 102.87) (xy 138.43 102.87))
(stroke (width 0) (type dash))
(uuid c120aad7-f6ad-45d6-aa68-839139ff6bc0)
)
(wire (pts (xy 121.92 22.86) (xy 128.27 22.86))
(stroke (width 0) (type default))
(uuid c5f5acfb-16c2-4cb1-bee0-a90b79dd884f)
)
(wire (pts (xy 111.76 40.64) (xy 111.76 48.26))
(stroke (width 0) (type default))
(uuid c78120d8-8313-4b6a-8dd2-a527c46f0053)
)
(wire (pts (xy 69.85 44.45) (xy 69.85 60.96))
(stroke (width 0) (type default))
(uuid ca374aa7-faff-4bc3-a0c4-7d3da79a8088)
)
(wire (pts (xy 49.53 22.86) (xy 49.53 33.02))
(stroke (width 0) (type default))
(uuid cbca834a-0cc8-49b2-be11-6add94f06af8)
)
(wire (pts (xy 45.72 40.64) (xy 49.53 40.64))
(stroke (width 0) (type default))
(uuid cd20fc0e-cb86-4658-b9d0-81f42b860ebc)
)
(wire (pts (xy 45.72 49.53) (xy 49.53 49.53))
(stroke (width 0) (type default))
(uuid cdf7cc09-1f95-4fb0-b8c5-1e358973fe24)
)
(wire (pts (xy 46.99 22.86) (xy 49.53 22.86))
(stroke (width 0) (type default))
(uuid ce27398e-85dd-4212-9258-4679cb9e920f)
)
(wire (pts (xy 69.85 33.02) (xy 74.93 33.02))
(stroke (width 0) (type default))
(uuid d47962c8-8e01-4404-9067-ba51f3009711)
)
(wire (pts (xy 104.14 33.02) (xy 104.14 40.64))
(stroke (width 0) (type default))
(uuid ddeda7b3-638f-4b46-8329-ada7fc5f773b)
)
(wire (pts (xy 22.86 33.02) (xy 27.94 33.02))
(stroke (width 0) (type default))
(uuid e175c8e2-1167-48eb-8cf7-36d1d33a2a40)
)
(wire (pts (xy 72.39 57.15) (xy 72.39 48.26))
(stroke (width 0) (type default))
(uuid e332ad56-2e8a-4f0e-90ae-007ef2e68a40)
)
(wire (pts (xy 35.56 33.02) (xy 38.1 33.02))
(stroke (width 0) (type default))
(uuid ed094e54-70f3-4beb-9eb2-4ea57de5fc68)
)
(wire (pts (xy 68.58 80.01) (xy 63.5 80.01))
(stroke (width 0) (type default))
(uuid ef8a3b1d-79c8-4ee9-ac6f-114a9b335ccc)
)
(text "5VSB to 12VSB Adapter" (at 114.3 100.33 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bf4f8698-86fc-4666-b8ae-ab00e256cd18)
)
(global_label "12VSB" (shape input) (at 35.56 93.98 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 199f6d3f-e13c-486c-956a-c10fd82eecff)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 44.4529 93.98 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5VSB" (shape input) (at 34.29 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1ed9002a-588f-4271-a6dd-cd8fba2eed7d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 41.9734 73.66 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5VSB" (shape input) (at 63.5 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d58dcfa-7726-47c1-9026-efd0b02a26d4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 55.8166 63.5 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "12V" (shape input) (at 60.96 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 64cbe3a7-77f4-4217-8972-22f8168c4759)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 54.5466 97.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "5VSB" (shape input) (at 33.02 49.53 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8490aceb-e864-4181-abc0-490dd90ef8d1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 25.3366 49.53 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "12VSB" (shape input) (at 81.28 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8a9bd5d7-671d-45a8-bdb9-e56c4963e5b4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 90.1729 97.79 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5VSB" (shape input) (at 35.56 22.86 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d9ac467b-b99a-479d-b89b-d9a0175d783b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 27.8766 22.86 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "12VSB" (shape input) (at 63.5 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e74c5d12-4e03-4698-a5a4-d7b48efe2e49)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 54.6071 80.01 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "12V" (shape input) (at 34.29 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f082c1bf-c865-46da-b4bf-23d588d59161)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 40.7034 64.77 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "12VSB" (shape input) (at 128.27 22.86 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f9581ead-ad3a-4b8f-92e0-dc6d88112f03)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 137.1629 22.86 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "power:GND") (at 22.86 40.64 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0607000f-c06f-469e-b789-478fbb4d1d23)
(property "Reference" "#PWR07" (at 22.86 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 22.86 44.7755 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 22.86 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 22.86 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 78a1c744-e68a-4d49-8171-d021d6f45455))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "#PWR07") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 31.75 33.02 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1a9cfc65-5afe-406d-a03b-64c9f7dbe3cc)
(property "Reference" "C12" (at 31.75 27.8511 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 31.75 29.7721 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 27.94 33.9852 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 31.75 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2c328078-e585-4d43-897b-8ebe8dc344a1))
(pin "2" (uuid 1ee92ec2-3a52-4c50-a712-f2f5e4b22633))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "C12") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 58.42 87.63 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 284c4f39-f226-4752-b3b9-35a99901acc2)
(property "Reference" "#PWR01" (at 58.42 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 58.42 91.7655 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 58.42 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 58.42 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e00dcd1a-7c02-4d40-8ffa-e9f3b999f01a))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "#PWR01") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 26.67 73.66 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4659d27e-582f-4aae-9753-1afc7a6b0e47)
(property "Reference" "H2" (at 25.4 68.8721 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5VSB" (at 25.4 70.7931 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (at 26.67 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 26.67 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6d11fe9d-65ca-438d-910d-96d7d5450661))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "H2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 121.92 30.48 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4c4a6c0f-461f-4f85-8edc-2b90da4b3dde)
(property "Reference" "R1" (at 123.698 29.8363 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "200K" (at 123.698 31.7573 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 120.142 30.48 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e5eeb40b-0780-4c6a-bc08-6dcf1044b49d))
(pin "2" (uuid fdf6e7ef-63ba-4ddb-a1d8-26570c07f950))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "R1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 41.91 49.53 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5f2a925c-ef8c-4cdb-b9f2-8d2c7a05e2d6)
(property "Reference" "R10" (at 41.91 45.5041 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1K" (at 41.91 47.4251 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 41.91 51.308 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 41.91 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fe4fe9c2-68da-40f7-b8b4-6edc44476cde))
(pin "2" (uuid 0b16c6af-60bd-40bc-b410-c45b531ea994))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "R10") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 26.67 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 684656d3-0207-4ec4-8ce2-502caa0241f0)
(property "Reference" "H1" (at 25.4 59.9821 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "12V" (at 25.4 61.9031 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (at 26.67 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 26.67 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 16abcb3c-3dd0-49f6-9764-47b8fbb10a55))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "H1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 41.91 33.02 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 691fc42d-8232-4150-8327-676b0967302d)
(property "Reference" "R8" (at 41.91 28.9941 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1.5" (at 41.91 30.9151 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 41.91 34.798 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 41.91 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 52a62e01-d3d5-48a7-bc9a-f10b1556fbb5))
(pin "2" (uuid 596b2dd4-0a57-4fa6-bfba-fff36dcf21d1))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "R8") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 83.82 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6bd1212b-0e2f-4d3e-878b-55fb83f5e4d5)
(property "Reference" "C2" (at 86.741 66.6663 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22uF" (at 86.741 68.5873 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 84.7852 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2f146bf8-c898-4d87-b150-df5cf737bb3e))
(pin "2" (uuid 1b8f2aa1-9d5c-4a09-902c-e88c74e81a93))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "C2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 91.44 48.26 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 823def50-9a25-4f75-b2bc-010a6ff10d85)
(property "Reference" "C4" (at 91.44 43.0911 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "2.2nF" (at 91.44 45.0121 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 95.25 47.2948 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 91.44 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 60b1751c-e522-48f0-813c-3b238d3e84a1))
(pin "2" (uuid d5a4f825-a650-4de8-a8a5-2a869d6f9bb2))
(instances
(project "12VSB"
(path "/9eb6020d-0ae1-47b1-89e8-d1a0b86a5d75"
(reference "C4") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 58.42 71.12 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 830d11e3-1e83-4305-894c-a25d28861b40)
(property "Reference" "#PWR08" (at 58.42 77.47 0)