-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRC12-2.kicad_pcb
8893 lines (8858 loc) · 386 KB
/
RC12-2.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "RC12-2")
(date "2024-04-11")
)
(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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "Gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Dir")
(net 3 "PWM")
(net 4 "+5V")
(net 5 "+12V")
(net 6 "unconnected-(J1-Pin_1-Pad1)")
(net 7 "unconnected-(J1-Pin_2-Pad2)")
(net 8 "unconnected-(J1-Pin_3-Pad3)")
(net 9 "unconnected-(J1-Pin_5-Pad5)")
(net 10 "Flow Pin")
(net 11 "unconnected-(J1-Pin_7-Pad7)")
(net 12 "unconnected-(J1-Pin_8-Pad8)")
(net 13 "unconnected-(J1-Pin_10-Pad10)")
(net 14 "unconnected-(J1-Pin_11-Pad11)")
(net 15 "unconnected-(J1-Pin_13-Pad13)")
(net 16 "unconnected-(J1-Pin_14-Pad14)")
(net 17 "unconnected-(J1-Pin_15-Pad15)")
(net 18 "unconnected-(J2-Pin_1-Pad1)")
(net 19 "unconnected-(J2-Pin_3-Pad3)")
(net 20 "unconnected-(J2-Pin_5-Pad5)")
(net 21 "unconnected-(J2-Pin_6-Pad6)")
(net 22 "Net-(J2-Pin_7)")
(net 23 "Net-(J2-Pin_8)")
(net 24 "unconnected-(J2-Pin_9-Pad9)")
(net 25 "unconnected-(J2-Pin_10-Pad10)")
(net 26 "unconnected-(J2-Pin_11-Pad11)")
(net 27 "unconnected-(J2-Pin_12-Pad12)")
(net 28 "unconnected-(J2-Pin_13-Pad13)")
(net 29 "unconnected-(J2-Pin_14-Pad14)")
(net 30 "unconnected-(J2-Pin_15-Pad15)")
(net 31 "Flow Sensor")
(net 32 "unconnected-(J6-Red-Pad3)")
(net 33 "unconnected-(J8-Pin_3-Pad3)")
(net 34 "Net-(J11-Pin_1)")
(net 35 "Net-(J11-Pin_3)")
(net 36 "Net-(R5-Pad2)")
(net 37 "Net-(R7-Pad2)")
(net 38 "Net-(J12-Pin_1)")
(net 39 "Net-(D2-K)")
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 01fb0af7-2539-4472-bf03-5ffb85b87161)
(at 28.5 96.5 180)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b64fdac8-e8f1-4413-8660-9899bef8b5e8)
)
(fp_text value " " (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 425230d3-0d8e-488c-8d39-6bd8665616f0)
)
(fp_text user " " (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1670e994-2aca-4c1e-bf3e-febaaa1ede7c)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp e3439065-d03e-46f5-8408-72caf40d5b33))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp cc48359a-ceec-41a3-ac1b-5439d5ea303a))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 332d4739-9420-4b6a-8e0e-0ffa8d54979a))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x15_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0935e700-89c4-4cb2-bb31-7ca0ae8ce0aa)
(at 64.28 48.7 -90)
(descr "Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x15 2.54mm single row")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x15, script generated")
(property "ki_keywords" "connector")
(path "/30413d3e-7fcc-4434-84d1-6297b0fd0c11")
(attr through_hole)
(fp_text reference "J2" (at -2.525 -0.295 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ecf0a27-faa8-4c47-a534-38b7394e50ea)
)
(fp_text value "Conn_01x15_Female" (at 0 38.33 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bfbacf5-6f2f-4d4a-be84-bd850ac5cd7f)
)
(fp_text user "${REFERENCE}" (at 0 17.78) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7faffd85-6f60-4418-8d6c-17f730ac48b4)
)
(fp_line (start -1.33 1.27) (end -1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 903d9487-6169-4bbf-96b6-804f86f3288a))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d45dc10-5781-4977-afe0-86a3c75c49b4))
(fp_line (start -1.33 36.89) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d33b8d5e-76f4-402a-b68a-25837055b66a))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83d503ba-12e5-470c-8340-c5fa5c422875))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fc99e3f-3cd7-4463-ab3c-6280723d8871))
(fp_line (start 1.33 1.27) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09ddb808-962c-449d-a8ae-31e4ad677c3e))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab4cc30e-a069-4efd-a7f8-888b40e4ceac))
(fp_line (start -1.8 37.3) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74f7ca6e-419f-497b-84a5-0ffdbf774ad9))
(fp_line (start 1.75 -1.8) (end 1.75 37.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f315f61f-6241-4e38-817a-c4772cc07d89))
(fp_line (start 1.75 37.3) (end -1.8 37.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ac03b47-649b-4780-849c-aa55ba0debd0))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3573bc8e-eb19-48ec-b2a3-2378e35d7f99))
(fp_line (start -1.27 36.83) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2209c832-43a5-48e5-b467-00a688e26243))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d9b938b-20e0-4bb4-8bf8-72a95c91f5dd))
(fp_line (start 1.27 -0.635) (end 1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 538061a2-9b85-4ba6-82f1-192c9e5b41e7))
(fp_line (start 1.27 36.83) (end -1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b8b655b-026e-4214-beb2-c0231a7b358a))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(J2-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp adde0aa7-1f38-4ce3-9efe-0e1a76b7588a))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 7aba7678-1934-4e98-9f15-c073c1fa85d3))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(J2-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 046f9471-64a2-4bfa-bdf3-65df9e194d4d))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 8a23a304-b6f5-4421-a4aa-b0b97927976e))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(J2-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 64e829d2-2ced-42be-8c67-df9b6445107f))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J2-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp b6bef76f-c6e2-4bea-848c-cc995ba52c75))
(pad "7" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J2-Pin_7)") (pinfunction "Pin_7") (pintype "passive") (tstamp 449f1770-84c1-45e8-b1f2-2f6392c3cfd7))
(pad "8" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "Net-(J2-Pin_8)") (pinfunction "Pin_8") (pintype "passive") (tstamp de021073-fbd1-4aa3-bc14-13c844a9b67a))
(pad "9" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(J2-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive+no_connect") (tstamp 0dd176aa-bba0-4462-8223-abe042bb1883))
(pad "10" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(J2-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp 32f49776-9bc0-49a7-9fab-fbff46755112))
(pad "11" thru_hole oval (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(J2-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 38c137db-08db-4297-b5ce-e803e52348a2))
(pad "12" thru_hole oval (at 0 27.94 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(J2-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp 8c669c4c-29ea-4e7d-8ee9-1212cb05eaff))
(pad "13" thru_hole oval (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(J2-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 2dd73b77-b6ec-433d-937f-bab26676f81c))
(pad "14" thru_hole oval (at 0 33.02 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(J2-Pin_14-Pad14)") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 03f8dba0-2719-4f61-a710-eb0abba91a8e))
(pad "15" thru_hole oval (at 0 35.56 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(J2-Pin_15-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp a4abb590-a4eb-4e0b-8df8-404832a40ef5))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x15_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (layer "F.Cu")
(tstamp 0b723bfa-be43-43b2-8d14-631f6c831c26)
(at 96.275 38.475 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/53fdc85a-be60-4931-81d2-b9c152121aca")
(attr through_hole)
(fp_text reference "C3" (at 5.075 0.175 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2b514ce-7ec5-447a-ac1a-c51802dc0825)
)
(fp_text value "2.2uF" (at 6.675 0.275 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5679774b-d839-44db-bd30-7943c28dbff9)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2020dea7-e33a-4c6e-8daa-7a7ce2a1b250)
)
(fp_line (start -1.37 -1.37) (end -1.37 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2457e54-09d6-47e2-8a18-dcb0e19dba49))
(fp_line (start -1.37 -1.37) (end 3.87 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f45d86f-e3af-4215-a197-56233d398b25))
(fp_line (start -1.37 1.37) (end 3.87 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4e5e73e-32c9-42bc-9c8a-e6e578a6f1ac))
(fp_line (start 3.87 -1.37) (end 3.87 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1c84e58-e633-4113-b347-2352bfca56c8))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e264fe88-b037-43e3-a34b-3a5d49a76ca3))
(fp_line (start -1.5 1.5) (end 4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 771ab386-d005-4941-a1b4-0fa944cedfec))
(fp_line (start 4 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96e28985-2cc8-4556-9053-1c8d08ff8c20))
(fp_line (start 4 1.5) (end 4 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86f2b1fe-ac90-4938-8a33-01f20a6d61ae))
(fp_line (start -1.25 -1.25) (end -1.25 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02e28e1b-0a37-4ca1-80d3-e94de6cc7c9d))
(fp_line (start -1.25 1.25) (end 3.75 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90d07882-aaa3-4238-9f3a-1cb8233dcab4))
(fp_line (start 3.75 -1.25) (end -1.25 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 332adacc-951d-424f-87d3-3be598152868))
(fp_line (start 3.75 1.25) (end 3.75 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60344e05-5acf-4f39-b018-07c3389c22d1))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 39 "Net-(D2-K)") (pintype "passive") (tstamp a6f0e21e-1090-48b7-911d-98778aefaead))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp d1a6cce9-9f0d-49a5-852f-ad0f3ef84715))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 1f3e5813-38f8-4ef4-b169-11dfdca80500)
(at 92.18 83.55 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9e328bcf-0b89-400a-b05a-7dfcc678d9a6")
(attr through_hole)
(fp_text reference "R4" (at -0.19 2.525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59bba1be-620c-4c29-bbd6-c32f17162b23)
)
(fp_text value "4.7K" (at 5.08 2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c5ff69d-52e3-4753-8121-ab91adbf065f)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e36f003a-606d-4ef1-8e0e-6f9e209f01b2)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a75b5edf-8bad-4250-acb5-41d6c8985834))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c25c075a-2a8f-423e-89fb-bf1b682417fb))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6237ecc-5d62-49c8-9c27-75bdbc4b7cb1))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c041e72-10a4-4e8a-8bd4-c4be66a3d3d4))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 458cf52f-deec-4b5c-b252-f925c3755d17))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b2ab2d6-26e2-4fae-b659-bd2c1deed557))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a8650e7-d1cc-4f74-8c3b-7d607dcb4c1e))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 226053a9-4482-4a96-b5ae-fb6bcab2716c))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d3ba356-4c93-4d3a-87d1-a05576baf1c6))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa8435d9-5382-4548-8b6e-cf0c52b898bd))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0012f60-d628-4bed-b3a8-6d7507d8f1ca))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b066df6-8f78-48c2-af40-597fa260ee9a))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73592fb1-e9fc-411f-a18c-9ca590f4cba7))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5ccca2a-b17b-402b-ac98-7eb40a837cad))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 787401da-40ba-4b63-9ab1-dd3f215b897c))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc6abc17-9ade-4fd3-bb24-5fde0f67ceb9))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pintype "passive") (tstamp d5a8f703-6fc5-48ff-ac55-fcea50d636f2))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J2-Pin_7)") (pintype "passive") (tstamp f198753e-3319-4491-8619-1456f220d738))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 30ce0507-d9fa-4364-b4a8-2ec43fd91b89)
(at 92.155 88.675 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/138424ac-5363-4d73-9b81-2ff7b3af3866")
(attr through_hole)
(fp_text reference "R3" (at -0.04 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b94d54b-bceb-47ae-8255-31cc546843ee)
)
(fp_text value "4.7K" (at 5.31 -2.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 222a195b-0b23-4010-bdf5-2969c1fc5741)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 369ebe35-997c-4b4e-a06a-787fb7e411b2)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98d46579-92af-4d1b-9fbd-e93b62ed3de9))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6e33606-79bf-4a6e-8e23-9134f1c3cdcd))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fff4851a-5b8a-458d-910b-83cd3d272073))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a515bf1-54ff-42d5-af03-167b2b14a0fa))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58f6015d-387e-4d8e-80aa-447b134751f8))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50cda5b1-0ff1-4ec6-8c04-30fedf97f24f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f2168e9-ca00-4d92-b7a6-14c057ed33df))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df0964d3-d17c-4d2f-be41-eec318ff6225))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b494f1d0-fa47-4b37-8236-6e341740782a))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65eb3883-d8a1-4b61-9fb4-f073b6039b61))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1b9f3c0-1af1-44b6-af6f-07170994c3b0))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2de4b72-8494-42db-b932-ff2f2c1860c5))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21e0188b-df49-4703-ac7a-11c623ebd881))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 422b785f-d784-4e3b-9fe2-24ccebbc3bcc))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b343198a-52dd-4804-8277-ec6828d3fb6d))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eab582cd-b0e1-4de4-a6e6-e05c09caa575))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pintype "passive") (tstamp 89769c53-468b-4035-b5d8-0e6e6f7b0076))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "Net-(J2-Pin_8)") (pintype "passive") (tstamp 8e6f2077-d2f4-41c6-8aa3-849e318876fe))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x15_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 380534ff-6443-442a-b73c-ef1cb25de874)
(at 64.23 33.49 -90)
(descr "Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x15 2.54mm single row")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x15, script generated")
(property "ki_keywords" "connector")
(path "/28502736-d10a-4f49-9659-c224e4cc045e")
(attr through_hole)
(fp_text reference "J1" (at 2.485 -0.22 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7626bbac-d2cf-441f-aa04-f06b6b95eb3a)
)
(fp_text value "Conn_01x15_Female" (at 0 38.33 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc38997e-9546-4f29-9f1c-25050684d9ef)
)
(fp_text user "${REFERENCE}" (at 0 17.78) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 368dd8ed-8353-431e-bc45-13721da9064f)
)
(fp_line (start -1.33 1.27) (end -1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34349df3-92ef-4a65-8ce7-09dd6f74c6c5))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5adcf7d2-3231-4540-80bb-448c74fcac29))
(fp_line (start -1.33 36.89) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe0b6b36-7a78-4d57-af2f-31d499b464bc))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29f7120e-24f7-468b-a2c0-cad125213191))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2be31ddd-486c-42b6-8f51-9d862d631973))
(fp_line (start 1.33 1.27) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp edb16939-3500-451b-9bbf-d3bee19a740f))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c132914b-9462-4c5c-916e-53161b7252a7))
(fp_line (start -1.8 37.3) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6e2512b-dc8a-4f2d-aa57-a50241066b40))
(fp_line (start 1.75 -1.8) (end 1.75 37.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52a82662-fd08-4c84-bea8-7e971baa3c02))
(fp_line (start 1.75 37.3) (end -1.8 37.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7997f5c2-9473-4a43-b31d-c1f7499fff36))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0b1855a-3810-43e6-a3ea-33cf8386c3f7))
(fp_line (start -1.27 36.83) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bcd66b0-ac3c-4d00-9468-a97477f55e90))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a914bdf-81b4-4f28-be58-59e9a63bfbb3))
(fp_line (start 1.27 -0.635) (end 1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6858472-05a0-45f5-8ccf-71648de1b581))
(fp_line (start 1.27 36.83) (end -1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2a66566-7830-49eb-a253-7910f768dfa2))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(J1-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp f510ff8d-8b47-414b-91bf-5484e3cea604))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 950ac637-f35d-4b48-b23e-68888bdfc6ca))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(J1-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp b8d8e542-4468-4ef7-8fe4-e2af959f00d3))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 34b69f99-dffa-4574-a873-733b697b03b2))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "unconnected-(J1-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 7be1a84a-07f3-4635-9c8f-93ae3aa4e4b3))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "Flow Pin") (pinfunction "Pin_6") (pintype "passive") (tstamp a910bd54-4a29-4778-813d-eb2cb9e6239a))
(pad "7" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(J1-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 276c80ec-e099-4c1a-b976-311e562d4427))
(pad "8" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J1-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 31e21aa7-b430-468a-b18e-9a988f1e7620))
(pad "9" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "Dir") (pinfunction "Pin_9") (pintype "passive") (tstamp 595dba52-f3df-4236-9761-c64bb20a8a6a))
(pad "10" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(J1-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp 65333b29-eff0-4386-ac4e-813de1590a5d))
(pad "11" thru_hole oval (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(J1-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 06ce91ef-e404-43a6-9cd3-b796576d684f))
(pad "12" thru_hole oval (at 0 27.94 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "PWM") (pinfunction "Pin_12") (pintype "passive") (tstamp a5137bbe-8f2d-4512-ae31-5087b51c1867))
(pad "13" thru_hole oval (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(J1-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 964210f0-edff-4fe1-8ef6-c63e7eed01e3))
(pad "14" thru_hole oval (at 0 33.02 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(J1-Pin_14-Pad14)") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 2db5fb13-6b5f-49cc-92c7-2eb229e1ab81))
(pad "15" thru_hole oval (at 0 35.56 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "unconnected-(J1-Pin_15-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp d20ab3b5-1aa7-4c70-bc60-62665e01add6))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x15_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 3a28ed6e-77de-4d94-a8c9-180b3b8f6723)
(at 131.5 23.5 180)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at 20.35 -17.025) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7aae1ed-ef48-46fc-ac68-70eaaa4d9a63)
)
(fp_text value " " (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e3a27e5-1a25-41ee-992f-76d4749d92de)
)
(fp_text user " " (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14e6d85d-0759-471f-8ba8-bd0378a79147)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 552e0f92-b831-4eb9-8ab3-b35477eaaafc))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e9a92bd5-0660-4788-b423-f552899881e5))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 21b64af1-d93b-47f8-bca4-26b5fc80bc48))
)
(footprint "MyFootprints:MD10C" (layer "F.Cu")
(tstamp 46cf75a1-b0fc-452b-97ef-20d614857aa9)
(at 25.7 94.7)
(descr "13Amp DC Motor Driver (MD13S)<br><br><br>Created by: Wai Weng")
(attr through_hole)
(fp_text reference "REF**" (at 1.65 -32.05) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.015)))
(tstamp ceeafbb1-7d57-48db-94f6-349fcbe8b659)
)
(fp_text value "MDD10A" (at 7.7216 -59.4868) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5484de31-226f-4da9-a020-93d0f5efeee2)
)
(fp_text user "MDD3A" (at 7.19328 -22.10308) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp acee1c19-a3df-4e20-9570-50ccbc53ea7c)
)
(fp_text user "MD10C" (at 3.1 -35.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1fcf3a9-9919-4246-ab04-a1a130460c31)
)
(fp_line (start 0 -43) (end 75 -43)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 95d56e0b-46ef-482e-85e6-e69284eaceb3))
(fp_line (start 0 0) (end 0 -43)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0e1c6375-c8cb-4ab4-a322-455d7cdfaa11))
(fp_line (start 0 0) (end 75 0)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp efd58935-d282-494c-b992-00ddf39bf833))
(fp_line (start 75 0) (end 75 -43)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dc14382e-2a7a-4de0-a0cf-f426732114ac))
(pad "" np_thru_hole circle (at 3 -39) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp dccc509d-e696-4540-8f71-5647fb218434))
(pad "" np_thru_hole circle (at 3 -4) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp ce5646eb-1aa2-4dec-a5f2-731a4f257d9f))
(pad "" np_thru_hole circle (at 72 -39) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp 79993656-b7b9-4059-8c9d-b9a5ddd0f678))
(pad "" np_thru_hole circle (at 72 -4) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp e7b063a4-6625-426d-b999-cd848f606c60))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal" (layer "F.Cu")
(tstamp 497b535f-7f2b-4390-b488-5fc4475a5ae1)
(at 123.825 90.65 90)
(descr "Terminal Block Phoenix MKDS-1,5-11, 11 pins, pitch 5mm, size 55x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/6c7d5064-e6fb-40f0-b2cb-28994770aa73")
(attr through_hole)
(fp_text reference "J5" (at 25 -6.26 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a29af42-1c63-428a-b259-7ec4bd7e7d7c)
)
(fp_text value "Screw_Terminal_01x11" (at 29.225 -3.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 438d2998-d515-4021-af28-4e4786c1e563)
)
(fp_text user "${REFERENCE}" (at 25 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77844fb9-6c67-443b-99d7-aae173ad4f2c)
)
(fp_line (start -2.8 4.16) (end -2.8 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a137fad2-d516-4a1d-851c-fa2fabde8a56))
(fp_line (start -2.8 4.9) (end -2.3 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a06fcf18-1b50-4d23-a3dd-4e71c07be099))
(fp_line (start -2.56 -5.261) (end -2.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4a75ddc-4943-4e69-99b8-6f7d9aa0df84))
(fp_line (start -2.56 -5.261) (end 52.56 -5.261)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a087481b-9030-4108-9647-f387bef0ebf8))
(fp_line (start -2.56 -2.301) (end 52.56 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b01063a6-9ac9-4b88-afe0-2e23d3820396))
(fp_line (start -2.56 2.6) (end 52.56 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a778c8bf-e284-4f2e-b990-c4dbe6fe5ecd))
(fp_line (start -2.56 4.1) (end 52.56 4.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe80875b-1a13-4be5-9d06-787c496567eb))
(fp_line (start -2.56 4.66) (end 52.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53e3820e-d1cd-4f69-97d6-f3a3b6dcd7d8))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a2e18ed-9c4b-4fcb-bc48-57834199f56c))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 533cb179-87e1-4a79-9474-a2e60169719d))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 623f401a-1772-4366-91b5-24b3fd9726d8))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fabc2051-53b3-4a32-9293-2035611d1c3b))
(fp_line (start 8.773 1.023) (end 8.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c92d47f0-65fb-47ef-b99c-91d60823fd26))
(fp_line (start 8.966 1.239) (end 8.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64277bd5-69ba-4bc8-991c-00741e8b64ac))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19cbbcf5-954a-4775-ae73-3c13b6aa5efc))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6cc54a07-5e71-4009-81a0-27800229d1e5))
(fp_line (start 13.773 1.023) (end 13.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e684a3b-b237-41ab-87b4-7ac9513de147))
(fp_line (start 13.966 1.239) (end 13.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59f3b648-d343-4a03-b41d-dc627bc3ef3e))
(fp_line (start 16.07 -1.275) (end 16.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 666099ed-d958-4813-be70-eed301081572))
(fp_line (start 16.275 -1.069) (end 16.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f99d626-ff0a-4b52-93e3-a1fe5488656d))
(fp_line (start 18.773 1.023) (end 18.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8c5325e-e31e-49f1-9828-9018b369693b))
(fp_line (start 18.966 1.239) (end 18.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 997ae4e0-5e79-4e2b-aa7a-b61f4aec28dc))
(fp_line (start 21.07 -1.275) (end 21.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e71c2771-1307-4afa-b0bc-123d206f6ddc))
(fp_line (start 21.275 -1.069) (end 21.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 410f34b0-4799-4344-9a70-3a58e6da82db))
(fp_line (start 23.773 1.023) (end 23.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7b41184-9663-446f-902d-a784180f000f))
(fp_line (start 23.966 1.239) (end 23.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb55c2bd-5be3-41a7-bcb2-0f5e71b8f63d))
(fp_line (start 26.07 -1.275) (end 26.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ef352b2-98d7-4abc-a0cd-3eadd0b15869))
(fp_line (start 26.275 -1.069) (end 26.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a36c4786-d468-45de-8360-bf4af3ffbb3b))
(fp_line (start 28.773 1.023) (end 28.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbe465c4-e5de-4ccc-8df4-d3b56e9f24b8))
(fp_line (start 28.966 1.239) (end 28.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d54fff9-c7d3-4fa9-ba6e-fbe4b2cc3666))
(fp_line (start 31.07 -1.275) (end 31.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7300d538-dbc6-4045-9f57-316a9e2de7e7))
(fp_line (start 31.275 -1.069) (end 31.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d210ebdb-f5b3-49a7-89aa-3dcd48a17617))
(fp_line (start 33.773 1.023) (end 33.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40534295-96dd-453b-8bb0-015601fa7f94))
(fp_line (start 33.966 1.239) (end 33.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87fee0ef-0947-4184-be35-cc47e70729eb))
(fp_line (start 36.07 -1.275) (end 36.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19254d58-a83b-467e-8846-d6fe6b4e8e00))
(fp_line (start 36.275 -1.069) (end 36.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fce105b7-dad0-41e0-8f4f-f2d3592e8d27))
(fp_line (start 38.773 1.023) (end 38.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3d2d9ae-d8dd-4015-ba5d-3f6d82169d71))
(fp_line (start 38.966 1.239) (end 38.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e4aa1f4-3604-4969-8225-01050a6f1da0))
(fp_line (start 41.07 -1.275) (end 41.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31461d96-ef83-4cd8-ac99-3bbda5d7b97c))
(fp_line (start 41.275 -1.069) (end 41.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d2a9578-455b-42d8-af97-fd0890847bff))
(fp_line (start 43.773 1.023) (end 43.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11a33ba2-2ab6-4177-a7e2-675db29b1384))
(fp_line (start 43.966 1.239) (end 43.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8964eb8-d7aa-40a1-b092-d932106b5673))
(fp_line (start 46.07 -1.275) (end 46.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04e9f24d-4aaf-4bd4-98d5-f2a9b2fcc8f4))
(fp_line (start 46.275 -1.069) (end 46.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 759de88c-bd16-4e3a-93fb-723e1ca7e76a))
(fp_line (start 48.773 1.023) (end 48.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb07a19d-be63-43c8-a4bf-5e60c4e25996))
(fp_line (start 48.966 1.239) (end 48.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1831c9d1-69b5-4e68-b1e7-14b21241eb60))
(fp_line (start 51.07 -1.275) (end 51.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 713b8815-cb6a-4f71-831a-3daea0d6f629))
(fp_line (start 51.275 -1.069) (end 51.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23fc5068-2255-4145-93bf-95527de043f7))
(fp_line (start 52.56 -5.261) (end 52.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8fad81a-f7c3-4b8a-9e5c-285092448bd7))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac53e673-85cc-40f1-8b7e-61b58b99d163))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a358fecf-fc45-4638-9375-ddd14d3a01bb))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cea78c5f-4c67-455d-adf3-e9a4c5dbe233))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8fbd725-ee4b-4aae-b268-63934428b520))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b5f3276-3295-48ca-9ab3-08d07291a806))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2dd8dbdc-6586-4b5b-86e7-d92400c8a06a))
(fp_circle (center 10 0) (end 11.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c01f0ea1-5d6c-4603-be7b-f04578c7e931))
(fp_circle (center 15 0) (end 16.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0248c2e0-0aae-4343-a4d5-9674d094d504))
(fp_circle (center 20 0) (end 21.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 55bd8906-91c8-4c43-ae5c-3f2358f59bd0))
(fp_circle (center 25 0) (end 26.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0e053f3d-8018-4478-8697-33eaa1b67a92))
(fp_circle (center 30 0) (end 31.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp baa3830e-b5fc-4914-aa59-36e7a45ba19d))
(fp_circle (center 35 0) (end 36.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e4e167d2-5530-4991-bfb1-23ed1e2f5b63))
(fp_circle (center 40 0) (end 41.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a8cc8339-789c-4c21-badd-85a27c7c7d04))
(fp_circle (center 45 0) (end 46.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c17aa1d5-59e4-4cb5-8a62-13c429495bc3))
(fp_circle (center 50 0) (end 51.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b9ba1448-8aac-4ec0-a354-f828b2b140c3))
(fp_line (start -3 -5.71) (end -3 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11be3812-40f8-4c30-a61e-add219eef94a))
(fp_line (start -3 5.1) (end 53 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b8a12a4-f3c9-4d34-bba3-c538b56f3818))
(fp_line (start 53 -5.71) (end -3 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 231f128b-8947-4f41-b5f1-d011461ea3de))
(fp_line (start 53 5.1) (end 53 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43d928d5-aa31-46d1-8374-3ba31a819edf))
(fp_line (start -2.5 -5.2) (end 52.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b0b8889-9041-4945-80ba-f2333c34aa10))
(fp_line (start -2.5 -2.3) (end 52.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b46bcf78-4948-40a5-ad22-44e0dffe578d))
(fp_line (start -2.5 2.6) (end 52.5 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a468d6d-b2bf-4db7-bfd1-9a4db2e3d465))
(fp_line (start -2.5 4.1) (end -2.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ce04bae-f149-4ca4-b4ac-fbc55889d8d7))
(fp_line (start -2.5 4.1) (end 52.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c5ea947-0dbd-49a0-b2c0-239d1d9d02c3))
(fp_line (start -2 4.6) (end -2.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a3e9500-aecd-4bf4-9e18-c7c8c1341e7c))
(fp_line (start 0.955 -1.138) (end -1.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88206c29-ae38-4316-b47d-817fbdffd632))
(fp_line (start 1.138 -0.955) (end -0.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e60afd9-f607-4cbf-822b-7db14aba6145))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dca852b8-0898-4a16-a1d0-975f03280a3e))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03c31d21-aade-47f0-9d0e-6ad10385f6f8))
(fp_line (start 10.955 -1.138) (end 8.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7f55a1c-85cc-49c3-920c-1d483036e31c))
(fp_line (start 11.138 -0.955) (end 9.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a10337fc-bcb9-46b1-a6d2-961f32955e63))
(fp_line (start 15.955 -1.138) (end 13.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 932b8bf2-000f-4ef4-83ca-3b4d8014221b))
(fp_line (start 16.138 -0.955) (end 14.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4062a74c-dfd9-4daf-9304-4eca5c23ed37))
(fp_line (start 20.955 -1.138) (end 18.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60fd692c-102b-4ff3-8256-95c5fce0b16e))
(fp_line (start 21.138 -0.955) (end 19.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73bec8e4-b0c5-4421-bf7d-c9a09a3d8cef))
(fp_line (start 25.955 -1.138) (end 23.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b45bf05-e460-4b85-8ced-f196f934d929))
(fp_line (start 26.138 -0.955) (end 24.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8246f30e-98a1-43b0-98d7-010e6a16a657))
(fp_line (start 30.955 -1.138) (end 28.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79fb61bb-679b-445c-867a-9b4cd6b20575))
(fp_line (start 31.138 -0.955) (end 29.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 296e8435-bad6-4257-9c50-9bbd06b1298d))
(fp_line (start 35.955 -1.138) (end 33.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc2a53ec-23a8-4f67-94ca-52d50423766d))
(fp_line (start 36.138 -0.955) (end 34.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e19554b-b3f1-40bf-839c-e51655cbba85))
(fp_line (start 40.955 -1.138) (end 38.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49940bd8-d95b-4659-b3ff-3c5fc12c1278))
(fp_line (start 41.138 -0.955) (end 39.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60d11769-bd54-410f-abb7-ed593f55b7e0))
(fp_line (start 45.955 -1.138) (end 43.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76c04fce-0a44-4ccb-9d22-83929cd20f54))
(fp_line (start 46.138 -0.955) (end 44.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94eebc32-2437-4a52-b19f-f32a4752f740))
(fp_line (start 50.955 -1.138) (end 48.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62e98278-74dc-4c67-a6c9-f3b3155b1e21))
(fp_line (start 51.138 -0.955) (end 49.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91679f38-f566-4d87-93b3-e3503c9d9e32))
(fp_line (start 52.5 -5.2) (end 52.5 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d52cd00e-61da-4569-8b71-2f447dd51517))
(fp_line (start 52.5 4.6) (end -2 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28371def-dd25-47fd-a633-b6868a21d2b1))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp a653307d-7483-4e96-8d20-91306243660d))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 7117ca5c-172a-4b0a-8ddb-7e1599b388f6))
(fp_circle (center 10 0) (end 11.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8cdb6dad-3c8c-44ff-bd95-0cc3b2c5bc12))
(fp_circle (center 15 0) (end 16.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4837aa11-b5d2-47d5-b39f-84955d157258))
(fp_circle (center 20 0) (end 21.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5e52c1ff-f717-4f25-818a-221eaefd02e3))
(fp_circle (center 25 0) (end 26.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d52da3e2-45a1-4ce7-beeb-871d896aa148))
(fp_circle (center 30 0) (end 31.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 53a90070-5f24-4879-af68-6e885e2cae3c))
(fp_circle (center 35 0) (end 36.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ff27d0df-8cdb-431e-a487-6964973fb143))
(fp_circle (center 40 0) (end 41.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp db08c497-1b49-44a6-b42f-4a324efb0bab))
(fp_circle (center 45 0) (end 46.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 00944c07-97e5-4e4d-94d4-ce38178c8dd7))
(fp_circle (center 50 0) (end 51.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp bdd216f0-b8d8-4858-ba0c-c69065301d87))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J2-Pin_7)") (pinfunction "Pin_1") (pintype "passive") (tstamp ee489985-827a-4b30-8142-825b0a7f7df8))
(pad "2" thru_hole circle (at 5 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 23 "Net-(J2-Pin_8)") (pinfunction "Pin_2") (pintype "passive") (tstamp c9d21060-f6de-4265-8be9-b698f3b01338))
(pad "3" thru_hole circle (at 10 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp 0de960e0-1680-4a49-a27b-05432cac62ee))
(pad "4" thru_hole circle (at 15 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp d85cbfcc-bbff-4f5b-bed4-9729999f8a37))
(pad "5" thru_hole circle (at 20 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 31 "Flow Sensor") (pinfunction "Pin_5") (pintype "passive") (tstamp 841aa8bf-e240-4ac4-aacb-99fe80369bec))
(pad "6" thru_hole circle (at 25 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp ee7a25c0-f9b6-449b-96ce-1b1bf6a6d7b4))
(pad "7" thru_hole circle (at 30 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp f9b9abb5-4ce3-48a1-96c9-cdc3c837a8d8))
(pad "8" thru_hole circle (at 35 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 5f2f7c23-655e-4e78-bab3-09ae8a18866c))
(pad "9" thru_hole circle (at 40 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 4c736a10-db6b-4f5e-b54f-58a73a7f2b3e))
(pad "10" thru_hole circle (at 45 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 5 "+12V") (pinfunction "Pin_10") (pintype "passive") (tstamp 3b1d652d-5e93-4251-ad62-5c36af10cf61))
(pad "11" thru_hole circle (at 50 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 5 "+12V") (pinfunction "Pin_11") (pintype "passive") (tstamp 28ea2af4-2429-490d-b75e-f9a76a0ac66c))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D10.0mm_P5.00mm" (layer "F.Cu")
(tstamp 4ad4f335-c422-4128-b0df-3c31d6d165a2)
(at 108.8 30.37)
(descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor")
(property "Sheetfile" "RC12-2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/dd96d670-ec3e-4ca5-926e-3e53a0d7d2da")
(attr through_hole)
(fp_text reference "C4" (at 8.692677 -5.975 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e90a8df-a810-4c08-b98d-1d0de1a89f5d)
)
(fp_text value "1000uF" (at 9.167677 -4.375 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94326468-2fef-443c-8d7d-b1183cf0eeb8)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fed2e14b-c3e6-4049-8054-ecf6e91c0220)
)
(fp_line (start -2.979646 -2.875) (end -1.979646 -2.875)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dd60302-7840-42ec-b08c-e88d9e8ea117))
(fp_line (start -2.479646 -3.375) (end -2.479646 -2.375)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb12947b-5c5a-472d-84dc-09ca0f60d74b))
(fp_line (start 2.5 -5.08) (end 2.5 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e6d59a9-f049-4db5-baa1-5097fb380eb0))
(fp_line (start 2.54 -5.08) (end 2.54 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36789c7a-ceac-4640-89d3-64d84029edef))
(fp_line (start 2.58 -5.08) (end 2.58 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98f8bed8-c573-402c-bc1a-79122f7375ed))
(fp_line (start 2.62 -5.079) (end 2.62 5.079)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3df9d1cf-e650-4267-85ff-3432d91a936f))
(fp_line (start 2.66 -5.078) (end 2.66 5.078)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87c48e49-3026-4c11-ab02-83f1529bdb2b))
(fp_line (start 2.7 -5.077) (end 2.7 5.077)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 223868f0-dc43-4cad-9213-2b70156f783e))
(fp_line (start 2.74 -5.075) (end 2.74 5.075)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08d98fdc-7077-4887-b9df-596ae2d745b9))
(fp_line (start 2.78 -5.073) (end 2.78 5.073)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20dd9fb3-18b5-4a2f-b00f-b6ec17f2ff98))
(fp_line (start 2.82 -5.07) (end 2.82 5.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c89eca2-ae17-4d79-9c87-91bf9badcaec))
(fp_line (start 2.86 -5.068) (end 2.86 5.068)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cee7c47d-c380-437f-a492-2098e5b164d0))
(fp_line (start 2.9 -5.065) (end 2.9 5.065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ada1aaf5-3b73-42fe-8bab-0d591d53c489))
(fp_line (start 2.94 -5.062) (end 2.94 5.062)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 944071c0-3afc-4915-8c5b-abaf7a9a37e7))
(fp_line (start 2.98 -5.058) (end 2.98 5.058)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26d90fa8-edeb-4574-9aeb-e5574307d3d9))
(fp_line (start 3.02 -5.054) (end 3.02 5.054)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73c7cac9-6224-4220-bf21-fcb228f63809))
(fp_line (start 3.06 -5.05) (end 3.06 5.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c18eda0-a884-4dc0-975d-bbf6e6e24eb3))
(fp_line (start 3.1 -5.045) (end 3.1 5.045)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35775b2b-b9c9-4bc5-85cc-3a98dc2ca931))
(fp_line (start 3.14 -5.04) (end 3.14 5.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67be563f-1a8e-47c3-a93b-c6ccaf4e9962))
(fp_line (start 3.18 -5.035) (end 3.18 5.035)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84816d19-354c-4012-921c-b412f4e51787))
(fp_line (start 3.221 -5.03) (end 3.221 5.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8e6aa76-31a8-472c-8b6d-25694de96c12))
(fp_line (start 3.261 -5.024) (end 3.261 5.024)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6f9b605-d2db-4892-8723-8d67b94a1279))
(fp_line (start 3.301 -5.018) (end 3.301 5.018)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84f9939e-c876-4c66-905b-f377c59904f4))
(fp_line (start 3.341 -5.011) (end 3.341 5.011)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a3ddac1-e63e-4415-99b9-0f9291043c6c))
(fp_line (start 3.381 -5.004) (end 3.381 5.004)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f26d87a-18bb-45fa-ab1c-68d40af947c1))
(fp_line (start 3.421 -4.997) (end 3.421 4.997)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 770bcece-3c2e-498e-89bd-31763acc654d))
(fp_line (start 3.461 -4.99) (end 3.461 4.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf1487c5-a903-416c-8978-7b8ddd21c1e1))
(fp_line (start 3.501 -4.982) (end 3.501 4.982)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5b72228-49a9-451b-862f-8ff9fb4861b9))
(fp_line (start 3.541 -4.974) (end 3.541 4.974)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 248c2cab-be19-4e77-859c-c76a2c72a2a4))
(fp_line (start 3.581 -4.965) (end 3.581 4.965)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 909531c8-6c6d-4cfd-bf49-9667dbffd042))
(fp_line (start 3.621 -4.956) (end 3.621 4.956)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1601aacf-f6b2-446c-b9bb-d78c9eacf234))
(fp_line (start 3.661 -4.947) (end 3.661 4.947)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20ba1c56-fc9b-4a9c-ad5f-3b8eb3e23057))
(fp_line (start 3.701 -4.938) (end 3.701 4.938)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97853d1e-b7f6-422d-bf74-1a0f72c09847))
(fp_line (start 3.741 -4.928) (end 3.741 4.928)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c22d01b-3037-4a45-b32a-cbf905c40c70))
(fp_line (start 3.781 -4.918) (end 3.781 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dee2bb3-3353-427d-8845-4e131b6b72c4))
(fp_line (start 3.781 1.241) (end 3.781 4.918)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d74aa82b-bd34-4de5-b27c-502330479666))
(fp_line (start 3.821 -4.907) (end 3.821 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab914b2b-5086-4ac9-9951-5312c02b1272))
(fp_line (start 3.821 1.241) (end 3.821 4.907)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e620077d-4c2c-4ec9-8eb4-8ec4700495ba))
(fp_line (start 3.861 -4.897) (end 3.861 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 560fd708-19ee-47fb-82c7-6cb6c3e9ed9a))
(fp_line (start 3.861 1.241) (end 3.861 4.897)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b6a6af4-ac1f-4ae3-b0f2-84712f61c41f))
(fp_line (start 3.901 -4.885) (end 3.901 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d179ce7-b076-4905-ac39-2e22e9919261))
(fp_line (start 3.901 1.241) (end 3.901 4.885)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35a51804-9a71-461a-a090-69ca4fd08607))
(fp_line (start 3.941 -4.874) (end 3.941 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9077ea0-3e75-4509-ac0c-045b0ce19605))
(fp_line (start 3.941 1.241) (end 3.941 4.874)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b07d1278-c7a6-47d5-8c61-a13c6956a5c9))
(fp_line (start 3.981 -4.862) (end 3.981 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baba40d4-e143-4516-80ea-4bff641e0ea2))
(fp_line (start 3.981 1.241) (end 3.981 4.862)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02682eaa-a880-438d-bbd8-dab4b1eb12aa))
(fp_line (start 4.021 -4.85) (end 4.021 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d52c4a47-8955-4315-837c-c747d0f00b3d))
(fp_line (start 4.021 1.241) (end 4.021 4.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61c35783-d8a0-41b2-9e89-ce0c3c042691))
(fp_line (start 4.061 -4.837) (end 4.061 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa5fcad4-a43e-4133-b2c6-e48b38a4a904))
(fp_line (start 4.061 1.241) (end 4.061 4.837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b6d896f-f395-4aa5-bd2c-d82cda1805e9))
(fp_line (start 4.101 -4.824) (end 4.101 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10303495-8edc-4acf-a818-70bc15086e2c))
(fp_line (start 4.101 1.241) (end 4.101 4.824)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86268036-e46e-429b-9823-3b95d8f547e0))
(fp_line (start 4.141 -4.811) (end 4.141 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a5c0c80-ddc9-4ca1-8eb8-3bf47ceffdba))
(fp_line (start 4.141 1.241) (end 4.141 4.811)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d489e13e-79ea-47c3-891c-02721a1d1ed1))
(fp_line (start 4.181 -4.797) (end 4.181 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83f78c98-399d-4483-bd81-9efc01db6232))
(fp_line (start 4.181 1.241) (end 4.181 4.797)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34f411a7-8442-467d-9297-fa9e3983354d))
(fp_line (start 4.221 -4.783) (end 4.221 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd3dd104-0d21-4dfd-9ea6-f6dd73b85b5d))
(fp_line (start 4.221 1.241) (end 4.221 4.783)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ba75bc1-0bd8-49ee-99b6-98f1ef320a95))