forked from BasicCode/Toshiba-T1200-PSU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
T1200_PSU.kicad_pcb
16382 lines (16333 loc) · 654 KB
/
T1200_PSU.kicad_pcb
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_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "+5V")
(net 4 "-9V")
(net 5 "unconnected-(PJ4-Pad11)")
(net 6 "+12V")
(net 7 "Net-(C4-Pad1)")
(net 8 "Net-(C4-Pad2)")
(net 9 "Net-(PJ1-Pad1)")
(net 10 "Net-(F1-Pad1)")
(net 11 "Net-(R3-Pad2)")
(net 12 "Net-(R6-Pad2)")
(net 13 "unconnected-(U2-Pad7)")
(net 14 "unconnected-(U2-Pad8)")
(net 15 "Net-(R1-Pad1)")
(net 16 "-22V")
(net 17 "+5V_HDD")
(net 18 "VCC")
(net 19 "Net-(J1-Pad2)")
(net 20 "Net-(J1-Pad1)")
(net 21 "Net-(D4-Pad1)")
(net 22 "Net-(C6-Pad1)")
(net 23 "unconnected-(SW1-Pad1)")
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 0454025b-fda2-4d27-ad79-ca2bba86062d)
(at 60 37 -90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/690b18ef-d180-4671-b581-cbe51a18c62a")
(attr through_hole)
(fp_text reference "C5" (at 3.3 3.345) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6373842d-2564-43d2-a6f1-2ed96879f210)
)
(fp_text value "33uF" (at 3.3 -4.52) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58ba5778-063a-47ce-969a-8acebe3aa0c4)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38c1a4bf-02e9-4476-9bef-6cb56b8d24c9)
)
(fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 060dc1ce-7932-4d49-83e2-da77bc0e9ba6))
(fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 08156e39-1371-4d47-8e67-629b89cc0faf))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08909355-fb9d-46ae-9285-c188a46fb9d0))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0add2ed7-184f-41cf-8a0c-01ffddd684b4))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0b8bda64-8070-4cdc-ab8e-7ef265572db5))
(fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 0e0da2b0-8c53-429f-b976-cd84f2bda6cd))
(fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 0ee85563-d650-4336-be23-b2e5d54b0fd9))
(fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 17f173b3-42ec-4b8a-b526-50a334a00880))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 19c776e5-9c5e-4405-b6ba-ba890fd0aeaa))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 234539ef-489e-4c5c-aa0c-fa4fcb4d81ff))
(fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 27a1fee3-2792-4ea5-a9a1-57fa0dda07e1))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2a743112-5c61-42c1-9396-1c9d56f098bb))
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 2aa3ae56-05cb-4a90-ba5e-080089b4e223))
(fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 2aee296a-6eff-4de8-b3f2-5aefbd0bb927))
(fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 2e8eb143-8010-4a6f-966c-cd68ac627036))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 304da1d7-903a-43e8-91a3-5adb7e31c572))
(fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 3057e4e3-f2a1-4ae4-9892-664ce724e017))
(fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 308e9778-66e0-4f1d-bc2e-50ce90d3a403))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3236c999-4abe-4f6e-a559-0908896e1c75))
(fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 32403e01-0345-4079-8dff-af2ebebae7d6))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3284baa7-72fc-40be-bfe6-20b8a5b50480))
(fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 32e98a14-907b-4b3c-b8bd-10dbd4d8c5cd))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 35595352-889a-4cf5-8936-4a46f41beda9))
(fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 3c56c645-2881-438b-a480-e9cb390ccb94))
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 3e03ed28-0569-4df9-95bf-dbe1ab221882))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3edc9259-e6e2-41d7-bb97-384021efc0d0))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 40230fc0-7f30-42d2-b7df-4339bd28a0b0))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 43e74a96-b143-4844-81f3-4fb5a641bdcd))
(fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 4439c733-22b2-48c0-b036-71c7fa8aa7e1))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4a00b1bf-b922-4434-b7e9-37258dee9e50))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4c07641e-680d-483e-9fe3-1b0af115bc26))
(fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 4d08effe-9442-48f7-bec4-3e33b5e94bfb))
(fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 4d6fbd47-c482-4eb5-97bd-dab7d3483c23))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d9ac790-5c43-452b-ae32-72efe075a16c))
(fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 52bda5ec-a87e-4bb7-9d3a-3e281e698148))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 56426065-0869-4207-913e-9eb77effb932))
(fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 568d1d98-cdef-42de-b805-a005fef59a4d))
(fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 5795d792-db36-4c40-88e4-98f4059fcd6f))
(fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 59b6ae33-cc95-4a5d-ba2f-348b784ef1dd))
(fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 5c5de981-93b5-4902-85b7-8a163718ec45))
(fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp 5c89cf68-24c6-4f62-917a-24228deaa5c6))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5e7f0fd6-6dca-4d22-abce-ed06fecee82a))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5e9d025b-5c28-41ea-9b37-b8542bd8b866))
(fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp 5ed5bcc4-ed68-4045-a87b-e74d0f853c31))
(fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 62b7329a-0056-456c-ab20-7c87622043f7))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 642fc269-9273-43f1-b7fa-67404307cae4))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6945579b-eeae-48be-bdd4-e7fe02ddccda))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6ac58e76-a5a9-4fd4-b49c-e9b31d23a6cf))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6acd0fee-db3b-4f81-a6f6-4a267d993248))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b7d5042-b7d9-47f6-9abc-82f72ccc5e28))
(fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 6c16cf2e-ee46-4dab-b1dc-e937f91b741a))
(fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 6cd9d314-38b8-4efd-b55a-032712b5c3a5))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 72406ed1-b658-4e3e-9a68-61c695f39baa))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 73bfb04b-5ff8-4c5d-8cdf-416f022c62ad))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 74f4acfa-49ea-4c1c-9045-2cc1fba1e5b2))
(fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 760b7c60-53eb-4d78-aa4c-1d2210ba38f1))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7666b9fa-af42-4e3e-bba8-c9b882e1aa82))
(fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 77320450-d416-4dc9-8b8d-4aa3d23a29ee))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 7cc1086e-f423-4c03-9bb4-757251e1627e))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7e93ba1b-ada7-4d27-a47f-6338e128539b))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7ebeb444-2902-440e-98c1-63c66ef13dc9))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7ff6c968-2127-4425-a276-49e69595d8c9))
(fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 8146bc13-29bc-4e35-9396-8d3427394a1a))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 836d7e9c-ce13-4439-9f64-6a831336df41))
(fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 84537839-cc56-4b3d-bcae-b2d08f90aebd))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 86a096e1-8843-4607-bfec-5de50b818fe7))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 884b2b3d-2863-463e-8d1b-f9e13cc6a6ff))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 89ed7ca2-1484-43bd-bc71-11aec9031a75))
(fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 906b97e6-73d5-49bb-868d-cda81f04c2eb))
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 91d7896b-de99-4601-a68e-caaa0e736049))
(fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 92a5de89-3088-4346-8ea5-ed7e2da16882))
(fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 92cabf94-08fe-4f96-8284-6542ef9e6ec6))
(fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 96b5a8b0-7267-4d25-bf66-6480da946882))
(fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 99961482-6f44-4fdf-beaf-3bab0079b50a))
(fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 9c6a3ec6-588d-4e3c-92f5-a0581cffa9ac))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9c6ecac7-2598-4f69-844c-77ffdce49586))
(fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 9c9e8ef1-08b6-4dca-ab40-027fae53b972))
(fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp a3397da1-9a04-4424-bcd6-81752f201890))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp a787e75b-4448-457c-9d89-0a0ab01e63ef))
(fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp a8838eec-ca41-4f09-b1bd-17ea0dc24e2b))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a9aa4b8c-c8c3-40d7-8143-b4a3b0e03abc))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aacb4d5f-d726-4410-b25e-3273d55eede0))
(fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp ab99b890-d4d5-4abe-8b5f-57d49ba0bc12))
(fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp af27f05c-7b59-4ba9-8c7c-a1921d871818))
(fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp bbcda641-6e59-4bc3-a025-78d3e1d6093a))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bc4d328b-3b90-4cca-9b6b-1ef77a6f97ce))
(fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp bca88853-9c39-47cf-87a4-4b8ebf881852))
(fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp be567a11-f299-4214-a00a-a16ce756694d))
(fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp c3cd6e27-df62-4568-855c-f963d9abf055))
(fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp c5742b27-e98d-4256-af55-56d722c07608))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c6e8532b-3275-4e08-9f10-3896e502ba24))
(fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp c7f55bed-54ce-4788-8e2d-bc516cd8b0cd))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c8b3e4fb-fb08-456b-8396-679c4e01e77a))
(fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp ca71b558-26c2-4eed-9d57-37e0ad5c605c))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce6a44ec-0f35-41da-ad56-d3359166e3f1))
(fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp cf274e40-aef5-4003-997e-55523a8c5be8))
(fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp cf314fbd-aa7f-4379-9ad6-cdaa831b36ea))
(fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp d17319ee-ed8a-4713-b28c-dd30f2da7131))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d3830c6b-b7f4-4d56-970a-410df6f90e6a))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d74c4cd9-2f03-4e01-a140-860e4bca11a8))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dab6b8b6-1f0a-4069-bca6-30115547bbab))
(fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp dc72a5be-319d-4891-b9cc-ad46297b0e05))
(fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp dcc1408e-2bf6-4b37-bdad-71bf344ac90a))
(fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp ddae6db0-e5e5-4c1f-8eee-b4fbee3f870e))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e0edf8c0-eacc-42a0-b2cd-83b3b6945d6a))
(fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp e10bc10b-6bee-4b00-b0a2-c9d3bf4a1885))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e4878afd-8215-49ee-9ac5-590a524147ec))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e6a59216-33f3-42bb-9d34-ea06aeb5c2c5))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e7468beb-46ce-4875-a5fa-94231673d798))
(fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp e8d82922-9304-4383-86a1-38a203765b41))
(fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp e96bfcec-49eb-45a0-b171-85134550e02c))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ea42fb53-3951-470a-bc7c-9ec4b59f142b))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ed62dc55-0233-4904-b1ba-50c2c7688b5f))
(fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp ee815521-e937-4714-8136-d5838119f8d7))
(fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp ef77639f-8b41-487f-bb6b-853e4e170d94))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f10ea690-d2a9-4ea7-bce4-521085bea0bf))
(fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp f20852c8-7846-41b2-8f5c-bd71b7803128))
(fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp f54f2b4a-b4e9-4954-8ba9-fac4cf2dd721))
(fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp f8822ab3-27ae-4eb1-91e0-2422ae3526dd))
(fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp fc79c7bf-da83-4f05-be06-1e3db76a8f7c))
(fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 5ba9147c-31e6-4221-9e6c-a7736ef3b957))
(fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 63606640-af4f-4096-bc83-9adb2e35e87e))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 4323032f-61ad-42d9-9bf1-87d50f6b1ded))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 94393ecd-ac14-48a2-be65-361379f5d5ab))
(fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d7805a42-8d04-485f-8a8b-79688074cdc9))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 0ae19b13-788a-4ac4-a451-2588bf6850e8))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "-22V") (pintype "passive") (tstamp c94a0a41-5b47-4709-878e-3b21faac334e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 09f06d81-c8bc-4259-ae4e-cd7eb7762336)
(at 50.02 28.8 -90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/9dcce184-f3ce-477b-a1aa-16025da91b59")
(attr smd)
(fp_text reference "R3" (at 3.365 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7c36595-e1a1-4776-b574-c89565c6aff2)
)
(fp_text value "100k" (at 0.727064 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d999856e-c2b9-4674-9062-f91610c51abd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp adc0cc31-cd52-4ea6-a8ce-61ab6d221965)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 2393d051-b5ee-4b5c-a29a-83db5667cf72))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 930a3aec-1e48-4c3a-a7aa-f21e82af2835))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2217fcd9-f692-4dfa-a64e-2ee08e9aadc1))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 607e77a8-e280-4d4f-b144-d7abff257ded))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 9dcf4ce2-f5fd-4ffe-aa8d-aea0a7a78274))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp e98b1302-d64c-4abc-bc9a-e960ecac6fb5))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4e0c304b-a97b-431f-a590-529c09e732a6))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 66d69173-076e-41f3-89d0-d1ceb05647f2))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 81350920-4205-431b-b13a-4b3e5e5a7c5b))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp c6e4f21b-121b-4ba8-bbae-2b915b5f450b))
(pad "1" smd roundrect (at -1.4625 0 270) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 22 "Net-(C6-Pad1)") (pintype "passive") (tstamp 7f615d65-ae65-45c5-99f3-62e5820dbdba))
(pad "2" smd roundrect (at 1.4625 0 270) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 11 "Net-(R3-Pad2)") (pintype "passive") (tstamp 0ca89f54-9bf9-443b-b855-fba0983a43cd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0a8d4dd3-7105-4b30-a701-b67f075af297)
(at 34.5 56 -90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/d0a63483-9262-4daa-933b-19ce0ffbb204")
(attr smd)
(fp_text reference "R9" (at 0 -1.82 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7b86079-9d2c-4fd6-8d76-6ae72a0cc273)
)
(fp_text value "1K" (at -3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31a97055-6ce4-478a-ba70-96dc7adb1625)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp aa8c8286-1053-4159-8555-305ef2d013c3)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 48e78047-41cb-433e-9442-e8045d6410f3))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 56108874-1de9-4b19-9ee2-d4e406ffbee3))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2b678031-6e14-41cb-a73b-1c25c667421d))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 448f7029-fa71-4afc-ae2b-ae2b8d887bce))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 8a09a7ab-67fa-47b5-a702-00d3d7abc47b))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp cfea6bcf-e654-427c-8431-7ee9d0fd6926))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2ee58dad-f5c3-42a6-9e79-99c082c20383))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp acc7175a-fde6-40d9-9061-ac7a9d842b64))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b49fc837-b77a-4d65-b9a2-24f9cd694ebe))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp e01c0d4f-cc7d-4bab-b8ce-220a75383c21))
(pad "1" smd roundrect (at -1.4625 0 270) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 21 "Net-(D4-Pad1)") (pintype "passive") (tstamp 6efabf2c-4563-4915-bd5e-b23f1bc2b0cd))
(pad "2" smd roundrect (at 1.4625 0 270) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 2 "GND") (pintype "passive") (tstamp a96b32a6-19a3-4445-adf0-b376287f2e95))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "switch:switch" (layer "F.Cu")
(tedit 0) (tstamp 0d4c7db9-9421-4ad0-8828-2befd9749780)
(at 23 52.5 -90)
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/7dbb3ed4-bee9-411a-90c5-e585c3b1b706")
(attr through_hole)
(fp_text reference "SW1" (at -8 5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c648757-8a55-41c8-8353-a8be72398c8b)
)
(fp_text value "SW_SPDT" (at 0 -2.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8391575-3e86-4024-b69e-b20184767526)
)
(fp_text user "${REFERENCE}" (at 0 4 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2eed6167-30e0-4965-b720-0f3396b5906c)
)
(fp_line (start -6 3) (end 6 3) (layer "F.SilkS") (width 0.12) (tstamp 25eb61b3-7d06-4d6b-84ac-423d59b443ee))
(fp_line (start 6 11) (end -6 11) (layer "F.SilkS") (width 0.12) (tstamp 4b464e47-08d7-45a1-9229-eabee7f6c416))
(fp_line (start -7 10) (end -7 4) (layer "F.SilkS") (width 0.12) (tstamp 856b9ead-97da-44d3-b76a-37088a03bbbf))
(fp_line (start 7 4) (end 7 10) (layer "F.SilkS") (width 0.12) (tstamp b765bd27-cb17-4869-ab0b-c072c09dd8fc))
(fp_rect (start -1 3) (end 1 -2) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 70002d5d-df83-413e-ae3d-060310b69b97))
(fp_rect (start 4 3) (end 6 -2) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 701b5390-69cf-4999-80dc-4d325c0a75e0))
(fp_rect (start -7 3) (end 7 11) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 7fae11c7-cabe-4a57-8525-c454675ddf96))
(fp_rect (start -4 11) (end -1 15) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp baecd0f0-3c24-4ba3-85f3-ccc0445e9e8f))
(fp_rect (start -6 3) (end -4 -2) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp e271f3b9-951c-44ea-bed2-c0b881356e24))
(pad "1" thru_hole oval (at -5 0) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask)
(net 23 "unconnected-(SW1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp e8358ed3-da8a-42f7-b661-8534e463c21c))
(pad "2" thru_hole oval (at 0 0) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask)
(net 9 "Net-(PJ1-Pad1)") (pinfunction "B") (pintype "passive") (tstamp 03469da7-deeb-45a9-ad0e-5619dbbb880e))
(pad "3" thru_hole oval (at 5 0) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask)
(net 10 "Net-(F1-Pad1)") (pinfunction "C") (pintype "passive") (tstamp cd1729eb-fcb5-454b-8f68-7850f50faf70))
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 10d86876-e8bf-40cf-ba43-f592dece4948)
(at 68 54 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/450e5a72-7625-4b92-a4db-e46b61f6e2a6")
(attr smd)
(fp_text reference "R6" (at -3.5 0.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6aad0af-d673-4bf8-b4c6-06dbe0b1ab8c)
)
(fp_text value "470R" (at -4.5 -1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc377dbd-4253-4180-8682-265d47597986)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 46322994-cf73-4e03-b541-be4de25d90db)
)
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 58c29fe7-f26d-405e-9800-6bfa692fff01))
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 9c074c37-7850-4a75-9e8e-01e28da5eeec))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 56c47734-3ed8-4455-89f3-5b6b0ccc666d))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 6498987f-b081-451e-867c-31a9f3c42f2f))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 96fbfeaf-3a6d-471b-8901-d3b98870b36f))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp c8f80a69-52d3-4e5c-bbd7-18bdc6c3618e))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 597dc134-e2f9-4efd-aa1d-3119b9306edf))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9ae06703-a729-4751-afa3-4939d4641cb8))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 9e2d0799-f594-450a-8951-fefdf7d66ece))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp ef6727d0-582c-4c95-bcd5-e83a583bb73f))
(pad "1" smd roundrect (at -1.4625 0 180) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 4 "-9V") (pintype "passive") (tstamp af215123-1cb1-4672-8f62-5e19da74e98b))
(pad "2" smd roundrect (at 1.4625 0 180) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 12 "Net-(R6-Pad2)") (pintype "passive") (tstamp a65f0396-d920-4008-bd39-1be0ee15f05c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm" (layer "F.Cu")
(tedit 5995936A) (tstamp 17576de8-e22f-4da9-b051-6b6bb49f96cc)
(at 31.5 54.5 180)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/fdf57f9c-3726-41e6-8494-25e23fc2c7ba")
(attr through_hole)
(fp_text reference "D4" (at -2 3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a362b03-69ee-4b1f-b653-32a8ac132ea9)
)
(fp_text value "PWR_LED" (at 2 -3.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 576d1f38-6c0b-4ee9-a024-a6c2e1c6c615)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp 43dce9d2-f701-4764-9853-5bb81454f74c)
)
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer "F.SilkS") (width 0.12) (tstamp 719602d4-7a99-409f-9928-be2e82a92503))
(fp_arc (start 4.26 -0.000462) (mid 2.072002 2.880433) (end -1.29 1.54483) (layer "F.SilkS") (width 0.12) (tstamp 7eebed3e-b075-4589-8b72-8ebc07c9edc3))
(fp_arc (start -1.29 -1.54483) (mid 2.072002 -2.880433) (end 4.26 0.000462) (layer "F.SilkS") (width 0.12) (tstamp f5cfcd68-d100-44f6-8cb8-9c6f876547e6))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4dc0972d-ad57-463b-8ba1-b0776695b8d0))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 0a7bd530-308f-472e-a3a1-c6642f4cc8a9))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 228af27e-af75-42e0-91a8-98a3616b945c))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 23efd828-c3dd-4c72-bb3d-adc9ae35b986))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer "F.CrtYd") (width 0.05) (tstamp aaa022bb-bd6d-4479-887e-1625445e6e8d))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp bc4f5fae-da94-4412-8649-32447c9ba5a4))
(fp_arc (start -1.23 -1.469694) (mid 4.17 0.000016) (end -1.230016 1.469666) (layer "F.Fab") (width 0.1) (tstamp 5d0bbc41-e409-416c-9d53-d476971687a8))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 66c3346e-a484-4d11-87a7-59a768ce549a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 443d84e4-2bd0-4ae5-a6e5-5c9093b0989b))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 18 "VCC") (pinfunction "A") (pintype "passive") (tstamp 9a5585bc-b9a2-419c-b5e4-8e7eed41ac57))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 2b958038-7ed8-4e8c-9a4b-acc79256798a)
(at 63.5 34.5 90)
(descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "diode handsolder")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/5d148b3d-ea87-422a-a789-b51b2b09027e")
(attr smd)
(fp_text reference "D2" (at -3 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a0c597c-9cf7-4f00-9098-bea1e6b5b863)
)
(fp_text value "D_Schottky" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69f56c04-d73a-4c5d-8723-751923054943)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 575e0125-0a40-4b43-b39a-30a29951e3c6)
)
(fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 3fdb5477-e3a6-4ab1-9aad-7a42bc45d198))
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 6ca5ce88-3560-4c3f-bfbb-2b04c7ec5fb0))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp b6cea3cc-ce8b-449f-b658-6408cb0faa70))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 04de2fa3-2f45-4b2c-9990-ce6840eb9640))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 19988e2d-834f-46c8-b48b-bb0bd1590eff))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dc6278e8-3b40-4454-8b22-0f7df7648fa7))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ed3156eb-c803-4af3-9f7f-1d3c3b78c5e6))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6e8df696-2437-4756-b5a9-9b0f27ee5c03))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 7a52cb27-5cde-45fe-8435-5449f8e4cbc1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 93c6e098-1dfa-4243-a326-dc820c0cdeb2))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 9fc01386-15bb-4e29-b701-f82724631c0e))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp df3e90af-7a9a-4817-bd4e-89ca5cfa87f4))
(pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp b39a20df-eb19-47ed-a47b-96629b067e9f))
(pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 8 "Net-(C4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp e860e7ef-97d1-4553-9362-d1c6da42efc2))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "text_only:text_only" (layer "F.Cu")
(tedit 62351AFD) (tstamp 304f1506-cc6b-4b9d-801c-ec2f1225d77e)
(at 145.5 13)
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/5f75fce7-e040-4a8c-8ad9-e3e3791805a9")
(attr exclude_from_bom)
(fp_text reference "T2" (at 0 -0.5 unlocked) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d94f046-e651-4cbb-9c2c-f1901976f82c)
)
(fp_text value "Toshiba T1200 PSU" (at 8 14.5 270 unlocked) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.3)))
(tstamp 6a116532-1846-45e5-9d5c-dd15cb23256a)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2ed327d-1e1f-4926-8660-694a47352c5f)
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 30efec45-12f5-4813-8637-4fdf4e644352)
(at 63.5 30 -90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/a195add8-6f38-4887-a3e0-d64024ffb8b1")
(attr smd)
(fp_text reference "C4" (at -0.5 -1.85 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cf8e3c2-8f8c-4b8e-a7d4-f39eb80c571a)
)
(fp_text value "1uF" (at -1 -3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a40d2f3-5410-4b29-a2ea-adb340c1b3b8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 010f2735-8440-4a0d-82f3-a4e12cee66e7)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 153fd268-b994-41d4-b5fc-36c8882eef32))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 97a15663-0bcf-4950-b0d0-a5dce8b7ee55))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 2650224f-707b-472b-b8ea-ffe6337c070e))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 6482e4cd-8b03-4c02-9da5-8cb50aeeb5e0))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 8a17a5f1-f319-4bcb-b47a-70729678fe09))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp aae66e8b-9d74-4671-9952-53c4f2cf9bb8))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 11b86f6d-e7ed-4458-84b1-520fd75e2f52))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 13ca94df-fa5a-4bd7-b8ce-b9b987435ae7))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 17892378-1b51-4016-8e28-3d6ad74f16a9))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 5bae20ca-70c8-4d76-a2df-2e6448ad1c05))
(pad "1" smd roundrect (at -1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 7 "Net-(C4-Pad1)") (pintype "passive") (tstamp 3446286d-b1d4-4022-b7a3-6dad36034231))
(pad "2" smd roundrect (at 1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 8 "Net-(C4-Pad2)") (pintype "passive") (tstamp 3c0a5a6d-1549-4df6-ad5b-6ba773ae11e6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "text_only:text_only" (layer "F.Cu")
(tedit 62351AFD) (tstamp 40471cca-d282-43df-b192-9f98297692b5)
(at 153 15.5)
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/e0b7f899-9704-4714-ac7e-6f176d9f76bb")
(attr exclude_from_bom)
(fp_text reference "T1" (at 0 -0.5 unlocked) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a624bdb8-9ed1-4c23-92fd-778f4cdea433)
)
(fp_text value "Rev 1.0" (at -3 0.5 270 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.05)))
(tstamp 8ebf5590-c736-4682-a968-fa9461d5c690)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a19cad61-fb83-43bf-abfb-d02e4e56a3f9)
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P2.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 4513914f-2207-4c68-bfdf-e2c18b49d356)
(at 33.9726 60.5 180)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/70ec08d3-5143-41c9-b8e0-7b9dff3db67c")
(attr through_hole)
(fp_text reference "C1" (at -2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b4b1d76-50fc-4cbf-b184-247a7339cb40)
)
(fp_text value "4.7uF" (at 3.9726 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c81d8134-c406-4ecc-871a-d5258e7d261f)
)
(fp_text user "${REFERENCE}" (at 1 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp de71d5f5-be56-4e45-b1ad-76e78517b277)
)
(fp_line (start 1.6 0.84) (end 1.6 1.994) (layer "F.SilkS") (width 0.12) (tstamp 00a5446f-7343-4d8b-8eb0-a72479c04585))
(fp_line (start 1.761 0.84) (end 1.761 1.94) (layer "F.SilkS") (width 0.12) (tstamp 00f4a830-5fc6-49ec-bb40-0c7af3f88850))
(fp_line (start 1.68 0.84) (end 1.68 1.968) (layer "F.SilkS") (width 0.12) (tstamp 029cb043-a583-4295-9087-8180356c06b2))
(fp_line (start 1.2 0.84) (end 1.2 2.071) (layer "F.SilkS") (width 0.12) (tstamp 07c1ac26-4209-4bd5-a1a3-a40e43412adb))
(fp_line (start 1.721 0.84) (end 1.721 1.954) (layer "F.SilkS") (width 0.12) (tstamp 0f21389b-637a-469e-9bb9-62a245b930a5))
(fp_line (start 1.28 -2.062) (end 1.28 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1017f75d-cd15-4583-882c-a61596d80329))
(fp_line (start 2.441 0.84) (end 2.441 1.516) (layer "F.SilkS") (width 0.12) (tstamp 13191170-7239-4940-b72f-db144e5418ea))
(fp_line (start 2.201 -1.708) (end 2.201 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 181fee1b-c9eb-4ab4-b215-34def1af862f))
(fp_line (start 2.921 -0.859) (end 2.921 0.859) (layer "F.SilkS") (width 0.12) (tstamp 1e3b5ea4-24ef-49b6-a5ee-be74025b05f5))
(fp_line (start 3.041 -0.537) (end 3.041 0.537) (layer "F.SilkS") (width 0.12) (tstamp 2163f2ed-b640-4690-bced-ac89c27bf34f))
(fp_line (start 2.361 0.84) (end 2.361 1.587) (layer "F.SilkS") (width 0.12) (tstamp 26280bd8-b587-40bc-9943-3c56b973c545))
(fp_line (start 1.801 -1.924) (end 1.801 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2825a173-5055-4a3c-9b36-c316d804ed5c))
(fp_line (start 1.08 -2.079) (end 1.08 2.079) (layer "F.SilkS") (width 0.12) (tstamp 292d8ec1-2e39-4c7f-ab14-d99d8fd9f479))
(fp_line (start 1.44 0.84) (end 1.44 2.034) (layer "F.SilkS") (width 0.12) (tstamp 2b6bd9ea-57ff-42e2-9238-0334270570b7))
(fp_line (start 1.24 0.84) (end 1.24 2.067) (layer "F.SilkS") (width 0.12) (tstamp 2cf5fec5-1b31-4a06-9dcb-01bf8fde8857))
(fp_line (start 2.041 -1.808) (end 2.041 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2d5ffd03-de01-4034-94bf-9873eb7c98c7))
(fp_line (start 1.28 0.84) (end 1.28 2.062) (layer "F.SilkS") (width 0.12) (tstamp 2f95d38e-a03f-4cf7-9731-498d6751a3a3))
(fp_line (start 2.161 0.84) (end 2.161 1.735) (layer "F.SilkS") (width 0.12) (tstamp 3414c86f-33bf-46b1-95d2-951da2d0c86c))
(fp_line (start 1.52 -2.016) (end 1.52 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 37cbed5a-bb9b-4356-b381-bb1c7a1e2745))
(fp_line (start 1.921 -1.87) (end 1.921 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 399fa73f-943c-4b10-b6c8-3c4d478823fd))
(fp_line (start 1.881 0.84) (end 1.881 1.889) (layer "F.SilkS") (width 0.12) (tstamp 39baf591-cd7c-4de9-8ea2-f3f8b7dfa4bb))
(fp_line (start 1.64 0.84) (end 1.64 1.982) (layer "F.SilkS") (width 0.12) (tstamp 3be9cc1e-9a69-4054-adb3-246cb1689f48))
(fp_line (start 1.36 0.84) (end 1.36 2.05) (layer "F.SilkS") (width 0.12) (tstamp 3bf30514-4dd4-4388-8f33-bc026e8a9c98))
(fp_line (start 2.761 -1.142) (end 2.761 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3d3ebc42-c0c8-49b5-bdc9-0cbc9174a595))
(fp_line (start 2.321 -1.619) (end 2.321 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3ef1e9a9-7e3e-4b7c-bf15-f7e4fe6dca2a))
(fp_line (start 1.36 -2.05) (end 1.36 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4072d703-56d7-43fc-9665-d46cde1e78d1))
(fp_line (start 1.6 -1.994) (end 1.6 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4121cd42-c755-4c84-ac06-2b20918f03cd))
(fp_line (start 2.201 0.84) (end 2.201 1.708) (layer "F.SilkS") (width 0.12) (tstamp 43d436b5-d977-4a32-b44f-14e3f5bf6b90))
(fp_line (start 2.961 -0.768) (end 2.961 0.768) (layer "F.SilkS") (width 0.12) (tstamp 482ac194-df37-464d-9c8c-92fc4e152e74))
(fp_line (start 2.041 0.84) (end 2.041 1.808) (layer "F.SilkS") (width 0.12) (tstamp 50064b54-7ac3-4289-bb62-a0ca22288a1f))
(fp_line (start 2.281 0.84) (end 2.281 1.65) (layer "F.SilkS") (width 0.12) (tstamp 50ef58b1-64a0-4a12-8310-eeca605807e0))
(fp_line (start 1.16 -2.074) (end 1.16 2.074) (layer "F.SilkS") (width 0.12) (tstamp 5247c59f-2ec5-461b-b0be-ecde64563fc2))
(fp_line (start 2.161 -1.735) (end 2.161 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 55ba9511-e86f-458b-91b0-bb38541c5b0f))
(fp_line (start 2.881 -0.94) (end 2.881 0.94) (layer "F.SilkS") (width 0.12) (tstamp 5879084e-068f-4523-9d41-18cd5ad4645a))
(fp_line (start 2.521 0.84) (end 2.521 1.438) (layer "F.SilkS") (width 0.12) (tstamp 5881777d-b58e-4007-8da5-8ac40ee50be3))
(fp_line (start 2.321 0.84) (end 2.321 1.619) (layer "F.SilkS") (width 0.12) (tstamp 5a3f86ff-85db-43dc-8aad-e17aab31afb4))
(fp_line (start 2.081 0.84) (end 2.081 1.785) (layer "F.SilkS") (width 0.12) (tstamp 5e724cd2-c39f-445e-af2c-d76b5b67b4e1))
(fp_line (start 1.761 -1.94) (end 1.761 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 5fece32f-c25d-4f5b-ab82-8952055eb773))
(fp_line (start 1.56 -2.005) (end 1.56 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 609e1b04-cdea-41f9-9cc3-26451eae6896))
(fp_line (start 2.641 -1.304) (end 2.641 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 63ecd09f-3ea8-4938-b6dd-8393c7796b3f))
(fp_line (start 1.721 -1.954) (end 1.721 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 676e3cba-a4c9-454a-971b-e32a85b9b148))
(fp_line (start 1.881 -1.889) (end 1.881 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 6ca92c8a-20f4-4897-94ea-623cdf8c58cf))
(fp_line (start 2.721 0.84) (end 2.721 1.2) (layer "F.SilkS") (width 0.12) (tstamp 6d90e7f2-bd52-4136-b1d3-6827fbb81f12))
(fp_line (start 2.441 -1.516) (end 2.441 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 6deccfdf-d18b-4ddf-ab2b-74ee66c284fc))
(fp_line (start 1.12 -2.077) (end 1.12 2.077) (layer "F.SilkS") (width 0.12) (tstamp 71f20b19-2218-472f-a908-329e59a03ca2))
(fp_line (start 1.68 -1.968) (end 1.68 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7237cbea-0e58-4570-8870-fe5ef85a90b6))
(fp_line (start 3.001 -0.664) (end 3.001 0.664) (layer "F.SilkS") (width 0.12) (tstamp 781fb681-5eec-4673-bca8-28943712b8ce))
(fp_line (start 2.401 0.84) (end 2.401 1.552) (layer "F.SilkS") (width 0.12) (tstamp 78507df6-8b95-4c93-9b46-feea9a0f89aa))
(fp_line (start 2.001 0.84) (end 2.001 1.83) (layer "F.SilkS") (width 0.12) (tstamp 7df278e6-0bac-4822-b333-612f8e452794))
(fp_line (start 2.561 0.84) (end 2.561 1.396) (layer "F.SilkS") (width 0.12) (tstamp 7e95213a-3c86-48e0-810b-7b8ed10cf470))
(fp_line (start 2.561 -1.396) (end 2.561 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7f78563f-feb0-4ac9-885a-0f1285dae9f9))
(fp_line (start 1.04 -2.08) (end 1.04 2.08) (layer "F.SilkS") (width 0.12) (tstamp 809907e9-4ada-4a4f-9c23-88dffa42d8fb))
(fp_line (start 1.961 -1.851) (end 1.961 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 83c510a2-cebe-49a6-9cdd-8ebc04a6f2a6))
(fp_line (start 2.121 -1.76) (end 2.121 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 87922221-5def-4708-8929-816cd48ec6cc))
(fp_line (start 1.2 -2.071) (end 1.2 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8aa2f476-098a-42bb-b8f6-a994aef501ed))
(fp_line (start 1.32 0.84) (end 1.32 2.056) (layer "F.SilkS") (width 0.12) (tstamp 9216b510-0114-41d9-8013-521720ed4d02))
(fp_line (start -1.269801 -1.195) (end -0.869801 -1.195) (layer "F.SilkS") (width 0.12) (tstamp 955d29e8-cca7-4e92-8e1a-cd5268a3884b))
(fp_line (start 2.241 0.84) (end 2.241 1.68) (layer "F.SilkS") (width 0.12) (tstamp 9dd2bcf8-4c22-4a9c-8245-ee3527dff441))
(fp_line (start -1.069801 -1.395) (end -1.069801 -0.995) (layer "F.SilkS") (width 0.12) (tstamp 9fe62e35-08d8-445d-9299-e8df38593f8a))
(fp_line (start 2.481 0.84) (end 2.481 1.478) (layer "F.SilkS") (width 0.12) (tstamp a15bfd5f-05bd-471a-bf18-657f9e0ba88e))
(fp_line (start 1.24 -2.067) (end 1.24 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a422c1a0-530c-4d81-bbb4-8ab294c4d088))
(fp_line (start 1.56 0.84) (end 1.56 2.005) (layer "F.SilkS") (width 0.12) (tstamp a4348689-d5e5-4108-9827-2570b1d686c6))
(fp_line (start 2.401 -1.552) (end 2.401 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a55d938a-94fc-498e-8e9f-730bf131b857))
(fp_line (start 2.601 -1.351) (end 2.601 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a7ac62a4-9c9f-40c0-8e19-b484d4b768c4))
(fp_line (start 1.801 0.84) (end 1.801 1.924) (layer "F.SilkS") (width 0.12) (tstamp ab086bf9-6f5c-44a5-b71e-ac849abb59f5))
(fp_line (start 2.841 -1.013) (end 2.841 1.013) (layer "F.SilkS") (width 0.12) (tstamp afc184b4-6e62-45d8-bc31-57262b62668b))
(fp_line (start 1.4 -2.042) (end 1.4 -0.84) (layer "F.SilkS") (width 0.12) (tstamp afefd96d-9a5a-42c3-9683-5cb71e0a79a7))
(fp_line (start 2.681 -1.254) (end 2.681 -0.84) (layer "F.SilkS") (width 0.12) (tstamp b5e863e6-a6f8-4914-95fd-91328c3793bd))
(fp_line (start 1.64 -1.982) (end 1.64 -0.84) (layer "F.SilkS") (width 0.12) (tstamp b84bdd7b-4c02-4b22-9ab0-eb0c8c97081a))
(fp_line (start 2.801 -1.08) (end 2.801 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ba6f84af-3572-47bd-8b4e-5365f34073fd))
(fp_line (start 1.4 0.84) (end 1.4 2.042) (layer "F.SilkS") (width 0.12) (tstamp bc691093-0d15-4990-8db1-e7b3d596fca1))
(fp_line (start 1.48 -2.025) (end 1.48 -0.84) (layer "F.SilkS") (width 0.12) (tstamp bffa5210-1cfc-495f-b0e5-f8c228a18bf1))
(fp_line (start 2.081 -1.785) (end 2.081 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c13d4333-2138-4ebb-9a8a-4895b77f8f26))
(fp_line (start 1.48 0.84) (end 1.48 2.025) (layer "F.SilkS") (width 0.12) (tstamp c571c50e-0cf6-4675-a66d-a99f46bf5c47))
(fp_line (start 2.721 -1.2) (end 2.721 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c7462004-857a-4c66-a275-532e8dc17fea))
(fp_line (start 2.521 -1.438) (end 2.521 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cd79e103-369c-4f87-9451-7fa05bb19c91))
(fp_line (start 2.601 0.84) (end 2.601 1.351) (layer "F.SilkS") (width 0.12) (tstamp ce071a2f-753e-4744-b0be-1800afa259c3))
(fp_line (start 2.001 -1.83) (end 2.001 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cead2842-1356-4ca4-a6ca-f971d20f7387))
(fp_line (start 3.081 -0.37) (end 3.081 0.37) (layer "F.SilkS") (width 0.12) (tstamp cf88ef98-3766-4402-8739-bc335e6e5a6a))
(fp_line (start 2.361 -1.587) (end 2.361 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cfab276f-fddb-4f1d-8662-b8dbf9aae5d3))
(fp_line (start 1.921 0.84) (end 1.921 1.87) (layer "F.SilkS") (width 0.12) (tstamp d2fa2e83-fe89-4d25-a8d8-de9edb28d319))
(fp_line (start 2.801 0.84) (end 2.801 1.08) (layer "F.SilkS") (width 0.12) (tstamp d6661d4e-e02a-4002-be39-2392fa730bd3))
(fp_line (start 2.681 0.84) (end 2.681 1.254) (layer "F.SilkS") (width 0.12) (tstamp d7580577-35c9-4840-85ff-8888a8cd24f6))
(fp_line (start 2.281 -1.65) (end 2.281 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d7831cbb-afb6-48e1-b0ad-421d7bbe7cdf))
(fp_line (start 2.121 0.84) (end 2.121 1.76) (layer "F.SilkS") (width 0.12) (tstamp d88dbb71-8204-4249-8cc5-4e399ca8e6c2))
(fp_line (start 2.641 0.84) (end 2.641 1.304) (layer "F.SilkS") (width 0.12) (tstamp d9ce9d1c-d9b4-4ea3-95c6-130a3ee8dc82))
(fp_line (start 1.961 0.84) (end 1.961 1.851) (layer "F.SilkS") (width 0.12) (tstamp da808e56-7bf9-4136-94c1-1df4cb241a1c))
(fp_line (start 2.761 0.84) (end 2.761 1.142) (layer "F.SilkS") (width 0.12) (tstamp db6ce120-db99-4482-b770-737450aba819))
(fp_line (start 1.44 -2.034) (end 1.44 -0.84) (layer "F.SilkS") (width 0.12) (tstamp db961fe4-634a-40c1-8f58-ef634b53b9cd))
(fp_line (start 1.841 0.84) (end 1.841 1.907) (layer "F.SilkS") (width 0.12) (tstamp de7264ac-4216-400e-8e6b-9657fbacd66c))
(fp_line (start 2.241 -1.68) (end 2.241 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e11552dd-e95c-40a0-8c89-76072bdaa5a0))
(fp_line (start 1.841 -1.907) (end 1.841 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e3402fe4-27cd-4ef5-84af-1cb06be95b11))
(fp_line (start 1.32 -2.056) (end 1.32 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e3838dc0-6c6a-421f-8738-9fefcdcb4fbe))
(fp_line (start 2.481 -1.478) (end 2.481 -0.84) (layer "F.SilkS") (width 0.12) (tstamp efd193bb-e22c-4428-b7b4-7234ef4886d4))
(fp_line (start 1.52 0.84) (end 1.52 2.016) (layer "F.SilkS") (width 0.12) (tstamp f0262bc8-13c1-498f-ba6f-5e3440ff8d8f))
(fp_line (start 1 -2.08) (end 1 2.08) (layer "F.SilkS") (width 0.12) (tstamp f6a9f7cb-4726-47fa-9dc2-8fc2d0182a91))
(fp_circle (center 1 0) (end 3.12 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6e2952bb-2e97-40ab-8ed0-dd0192149bfd))
(fp_circle (center 1 0) (end 3.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0bf272f0-2715-430a-9aa9-c890530cfd2d))
(fp_line (start -0.502554 -1.0675) (end -0.502554 -0.6675) (layer "F.Fab") (width 0.1) (tstamp 0ea0f262-0537-490d-b4f0-d2beba6601d6))
(fp_line (start -0.702554 -0.8675) (end -0.302554 -0.8675) (layer "F.Fab") (width 0.1) (tstamp db74c9df-2420-4076-9e31-eebae4a5aaf2))
(fp_circle (center 1 0) (end 3 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3ac51822-2216-44f4-abe5-f3f6dad21875))
(pad "1" thru_hole rect (at 0 0 180) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp a07abc83-bb76-4d2b-838e-1a2be7ee9eb1))
(pad "2" thru_hole circle (at 2 0 180) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 3680313a-9a92-4b35-bfe8-3ee7e47c7bc2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P2.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.00mm:PinHeader_1x12_P2.00mm_Vertical" (layer "F.Cu")
(tedit 59FED667) (tstamp 46bcf7b9-a938-45fd-9bcd-17d6380d6de1)
(at 26 67 90)
(descr "Through hole straight pin header, 1x12, 2.00mm pitch, single row")
(tags "Through hole pin header THT 1x12 2.00mm single row")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/e2bf80a8-9216-4889-bb81-899b37136608")
(attr through_hole)
(fp_text reference "PJ4" (at 0 24 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12c5826f-f0a7-465e-851e-83bb7499d12f)
)
(fp_text value "12-pin Output Header" (at 3.5 11 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e755eedc-a892-4d6b-a1a5-85e99aac5d60)
)
(fp_text user "${REFERENCE}" (at 0 11 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2383c438-bd8d-485e-bd33-46068480233a)
)
(fp_line (start -1.06 0) (end -1.06 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 1de81ecb-de74-4d70-ae3d-2741b023122c))
(fp_line (start -1.06 1) (end -1.06 23.06) (layer "F.SilkS") (width 0.12) (tstamp 53903aa2-54d0-4d23-822c-3edd9117de08))
(fp_line (start -1.06 1) (end 1.06 1) (layer "F.SilkS") (width 0.12) (tstamp 740a1064-bd61-4db7-9d8d-4961af10bb9a))
(fp_line (start -1.06 23.06) (end 1.06 23.06) (layer "F.SilkS") (width 0.12) (tstamp 874b574c-c1c2-4e2a-aa3d-e97f56a0ab0f))
(fp_line (start 1.06 1) (end 1.06 23.06) (layer "F.SilkS") (width 0.12) (tstamp a3ac5294-3d7d-4e73-8e6d-a2c63a62a74a))
(fp_line (start -1.06 -1.06) (end 0 -1.06) (layer "F.SilkS") (width 0.12) (tstamp b0c3598f-99b8-41f2-9f5a-b7d729f1d812))
(fp_line (start -1.5 23.5) (end 1.5 23.5) (layer "F.CrtYd") (width 0.05) (tstamp 67dd6430-0b6b-4c3d-a689-c4b1e5488b0e))
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 88fd8fe9-1c19-4f76-8c2f-70d4460829a8))
(fp_line (start 1.5 23.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8cb9f0bb-36b4-47e8-94ce-691686f36c3e))
(fp_line (start -1.5 -1.5) (end -1.5 23.5) (layer "F.CrtYd") (width 0.05) (tstamp ac269a12-49f6-4e98-aa68-3364fe5595d9))
(fp_line (start -1 -0.5) (end -0.5 -1) (layer "F.Fab") (width 0.1) (tstamp 14bef0b5-3a7f-4bc9-bc99-4de310fe1745))
(fp_line (start -1 23) (end -1 -0.5) (layer "F.Fab") (width 0.1) (tstamp 52be7244-11c7-4e42-90d8-1f5f084f6218))
(fp_line (start -0.5 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp 7612b79c-334e-4066-a316-7ecb879e2d74))
(fp_line (start 1 -1) (end 1 23) (layer "F.Fab") (width 0.1) (tstamp ef39a7e9-6403-4fdf-8963-3dd68a62e61b))
(fp_line (start 1 23) (end -1 23) (layer "F.Fab") (width 0.1) (tstamp f1f2ced8-2606-4751-9ac0-4cd58feaf226))
(pad "1" thru_hole rect (at 0 0 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 40466907-b5df-4ce4-9b99-bc5ea32f3bde))
(pad "2" thru_hole oval (at 0 2 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp ad489974-c38b-413d-b1b3-6f008809049f))
(pad "3" thru_hole oval (at 0 4 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 43d17c11-d9e1-456c-b39e-67280cbe4b29))
(pad "4" thru_hole oval (at 0 6 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp d4d5e978-b361-4411-ab34-626ffc0c9bf0))
(pad "5" thru_hole oval (at 0 8 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pinfunction "Pin_5") (pintype "passive") (tstamp a1bdc2d5-2df1-4ec9-9bc1-779ea62eb0c2))
(pad "6" thru_hole oval (at 0 10 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp 01fce53c-748e-42b2-bedb-7677f4de25a9))
(pad "7" thru_hole oval (at 0 12 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 2faf01a4-6cd7-412e-b178-6129fef72571))
(pad "8" thru_hole oval (at 0 14 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "+12V") (pinfunction "Pin_8") (pintype "passive") (tstamp 4952b854-5d2d-444c-92f2-15c085652daf))
(pad "9" thru_hole oval (at 0 16 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "-9V") (pinfunction "Pin_9") (pintype "passive") (tstamp 314c14a2-17b9-4318-9c21-5abc1774e59d))
(pad "10" thru_hole oval (at 0 18 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 06e6ad66-1d21-4d59-bbcf-642bb260dbca))
(pad "11" thru_hole oval (at 0 20 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "unconnected-(PJ4-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp e861c745-9c4f-4cab-86e2-b0d077c5b291))
(pad "12" thru_hole oval (at 0 22 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "-22V") (pinfunction "Pin_12") (pintype "passive") (tstamp 452a67a0-53f3-4a35-81b3-78b4d8f54651))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x12_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 49034fd6-9a60-4587-bc80-4b3fc5166faf)
(at 28 14)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/8b0f7384-cbea-4c31-b0bb-b62ef2d60d3b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP1" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 751e2796-683e-4447-900b-29ee601fd8a7)
)
(fp_text value "12V" (at 0 3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94b73e70-d568-464b-ac69-749f6a4c2dd1)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59156db2-c35a-47be-9811-389d6aee8999)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 88261d3b-cfe5-4204-b38c-147815946fb7))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b7c4e9b2-62ee-42e1-97c1-557807fe575d))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 6 "+12V") (pinfunction "1") (pintype "passive") (tstamp b055544c-bae6-4146-9e52-106d02f182a7))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 4aa28625-5680-4665-9556-a25c6c60ce39)
(at 33 14)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/a8908907-41ea-4814-be33-8b7cb8590e68")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP4" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f24fdf69-3bbb-455b-91cd-f011da828279)
)
(fp_text value "-22V" (at 0 3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7531b24-14d8-4518-9416-3d15a77f4059)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e8b8563-39c3-4092-b8f8-a2b4604d9848)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1c6fca84-588f-4450-9033-cdc078c7955b))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b56e44e2-bb36-4f52-9b1d-31df6de1d83a))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 16 "-22V") (pinfunction "1") (pintype "passive") (tstamp 095b6a5d-5fbf-4f45-96c3-00db4b3aa33a))
)
(footprint "TMV1212:CONV_TMV_1212S" (layer "F.Cu")
(tedit 625CB47E) (tstamp 4c431d5f-7455-44d3-93fe-5b78b9966aab)
(at 129.5 40.5)
(property "MANUFACTURER" "Traco Power")
(property "MAXIMUM_PACKAGE_HEIGHT" "10.7mm")
(property "PARTREV" "March 26, 2020")
(property "STANDARD" "IPC 7351B")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/69d154a6-c899-4967-9ff6-baac07f9ffa5")
(attr through_hole)
(fp_text reference "PS1" (at -6.754 -4.404) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0248d637-758b-46ea-a6bb-1b6adefe58b7)
)
(fp_text value "TMV_1212S" (at -1.114 4.131) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 475de200-cbd7-48de-aefd-41d88ac8510d)
)
(fp_line (start 9.75 3.05) (end 9.75 -3.05) (layer "F.SilkS") (width 0.127) (tstamp 03f4c25d-808c-4c66-b557-19fb47070fc4))
(fp_line (start 9.75 3.05) (end -9.75 3.05) (layer "F.SilkS") (width 0.127) (tstamp 20e93d0c-e9ea-45d6-abd4-e2f60504e1c9))
(fp_line (start 9.75 -3.05) (end -9.75 -3.05) (layer "F.SilkS") (width 0.127) (tstamp bab03295-d610-4054-a8d5-5fad077eac17))
(fp_line (start -9.75 3.05) (end -9.75 -3.05) (layer "F.SilkS") (width 0.127) (tstamp c66bfe74-868c-4949-ad4d-a4d7b46ca666))
(fp_circle (center -10.438 -1.675) (end -10.338 -1.675) (layer "F.SilkS") (width 0.2) (fill none) (tstamp a707bf80-7b3c-41c7-b0c1-52ad2f6b67f5))
(fp_line (start -10 3.3) (end -10 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp 10024f77-81fd-43d3-a2d8-4a075e9b8a74))
(fp_line (start 10 -3.3) (end -10 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp 1e88f15a-3395-4c20-93b3-93158ef3d93e))
(fp_line (start 10 3.3) (end -10 3.3) (layer "F.CrtYd") (width 0.05) (tstamp a0ce2ea6-19a3-436c-bc21-ef4392c1bbac))
(fp_line (start 10 3.3) (end 10 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp cd0647cb-b499-412d-a663-8ab035f57252))
(fp_line (start 9.75 3.05) (end 9.75 -3.05) (layer "F.Fab") (width 0.127) (tstamp 003f7a48-fd19-445f-9156-5a7cd4a45486))
(fp_line (start -9.75 3.05) (end -9.75 -3.05) (layer "F.Fab") (width 0.127) (tstamp 5d22721e-9c1c-4cc2-8220-92f6e612d923))
(fp_line (start 9.75 -3.05) (end -9.75 -3.05) (layer "F.Fab") (width 0.127) (tstamp 7225e4fc-8e00-4786-9b21-f18aafad46dc))
(fp_line (start 9.75 3.05) (end -9.75 3.05) (layer "F.Fab") (width 0.127) (tstamp e493e888-26b6-4047-aefe-0dc8efcb5b3a))
(fp_circle (center -10.438 -1.675) (end -10.338 -1.675) (layer "F.Fab") (width 0.2) (fill none) (tstamp 797d2137-cb88-4d84-ac26-b68f4e258195))
(pad "1" thru_hole rect (at -7.65 -1.675) (size 1.218 1.218) (drill 0.71) (layers *.Cu *.Mask)
(net 18 "VCC") (pinfunction "+VIN_(VCC)") (pintype "input") (tstamp 3a0d60c7-b303-4460-ac79-f8e4a5089420))
(pad "2" thru_hole circle (at -5.11 -1.675) (size 1.218 1.218) (drill 0.71) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "-VIN_(GND)") (pintype "input") (tstamp e09994b4-1f57-4d3f-99e5-333bdf22c232))
(pad "5" thru_hole circle (at 2.51 -1.675) (size 1.218 1.218) (drill 0.71) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "-VOUT") (pintype "output") (tstamp 4fc08455-568a-41e1-a55d-0ebbb720e6b5))
(pad "7" thru_hole circle (at 7.59 -1.675) (size 1.218 1.218) (drill 0.71) (layers *.Cu *.Mask)
(net 6 "+12V") (pinfunction "+VOUT") (pintype "output") (tstamp 27035f42-2b74-4aa8-be82-992da3a2ced2))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 4ceeb113-aca1-4a57-abb1-99a11864c296)
(at 35.55 14)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/ebdfdf84-797e-4cbb-bf3d-f44387af3fe1")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96b47b16-8a25-4bb2-8ca1-9841605404a6)
)
(fp_text value "+5V HDD" (at -0.1 5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19ed8537-8fff-4a81-89fa-991cde97dbbb)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba5579ff-62a6-49a5-b961-b1167f3aa2b3)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 817ec562-c078-470c-af3a-23ddd167be6d))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 24d49751-ab6f-4ef0-82cb-763e40a31777))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 17 "+5V_HDD") (pinfunction "1") (pintype "passive") (tstamp bbddd931-e61d-489c-9bf8-0bacdcea9012))
)
(footprint "Connector_BarrelJack:BarrelJack_Horizontal" (layer "F.Cu")
(tedit 5A1DBF6A) (tstamp 54bb4d5c-d18f-4810-ad57-7701273399ed)
(at 25 37.5425)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(path "/b45059f3-613f-4b7a-a70a-ed75a9e941e6")
(attr through_hole)
(fp_text reference "PJ1" (at -7 -5.5425) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c76b6d9e-0219-4a95-b928-e4eb3909518b)
)
(fp_text value "+12V Input" (at 3 0.4575 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1e9b481-c8d9-4ead-915f-ebf5544705fa)
)
(fp_text user "${REFERENCE}" (at -3 -2.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04216d84-e824-4bb3-b463-ea6199a58c8c)
)
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer "F.SilkS") (width 0.12) (tstamp 02abc5cf-96a3-4062-a054-1d55128e21c7))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 06030fb0-cffb-4e1c-80af-3f4a49eaa54e))
(fp_line (start -13.8 4.6) (end -13.8 -4.6) (layer "F.SilkS") (width 0.12) (tstamp 125141b3-d46f-421d-a511-9e9c7438da93))
(fp_line (start -13.8 -4.6) (end 0.9 -4.6) (layer "F.SilkS") (width 0.12) (tstamp 49e200b5-c846-436d-a79e-50ed65457154))
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer "F.SilkS") (width 0.12) (tstamp 75843ce7-ee4c-4725-b79d-1b918405e60c))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp ae8168b6-9a7c-4d9e-b9bd-fbc8b2aac9ca))
(fp_line (start 0.9 4.6) (end -1 4.6) (layer "F.SilkS") (width 0.12) (tstamp b7bc8a86-54a1-4ec4-a533-5967b440e3a7))
(fp_line (start -5 4.6) (end -13.8 4.6) (layer "F.SilkS") (width 0.12) (tstamp dc3df5dd-4510-4000-a05b-865945b99e47))
(fp_line (start 1 -4.5) (end 1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 11300029-5e03-4d8c-a527-9ae0b262bbc9))
(fp_line (start 1 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 1af75f96-7d08-4dee-9eae-1b631842595b))
(fp_line (start -1 6.75) (end -5 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 1c1a979b-09f0-410c-8031-6ff73f6c29d6))
(fp_line (start 1 -2) (end 2 -2) (layer "F.CrtYd") (width 0.05) (tstamp 272ad433-f58b-44eb-8517-d86f8fbdd9cd))
(fp_line (start -14 4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3a635f85-df7a-4b59-92c0-b0917951cba4))
(fp_line (start 1 -4.5) (end 1 -2) (layer "F.CrtYd") (width 0.05) (tstamp 4a69cbba-1164-4b0d-8fc7-bccd01cc5a42))
(fp_line (start 2 2) (end 1 2) (layer "F.CrtYd") (width 0.05) (tstamp 4a9a4f92-f88f-4de9-86d5-0f18f20d5e1a))
(fp_line (start -1 4.75) (end -1 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 5371bac1-6816-4e05-8376-57a81d441c6f))
(fp_line (start 1 -4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp aa5438de-18a8-4017-883f-5c7cc00a00ac))
(fp_line (start -5 6.75) (end -5 4.75) (layer "F.CrtYd") (width 0.05) (tstamp d582351f-d2e7-4f76-8df2-1501a1691d77))
(fp_line (start 2 -2) (end 2 2) (layer "F.CrtYd") (width 0.05) (tstamp da3b0651-3f3a-4c10-96ba-6b623fa5beac))
(fp_line (start 1 2) (end 1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp db66d19e-ec2a-40c2-9b7d-9208d187f635))
(fp_line (start -5 4.75) (end -14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp ff778c3f-0dd3-42a3-a005-a4ec73f93636))
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer "F.Fab") (width 0.1) (tstamp 10a74b29-5b0a-4ca5-9601-d6ed20c0a725))
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer "F.Fab") (width 0.1) (tstamp 2cb4f041-fe72-471d-9787-73069b82458a))
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer "F.Fab") (width 0.1) (tstamp 785cb010-9afb-47ef-a77a-b3fcdf8dea85))
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 9970f30b-b0b2-4637-8229-b473b5f6c7fd))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp c9144e6b-bfb2-4f54-bb35-881738d959d4))
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer "F.Fab") (width 0.1) (tstamp d0f3556b-9dab-400e-ae1b-cf092ac0e397))
(pad "1" thru_hole rect (at 0 0) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 9 "Net-(PJ1-Pad1)") (pintype "passive") (tstamp 2a3a78d9-7c68-4619-b038-def6e1c23065))
(pad "2" thru_hole roundrect (at -6 0) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0e5eace1-343c-462f-b403-5ec9c6ca7f0e))
(pad "3" thru_hole roundrect (at -3 4.7) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25) (tstamp 50a41686-ed3e-4477-809c-da8a9de9a11a))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "text_only:text_only" (layer "F.Cu")
(tedit 62351AFD) (tstamp 6da7b242-9987-4fb6-b034-ddf92d45df11)
(at 145.5 14.5)
(property "Sheetfile" "T1200_PSU.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/e67119b4-0aa2-4154-9551-606ff13ea57d")