-
Notifications
You must be signed in to change notification settings - Fork 0
/
S4.kicad_pcb
14373 lines (14332 loc) · 536 KB
/
S4.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")
(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
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "Solenoid-S4")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "Net-(D1-A)")
(net 3 "Net-(D2-A)")
(net 4 "Net-(D3-A)")
(net 5 "Net-(D4-A)")
(net 6 "GND")
(net 7 "Net-(D5-Pad1)")
(net 8 "Net-(D6-Pad1)")
(net 9 "Net-(D7-Pad1)")
(net 10 "Net-(D8-Pad1)")
(net 11 "Net-(Q1-B)")
(net 12 "Net-(Q2-B)")
(net 13 "Net-(Q3-B)")
(net 14 "Net-(Q4-B)")
(net 15 "/tout1")
(net 16 "/tout2")
(net 17 "/tout3")
(net 18 "/tout4")
(net 19 "unconnected-(U1-3.3V-Pad15)")
(net 20 "unconnected-(U1-VBAT-Pad25)")
(net 21 "unconnected-(U1-3V3-Pad26)")
(net 22 "unconnected-(U1-PROGRAM-Pad28)")
(net 23 "unconnected-(U1-RESET-Pad29)")
(net 24 "unconnected-(U1-3.3V-Pad51)")
(net 25 "unconnected-(U1-AGND-Pad52)")
(net 26 "unconnected-(U1-VIN-Pad53)")
(net 27 "unconnected-(U1-VUSB-Pad54)")
(net 28 "unconnected-(U1-AREF-Pad55)")
(net 29 "unconnected-(U1-A10-Pad56)")
(net 30 "unconnected-(U1-A11-Pad57)")
(net 31 "unconnected-(U1-5V-Pad58)")
(net 32 "unconnected-(U1-A26_D--Pad59)")
(net 33 "unconnected-(U1-A25_D+-Pad60)")
(net 34 "unconnected-(U1-GND-Pad61)")
(net 35 "unconnected-(U1-GND-Pad62)")
(net 36 "unconnected-(U1-GND-Pad27)")
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 05318809-282b-4f61-902a-49123ff590db)
(at 78.38 63)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/58cde328-fb1c-497b-8e07-fb5cf7564b76")
(attr through_hole)
(fp_text reference "R1" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cea7304-32f1-45aa-8c23-453eadee0d6e)
)
(fp_text value "1K" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 298e6229-7e6c-45dd-864f-b1519012d278)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 989ff253-39dd-4d4e-b815-03c01f18d168)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03bbf521-05ce-4f30-92b6-67586db35744))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbaeed46-ac52-49bd-bbb1-b770c6102ba9))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88e17ff8-faa8-44c1-916a-54c18963b2f7))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab3028b5-a5a1-440d-96ec-d8d28b4297f2))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19a697f5-ccf6-4082-9e6e-a6a09b9849c5))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 391ca462-86a8-45bd-bf4f-bbba696da23e))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a4f3f48-ed9e-4a58-bfeb-ee245f27eec0))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cceaf7bf-fd1d-4e1d-a3a0-6f88ab5170a9))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3716bf6-b5ea-4221-ae0e-da147fa44a47))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d71f7c6c-0053-4063-b7bb-a8bf5babef2c))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc1b0d5-096a-4aa4-84fb-168d55cfb515))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b30ea239-0225-49fc-a0c8-8cd30b03b108))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9884046b-349f-4d32-8d32-d7bb9546c6d5))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e07e4ae7-a92a-403e-814c-f017f5d80827))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b70a2acb-655b-4ac1-84b2-8b84bd0cccde))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0b1b644-c06a-4b77-9467-e1c5079bbb46))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "/tout1") (pintype "passive") (tstamp a69cb3d7-3a93-4e40-9c4a-f298f1cdeb11))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 11 "Net-(Q1-B)") (pintype "passive") (tstamp 67c54a70-6a6a-4831-9cc6-d14b8d165547))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "digikey-footprints:TO-220-3" (layer "F.Cu")
(tstamp 0b826eac-abad-4fc1-a45f-04c529008d7f)
(at 107.98 67.94 90)
(descr "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "Category" "Discrete Semiconductor Products")
(property "DK_Datasheet_Link" "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "DK_Detail_Page" "/product-detail/en/stmicroelectronics/TIP120/497-2539-5-ND/603564")
(property "Description" "TRANS NPN DARL 60V 5A TO-220")
(property "Digi-Key_PN" "497-2539-5-ND")
(property "Family" "Transistors - Bipolar (BJT) - Single")
(property "MPN" "TIP120")
(property "Manufacturer" "STMicroelectronics")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(property "ki_description" "TRANS NPN DARL 60V 5A TO-220")
(property "ki_keywords" "497-2539-5-ND")
(path "/fbde7ea5-20fc-460d-81c0-062f1593ffde")
(attr through_hole)
(fp_text reference "Q2" (at 2.94 -2.98 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f8c39f0-6ee5-4b3f-8b96-1144de745699)
)
(fp_text value "TIP120" (at 2.27 3.63 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dea49bd-723d-4d18-9a6b-7dbfdcce51a9)
)
(fp_text user "${REFERENCE}" (at 2.52 -0.01 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd464a26-694f-443e-9f06-4cb50d534c8b)
)
(fp_line (start -2.56 -2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 183fce57-73fc-427f-894c-0955d365f43d))
(fp_line (start -2.56 -2.4) (end -2.16 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 47f60853-7bb2-4c44-92e9-c625a9bb7b5d))
(fp_line (start -2.56 -1.29) (end 7.54 -1.29)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp b1a10d71-a07a-41d6-b8dc-1b1c1c8c3216))
(fp_line (start -2.56 2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f50a81f9-2dce-4b66-85d9-7b0da49ca4ad))
(fp_line (start -2.56 2.4) (end -2.16 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 00bb8516-9252-42e7-ac58-2878d716d6d3))
(fp_line (start 7.24 -2.4) (end 7.64 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5ff129b3-da20-4ac9-ac1b-81934e4c2ff2))
(fp_line (start 7.64 -2.4) (end 7.64 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 59ba8cc7-ba63-48a0-9da4-95b71b75883b))
(fp_line (start 7.64 2.4) (end 7.24 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 97229a4c-54f2-412a-9fa0-b97d6d9ea5f9))
(fp_line (start 7.64 2.4) (end 7.64 2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 73cc079a-c9da-4935-a8ec-bdac105fd2da))
(fp_line (start -2.71 -2.5) (end -2.71 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de91bf30-6056-42c7-a05b-fe7a8658e22f))
(fp_line (start -2.71 -2.5) (end 7.79 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9609d509-8b99-42fe-aa96-642dcf87773e))
(fp_line (start -2.71 2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b015200-2b53-46b7-9205-2624f6df17de))
(fp_line (start 7.79 -2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8f23339-92ed-40cf-afe5-a7758af95e12))
(fp_line (start -2.46 -2.25) (end -2.46 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 244a9c2d-43b0-4c7e-aa5d-97ea2e814234))
(fp_line (start -2.46 -2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80695981-9173-4deb-8663-0a217f626b91))
(fp_line (start -2.46 2.25) (end 7.54 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cdef985-9372-46f6-aa11-da4d129ce618))
(fp_line (start -2.45 -1.3) (end 7.54 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82e1b064-6b41-4e7e-9120-99b1f04009f9))
(fp_line (start 7.54 2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d673949-178c-43c7-9def-c3463d4721ef))
(pad "1" thru_hole rect (at 0 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(Q2-B)") (pinfunction "B") (pintype "input") (tstamp 9f15ef55-84da-4671-9c81-0867ce2ddb19))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "Net-(D2-A)") (pinfunction "C") (pintype "passive") (tstamp 5ff521a7-85f8-42b8-89cb-52251d9553f9))
(pad "3" thru_hole circle (at 5.08 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "E") (pintype "passive") (tstamp 21797410-f183-41c1-a75a-5eeae77b787d))
)
(footprint "digikey-footprints:TO-220-3" (layer "F.Cu")
(tstamp 0c96f356-4103-4968-b334-a5fb484ff4df)
(at 91 67.94 90)
(descr "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "Category" "Discrete Semiconductor Products")
(property "DK_Datasheet_Link" "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "DK_Detail_Page" "/product-detail/en/stmicroelectronics/TIP120/497-2539-5-ND/603564")
(property "Description" "TRANS NPN DARL 60V 5A TO-220")
(property "Digi-Key_PN" "497-2539-5-ND")
(property "Family" "Transistors - Bipolar (BJT) - Single")
(property "MPN" "TIP120")
(property "Manufacturer" "STMicroelectronics")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(property "ki_description" "TRANS NPN DARL 60V 5A TO-220")
(property "ki_keywords" "497-2539-5-ND")
(path "/281a9cc8-c830-446e-87a0-d09c94131622")
(attr through_hole)
(fp_text reference "Q1" (at 2.62 -3.22 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c43b4de-ac6c-4831-957c-caab020b797a)
)
(fp_text value "TIP120" (at 2.27 3.63 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56aa85c0-f178-4737-9bbe-19f4f8a8e872)
)
(fp_text user "${REFERENCE}" (at 2.52 -0.01 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8920664-163c-46e3-b209-bbb20de547ce)
)
(fp_line (start -2.56 -2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a6366158-6c4e-49a0-a2ee-94138682fcce))
(fp_line (start -2.56 -2.4) (end -2.16 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 1fe06207-89da-4d7d-a4b8-d949b441a702))
(fp_line (start -2.56 -1.29) (end 7.54 -1.29)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3b9b46f9-39a2-448c-b5e1-cd0696a6f3da))
(fp_line (start -2.56 2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 67765f45-a826-4446-922a-f93ce1ecdcf4))
(fp_line (start -2.56 2.4) (end -2.16 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 04ed9cd6-e8ee-4ca7-81c1-319c32312afb))
(fp_line (start 7.24 -2.4) (end 7.64 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3481cee1-1309-465c-b6f9-50e01db1fcf0))
(fp_line (start 7.64 -2.4) (end 7.64 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 990bdc96-f5f2-4eb8-895b-1ea138ae71ff))
(fp_line (start 7.64 2.4) (end 7.24 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 8bfc443c-fb45-4034-9ee3-a0adec01d3f5))
(fp_line (start 7.64 2.4) (end 7.64 2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3d764489-d924-4d9e-a9e6-713b717161e8))
(fp_line (start -2.71 -2.5) (end -2.71 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89b3a547-c6c8-4787-bc8c-6b59eaf15d5f))
(fp_line (start -2.71 -2.5) (end 7.79 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dee28184-304b-49ae-ae5e-9ba0e8e08b08))
(fp_line (start -2.71 2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24887898-168a-432d-b99c-e57473d3cddd))
(fp_line (start 7.79 -2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9700c1e6-88e7-4c9e-8206-a1fbe3bef50d))
(fp_line (start -2.46 -2.25) (end -2.46 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 421d4d95-cbde-4804-b768-127118592da8))
(fp_line (start -2.46 -2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b4cef35-46dd-405e-a3e4-8232ebfde189))
(fp_line (start -2.46 2.25) (end 7.54 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ed5bc79-299b-4b77-8502-cac6c675fe32))
(fp_line (start -2.45 -1.3) (end 7.54 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39740ca6-d7ec-499a-91fc-c547ecfb4b48))
(fp_line (start 7.54 2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7be7a23a-dc4d-438d-b23c-ea108492546d))
(pad "1" thru_hole rect (at 0 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp 520179eb-c526-45db-9a2c-4985e7e7bf90))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "Net-(D1-A)") (pinfunction "C") (pintype "passive") (tstamp ddb462aa-4353-4bba-a718-9c07a37b8fdf))
(pad "3" thru_hole circle (at 5.08 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "E") (pintype "passive") (tstamp 86f9dd7b-962a-429b-9e55-ad78b4218ab6))
)
(footprint "digikey-footprints:LED_5mm_Radial" (layer "F.Cu")
(tstamp 1ac1b086-ffd8-45b0-9206-d67e2889d66f)
(at 116 77 -90)
(descr "http://optoelectronics.liteon.com/upload/download/DS20-2000-343/1CHKxKNN.pdf")
(property "Category" "Optoelectronics")
(property "DK_Datasheet_Link" "http://optoelectronics.liteon.com/upload/download/DS-20-98-0286/LTL2R3KEK.pdf")
(property "DK_Detail_Page" "/product-detail/en/lite-on-inc/LTL2R3KEK/160-1682-ND/573572")
(property "Description" "LED RED CLEAR T-1 3/4 T/H")
(property "Digi-Key_PN" "160-1682-ND")
(property "Family" "LED Indication - Discrete")
(property "MPN" "LTL2R3KEK")
(property "Manufacturer" "Lite-On Inc.")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(property "ki_description" "LED RED CLEAR T-1 3/4 T/H")
(property "ki_keywords" "160-1682-ND")
(path "/4d3b965b-25ec-4290-b439-48adc5aef810")
(attr through_hole)
(fp_text reference "D7" (at 3 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41bdaf63-547d-4d3b-8540-30e215c641de)
)
(fp_text value "LTL2R3KEK" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81e6186c-0763-4bef-b041-4aa18345280c)
)
(fp_text user "${REFERENCE}" (at -1.26 0.01 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 392b24f7-41b4-40e4-9cfa-b3bd3683057e)
)
(fp_line (start 1.34 1.6) (end 1.34 -1.61)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 2343bd4c-11d1-418a-aed5-8833559dbbc4))
(fp_arc (start 1.341718 1.607211) (mid -4.336626 0.001638) (end 1.34 -1.61)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp b2aacfcf-22a1-4463-a027-3a10c3b1a9a7))
(fp_circle (center -1.27 0) (end -4.57 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 73857aa4-79dc-4f82-b3a5-6c240d9ec3c3))
(fp_line (start -4.22 -0.01) (end -4.22 -0.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 503941db-db55-4fed-9ec3-2585d43cd04e))
(fp_line (start 1.23 -1.58) (end 1.23 1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb1a5cfd-5bdb-418e-9b39-b961b5e02a7d))
(fp_arc (start 1.23 1.58) (mid -4.227431 0) (end 1.23 -1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ffd5786-c128-44bb-94b2-070204642560))
(pad "1" thru_hole rect (at -2.54 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(D7-Pad1)") (pintype "passive") (tstamp a1a68fcc-bbac-462c-a3c1-d8e004abee38))
(pad "2" thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pintype "passive") (tstamp c8034632-3b16-4f90-aaa0-b934358b436c))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 269e38a3-da69-4345-b4b5-0454a37917d6)
(at 130.19 63)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/4e1c75c2-6b8f-4808-b053-eb78c4cef162")
(attr through_hole)
(fp_text reference "R4" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4df280c-a813-4bbd-bdc3-8acad56924a2)
)
(fp_text value "1K" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b733e25-05e6-4d79-8f14-a0e75fbd7415)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37578580-a692-4ef7-a705-c685293f532d)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2907bc7-b38e-44d7-b52c-29e159b7b9ca))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b928ec5-95f2-4b99-9e14-562615c4fe62))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee6b5299-72be-4605-9752-42574183e1ee))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6c9c76d-4a5e-4248-9b19-5e1598f4a5e5))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9c1faf5-817c-40eb-a4e0-ee07d10aea1c))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0873dd4c-e9bf-47e0-8dc3-3e2c97a122bb))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10548941-3085-4d03-9188-2c205c69ee8c))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 989d692b-ebbd-4a34-85c1-ccf3490568df))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc63cf37-1434-43f2-a4da-c57db2c590fe))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35ed50f6-6458-4779-8adc-2784c023614c))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65e6963a-0511-40af-88b2-5b403d196526))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc8df27f-a25d-48f1-b89d-e20daa1ebb0a))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ce1c793-6957-43e2-ae01-ac46c5ac2da6))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1083ac5f-a7a8-43f1-b0cd-590a3f65eb4e))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 047a1b9b-25cf-42d4-bdfd-5b84228e940a))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e19ab5e-78b2-4ab7-98e2-45bbddabed92))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "/tout4") (pintype "passive") (tstamp 3d680d3c-287c-46dc-b506-45211395e63e))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "Net-(Q4-B)") (pintype "passive") (tstamp 3b064c6b-6260-4ebb-a8f3-61f51265df61))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_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_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 2ac5fdee-7c35-4d3c-b24f-42648ce6ad56)
(at 112.38 67)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/cbf3e522-ab7d-4443-8c03-fb30b9a796f5")
(attr through_hole)
(fp_text reference "R7" (at 3.62 3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4483d91c-41c5-4c38-b494-1b7fa36eaec3)
)
(fp_text value "150" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b2a9cc3-72c8-491a-9706-9bf7b046a2d4)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6170d8d-6fd6-4c0f-97e4-093a1ffdd19a)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f45b3fae-0419-4107-8791-5ab0eebf862c))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bedc524a-9e77-412d-8bf1-47afa1c88cfc))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 522fce19-b06b-4d93-94ce-0f7b0ce38890))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed2eddce-02c8-4255-be17-4773fc9e67e0))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b944afd-a1eb-40ee-8ea2-ca26139aa8fd))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae035b12-11f4-4a1f-aeba-edd5bbd37768))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4eb53335-131e-4a29-aff6-abd737f90aa3))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bb80ebf-164f-473d-8a5e-4759a33be8cc))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1c5c940-11a8-473f-8fee-af7c78c2ef30))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5735ae06-15b3-455c-ad65-6070a7e63856))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4282854e-2322-4abc-b1c9-ff33dd4fd023))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c2cb7a9-3ef0-45ea-bfb5-c881cb382c5b))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68ed7dcb-6e73-4667-ad6c-a895ca544925))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ed2cddb-9ad7-42d2-a605-25ffda93d322))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f924876d-0de0-47dc-bd08-690ef36114cc))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 164b8da8-2aea-4333-9f48-35c16b77b39a))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "/tout3") (pintype "passive") (tstamp cc65dbce-a517-4e6a-8468-b8ab01d03c7d))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "Net-(D7-Pad1)") (pintype "passive") (tstamp c9c0cd12-1597-4eb5-97a8-e0972e954246))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "digikey-footprints:Photodiode_Radial_5.1x3mm_P2.54mm" (layer "F.Cu")
(tstamp 30ca9bed-2eaf-4999-bbfe-f9a6d35e79e0)
(at 129.46 83)
(descr "http://www.osram-os.com/Graphics/XPic1/00211421_0.pdf")
(property "Category" "Sensors, Transducers")
(property "DK_Datasheet_Link" "")
(property "DK_Detail_Page" "/product-detail/en/advanced-photonix/PDB-C156/PDB-C156-ND/480587")
(property "Description" "SENSOR PHOTODIODE 660NM RADIAL")
(property "Digi-Key_PN" "PDB-C156-ND")
(property "Family" "Optical Sensors - Photodiodes")
(property "MPN" "PDB-C156")
(property "Manufacturer" "Advanced Photonix")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(property "ki_description" "SENSOR PHOTODIODE 660NM RADIAL")
(property "ki_keywords" "PDB-C156-ND")
(path "/6a24a876-6595-4107-be24-b3c3db49c863")
(attr through_hole)
(fp_text reference "S4" (at 1.54 -3) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e60077f2-0138-4a5d-8546-cc0b48e318a1)
)
(fp_text value "PDB-C156" (at 13.97 -39.55) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 336f8bb3-2bc9-495e-8a0f-8bb09c83e3c3)
)
(fp_text user "${REFERENCE}" (at 1.23 0.01) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0244def1-9bdb-43af-9488-eece87e364f0)
)
(fp_line (start -1.38 -1.2) (end -1.38 -0.9)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5f1cea35-f77a-4d44-acd1-e41f409280df))
(fp_line (start -1.38 1.15) (end -1.38 0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3ea8c5c7-3108-400f-891e-c7007c0393ac))
(fp_line (start -0.93 -1.6) (end -1.38 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5108f13a-3c6a-4905-b251-8fe0f93657c5))
(fp_line (start -0.93 1.6) (end -1.38 1.15)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0302cefa-2955-46ec-8a5f-87c5b3cc0d49))
(fp_line (start -0.93 1.6) (end -0.63 1.6)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0331cc77-b3f6-4add-b3de-8f0e794e53ff))
(fp_line (start -0.63 -1.6) (end -0.93 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5e3b9d7c-496b-437f-adc3-0b2993db45fc))
(fp_line (start 0.67 -1.3) (end 1.87 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 03c5a896-01de-457d-84f6-6abfdfffdec6))
(fp_line (start 3.47 -1.6) (end 3.92 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e89aa07d-7d5c-4ea6-9ecd-1f84462893b1))
(fp_line (start 3.92 -1.6) (end 3.92 1.6)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e647390d-7107-4708-83b5-4b5fe1f9d57a))
(fp_line (start 3.92 1.6) (end 3.47 1.6)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp bde47890-2ded-4bcc-bb3b-9aec66358fac))
(fp_line (start -1.53 -1.75) (end -1.53 1.75)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 6bdfa118-7d70-481c-817b-ff7547c19ab6))
(fp_line (start -1.53 1.75) (end 4.07 1.75)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 71f1a99d-b97f-4850-b0f0-516188b5fad4))
(fp_line (start 4.07 -1.75) (end -1.53 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp c02fb7b1-1355-426c-9bd4-d273f4bb4a69))
(fp_line (start 4.07 1.75) (end 4.07 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 006c25df-de7b-4d7a-b3bd-b8ffcd955998))
(fp_line (start -1.28 -1.5) (end 3.82 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c41d7c1-6c88-4e84-a28b-a487eafef2b8))
(fp_line (start -1.28 1.5) (end -1.28 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e835271-ebfb-467b-8e1d-1ee9b3ffbcaf))
(fp_line (start 3.82 -1.5) (end 3.82 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d6847f9-8857-47f3-9b70-d5b813f832f3))
(fp_line (start 3.82 1.5) (end -1.28 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2caa12ec-05bd-4512-9853-db54e2502f20))
(pad "A" thru_hole circle (at 2.54 0) (size 1.75 1.75) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 5 "Net-(D4-A)") (pintype "passive") (tstamp d76104f8-da80-4a06-b798-de1e8861e323))
(pad "K" thru_hole rect (at 0 0) (size 1.75 1.75) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pintype "passive") (tstamp 696b93fb-c5a9-4b3a-a9da-aa3aab716068))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 31ad3078-c446-490b-9ff0-210c68eae2a4)
(at 95.38 63)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/b25cb5cf-ee3a-48dc-904d-ffd775838dd9")
(attr through_hole)
(fp_text reference "R2" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e0aa4ae-0f09-43cb-a3cc-b7ecd8a48a71)
)
(fp_text value "1K" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dae9c6cc-9930-4cfb-b054-d4705795a05b)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b3b6db1-03c1-443b-b901-d739fceeffa0)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c175548-9cd6-483e-9e11-1c52147654ef))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb5b334f-092a-452b-9b4e-1ec11183ff0f))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6beeb256-1744-418c-8099-6118acfcc2f7))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45f0e738-c8d7-4583-9677-cc96f5836799))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 953fb3df-5999-43f6-b8da-194625bb97b1))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ed68e68-a168-4c11-8e23-bd2c61ee8443))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0231f44-9afe-4f8f-9513-039fbec6daa6))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1889eccf-faad-4e10-a6c4-429d79a23759))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68eeb7d8-9ccc-4c66-89dc-acfe753cbd44))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17ab0d08-18c3-484c-8a5b-fb7d253470be))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 528f9d0b-33c9-4d66-80a3-bbed6b1900b3))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae47f76f-9029-45fe-a521-b8a1f9cbe4fa))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fd1b4a3-875f-4b90-8bac-33ec77c3c70e))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4c37612-7d14-4a13-a51b-e50eaf629f8e))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21348ee8-f783-48fd-a02b-dc7f4065c4ba))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2a09dc4-eb9f-4cb5-af5f-9bd759c90f66))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "/tout2") (pintype "passive") (tstamp 0bfc4b7a-786e-40b2-bb4e-c87fcd497b31))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(Q2-B)") (pintype "passive") (tstamp ac6746fb-9f59-4cad-880b-f321c996ebeb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "digikey-footprints:TO-220-3" (layer "F.Cu")
(tstamp 4abec275-3755-49db-a69b-4afa1ca46e36)
(at 125 68 90)
(descr "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "Category" "Discrete Semiconductor Products")
(property "DK_Datasheet_Link" "http://www.st.com/content/ccc/resource/technical/document/datasheet/f9/ed/f5/44/26/b9/43/a4/CD00000911.pdf/files/CD00000911.pdf/jcr:content/translations/en.CD00000911.pdf")
(property "DK_Detail_Page" "/product-detail/en/stmicroelectronics/TIP120/497-2539-5-ND/603564")
(property "Description" "TRANS NPN DARL 60V 5A TO-220")
(property "Digi-Key_PN" "497-2539-5-ND")
(property "Family" "Transistors - Bipolar (BJT) - Single")
(property "MPN" "TIP120")
(property "Manufacturer" "STMicroelectronics")
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(property "ki_description" "TRANS NPN DARL 60V 5A TO-220")
(property "ki_keywords" "497-2539-5-ND")
(path "/f894368c-58f4-4e65-b8d5-2ae03d61f177")
(attr through_hole)
(fp_text reference "Q3" (at 2.62 -3.22 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3e7b3a1-1fd6-497a-845c-4ff2fb7ee895)
)
(fp_text value "TIP120" (at 2.27 3.63 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea1314b3-15d8-4398-be4e-9d0ccdcc3e97)
)
(fp_text user "${REFERENCE}" (at 2.52 -0.01 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc850520-fe00-4eb5-ac6d-b1be32856ca7)
)
(fp_line (start -2.56 -2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0e5c90d5-65ed-45c7-8153-f7ff73b90312))
(fp_line (start -2.56 -2.4) (end -2.16 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp b5c31946-4743-4daf-9d17-a7adccfd06dd))
(fp_line (start -2.56 -1.29) (end 7.54 -1.29)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ec397e1c-b8fd-4cc0-b66a-f4d2a16d7f72))
(fp_line (start -2.56 2.4) (end -2.56 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 293e3cbe-e5c2-4cad-8a3b-4bdaf1bc33dd))
(fp_line (start -2.56 2.4) (end -2.16 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp fb056ba1-18cc-4f97-a3b7-6f4d9648bc10))
(fp_line (start 7.24 -2.4) (end 7.64 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp d82a99f9-55a2-475a-b5b8-a50a8eeae668))
(fp_line (start 7.64 -2.4) (end 7.64 -2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 25c964fb-ed6a-45fd-a99f-8f4311383e23))
(fp_line (start 7.64 2.4) (end 7.24 2.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ff7cf375-ba75-4336-96e7-ac9582dcd551))
(fp_line (start 7.64 2.4) (end 7.64 2)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 99448fea-4e83-43e7-a102-37fcd32325fe))
(fp_line (start -2.71 -2.5) (end -2.71 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9bd8aa1-9f58-4c63-9210-864f8d0ec283))
(fp_line (start -2.71 -2.5) (end 7.79 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3f1d899-22b3-42dc-847d-e5663f408efb))
(fp_line (start -2.71 2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89d01a05-265e-4ee6-836c-e3510661d046))
(fp_line (start 7.79 -2.5) (end 7.79 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a33ea4b-5616-4562-964c-da67fd6d286f))
(fp_line (start -2.46 -2.25) (end -2.46 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a392681a-8826-469c-973f-dab65f5e5096))
(fp_line (start -2.46 -2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae8a72ef-7853-4beb-aeb2-cbd97d8882ba))
(fp_line (start -2.46 2.25) (end 7.54 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba1e9e69-4220-4808-b007-77fc5aeca273))
(fp_line (start -2.45 -1.3) (end 7.54 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91fb216f-dce8-4e91-ace2-e9d11b920181))
(fp_line (start 7.54 2.25) (end 7.54 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb652596-6208-45df-8098-a727e7865627))
(pad "1" thru_hole rect (at 0 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(Q3-B)") (pinfunction "B") (pintype "input") (tstamp 182e1f57-8a9c-48af-a94e-10e03bfaf901))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "Net-(D3-A)") (pinfunction "C") (pintype "passive") (tstamp c6773ffc-58a6-43cd-b5fc-8606eb6791e9))
(pad "3" thru_hole circle (at 5.08 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "E") (pintype "passive") (tstamp 264ed8a7-e257-4253-96d1-bcb37bc9da26))
)
(footprint "teensy.pretty-master:Teensy35_36" (layer "F.Cu")
(tstamp 647c4ca9-93c0-4c0a-a0c1-36ac2cfd92cb)
(at 113.81 50.16 180)
(property "Sheetfile" "Solenoid-S4.kicad_sch")
(property "Sheetname" "")
(path "/4e0a7122-23ba-4e5e-b318-29fd6b27ff76")
(attr through_hole)
(fp_text reference "U1" (at -8.19 -4.84) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef754198-c452-4555-99e9-cc9deef34d90)
)
(fp_text value "Teensy3.6" (at 0.81 2.16) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bba6ce0-243d-4d13-95ca-0cefd1764357)
)
(fp_line (start -31.75 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6a2f04be-a4bc-4edf-82cb-07bc5538482e))
(fp_line (start -31.75 3.81) (end -31.75 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4b59cb7a-03db-4053-a96a-3b284c4ec966))
(fp_line (start -30.48 3.81) (end -31.75 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1e8a68f4-46e6-4f74-a0c3-96e561a82fa2))
(fp_line (start -30.48 8.89) (end -30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 664ae9aa-5337-4c0a-9fdd-572fe0c5be01))
(fp_line (start -30.48 8.89) (end 30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5135ea49-d218-441b-a96e-c7575b4489b0))
(fp_line (start -25.4 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 84ae53de-ce44-488b-82f0-3a92eeef1471))
(fp_line (start -25.4 3.81) (end -30.48 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ab195769-0108-4329-8e17-595bf5d70c6b))
(fp_line (start -25.4 3.81) (end -25.4 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d35bb5b6-af03-499b-b42a-a5c019ad53ae))
(fp_line (start -13.97 -3.81) (end -13.97 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ab88ab43-6079-4653-be63-cd714398b98c))
(fp_line (start -13.97 -1.27) (end -11.43 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8c477f3d-9031-48b9-9968-b2196d4af15f))
(fp_line (start -11.43 -3.81) (end -13.97 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 73fcd557-2194-4807-9ff4-4bf97eaecf0e))
(fp_line (start -11.43 -1.27) (end -11.43 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 45965d07-25ad-4384-9211-b2b727906e38))
(fp_line (start -10.16 2.54) (end -6.35 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5a16d0bd-6354-4395-b17a-d7844feff3b1))
(fp_line (start -10.16 5.08) (end -10.16 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8188bbfb-bc22-4301-8b37-fb678b4c9611))
(fp_line (start -6.35 2.54) (end -6.35 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9765c27a-6b02-4d82-bd39-8cd35c6e676c))
(fp_line (start -6.35 5.08) (end -10.16 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 48c74429-0aa1-40ad-9890-690d2fa39c9f))
(fp_line (start -5.08 -6.35) (end -5.08 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 98d5679c-b006-45e3-a079-d28679a7eff1))
(fp_line (start -5.08 -6.35) (end 7.62 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dda334f2-31bf-4830-96de-51ce0796185f))
(fp_line (start -5.08 6.35) (end 7.62 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d4cff4fb-542b-4ce8-a1f8-163e69944db4))
(fp_line (start 7.62 6.35) (end 7.62 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 58bf568d-794e-4801-a6d1-3869902de01d))
(fp_line (start 11.43 -2.54) (end 13.97 -2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cc11cf0c-b81f-4532-b58b-0e89b894d60f))
(fp_line (start 11.43 2.54) (end 11.43 -2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5feee981-fe7c-4b68-b570-aa65d9728f62))
(fp_line (start 13.97 -2.54) (end 13.97 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6335ca86-6dd6-493e-a5ad-d69ee196bd1d))
(fp_line (start 13.97 2.54) (end 11.43 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 14b315ea-b008-4f59-bf23-a15f8b722e1c))
(fp_line (start 17.78 -6.35) (end 17.78 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6fda0e02-1be3-4055-b87f-e3e698d6128d))
(fp_line (start 17.78 6.35) (end 30.48 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 32f58399-6dd8-4af5-8e08-b3822a7615be))
(fp_line (start 29.21 -5.08) (end 30.48 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d32a918e-c325-4af0-ab8d-06119abcd61b))
(fp_line (start 29.21 -5.08) (end 30.48 -5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9b2b54cb-eb8e-4723-8587-ce22cb4f21af))
(fp_line (start 29.21 -3.81) (end 30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3c1937c1-d8c6-467a-949f-01c1992635ec))
(fp_line (start 29.21 -2.54) (end 30.48 -2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8b3b7056-c402-4738-bb26-f233b15efeec))
(fp_line (start 29.21 -1.27) (end 30.48 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0238b8d9-cf84-4b05-a1af-b6982ae23203))
(fp_line (start 29.21 0) (end 30.48 0)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6f6a7f1c-8c48-4aa3-b687-aa22aca3f090))
(fp_line (start 29.21 1.27) (end 30.48 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dc615bcd-d093-4afd-9df6-5957ce3387d8))
(fp_line (start 29.21 2.54) (end 30.48 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cb3af726-81e9-4ca1-9a4a-352703def87a))
(fp_line (start 29.21 3.81) (end 30.48 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2eb20793-6b0b-4a19-baf8-318c10e82626))
(fp_line (start 29.21 5.08) (end 29.21 -5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6b9f68ec-fd3a-43ce-9853-afd9a6c3d648))
(fp_line (start 29.21 5.08) (end 30.48 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 02d88b4b-88d2-44fa-9d92-33129f25020c))
(fp_line (start 30.48 -8.89) (end -30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fd66c7f9-e381-4c24-9808-a92caf30e8d2))
(fp_line (start 30.48 -8.89) (end 30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 73754210-dc63-46f7-8819-e05b1315260e))
(fp_line (start 30.48 -6.35) (end 17.78 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 880b4680-b7cd-488e-abec-7049ff1ec029))
(fp_line (start 30.48 6.35) (end 29.21 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3418267a-28ba-4225-8b20-1d284e2774c6))
(fp_poly
(pts
(xy 0.635 -2.667)
(xy 0.889 -2.413)
(xy 0.508 -2.159)
(xy 0.254 -2.413)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a1711fae-6880-4883-9755-4ab6d6eebc67))
(fp_poly
(pts
(xy 0.762 -3.429)
(xy 1.016 -3.175)
(xy 0.635 -2.921)
(xy 0.381 -3.175)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 80926817-3f2c-4d5b-91bf-64a5d016cff3))
(fp_poly
(pts
(xy 1.016 -4.953)
(xy 1.27 -4.699)
(xy 0.889 -4.445)
(xy 0.635 -4.699)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 9e6caf14-35e3-4fb4-804a-d1ed5f5d538a))
(fp_poly
(pts
(xy 1.143 -3.048)
(xy 1.397 -2.794)
(xy 1.016 -2.54)
(xy 0.762 -2.794)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 8f385f52-e2ff-4fcc-b1d5-6298600eaa95))
(fp_poly
(pts
(xy 1.27 -3.81)
(xy 1.524 -3.556)
(xy 1.143 -3.302)
(xy 0.889 -3.556)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp c3f7a0c7-c8ff-4af3-8169-36b78c3efee9))
(fp_poly
(pts
(xy 1.397 -4.572)
(xy 1.651 -4.318)
(xy 1.27 -4.064)
(xy 1.016 -4.318)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 6516391e-0efd-449a-a38a-c6334dd5e1ef))
(fp_poly
(pts
(xy 1.651 -3.429)
(xy 1.905 -3.175)
(xy 1.524 -2.921)
(xy 1.27 -3.175)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 89fb0034-4b87-43be-839a-b4704e173fe6))
(fp_poly
(pts
(xy 1.778 -4.191)
(xy 2.032 -3.937)
(xy 1.651 -3.683)
(xy 1.397 -3.937)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 5174d7ec-5b7f-4509-a6cd-6825e2128e26))
(pad "1" thru_hole rect (at -29.21 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 281853db-03ac-4830-9425-016823c41b00))
(pad "2" thru_hole circle (at -26.67 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "0_RX1_MOSI1_TOUCH") (pintype "bidirectional") (tstamp 9c492b8a-de0a-44cc-b868-daa1fbdb22bc))
(pad "3" thru_hole circle (at -24.13 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "1_TX1_MISO1_TOUCH") (pintype "bidirectional") (tstamp 57db30f2-512e-4def-a16e-1430d37fda3a))
(pad "4" thru_hole circle (at -21.59 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "2_PWM") (pintype "bidirectional") (tstamp 7d868438-32e1-4dc8-95e2-297446f148b8))
(pad "5" thru_hole circle (at -19.05 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "3_PWM_CAN0TX_SCL2") (pintype "bidirectional") (tstamp ec719eec-9263-4809-9985-17c60287b73c))
(pad "6" thru_hole circle (at -16.51 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "4_PWM_CAN0RX_SDA2") (pintype "bidirectional") (tstamp 9ae6bf20-b4cd-4a56-b45c-62dab513892c))
(pad "7" thru_hole circle (at -13.97 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "5_PWM_TX1_MISO1") (pintype "bidirectional") (tstamp 04e0f09c-c54f-43a7-b299-fcb362f64491))
(pad "8" thru_hole circle (at -11.43 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "6_PWM") (pintype "bidirectional") (tstamp 1b7c472b-7cb8-4039-9464-0905a6f58316))
(pad "9" thru_hole circle (at -8.89 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "7_RX3_MISO0_SCL0") (pintype "bidirectional") (tstamp 5b4cc5b8-33ef-4ef1-aacf-4aed6737ff86))
(pad "10" thru_hole circle (at -6.35 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "8_TX3_MISO0_SDA0") (pintype "bidirectional") (tstamp 207f53ea-506e-428d-8bf9-a6ae17ae5b86))
(pad "11" thru_hole circle (at -3.81 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "9_PWM_RX2_CS0") (pintype "bidirectional") (tstamp 89dd2cf5-1955-4131-89e0-700b5fe2602c))
(pad "12" thru_hole circle (at -1.27 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "10_PWM_TX2_CS0") (pintype "bidirectional") (tstamp 107ac233-3fe4-4f86-b2a3-801275cc05b1))
(pad "13" thru_hole circle (at 1.27 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "11_MOSI0") (pintype "bidirectional") (tstamp c385b6fd-cee1-4f6b-98dd-f8e566d67e01))
(pad "14" thru_hole circle (at 3.81 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "12_MISO0") (pintype "bidirectional") (tstamp 606a89dd-6dad-4064-82f3-b18f4c11d974))
(pad "15" thru_hole circle (at 6.35 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(U1-3.3V-Pad15)") (pinfunction "3.3V") (pintype "power_in") (tstamp 2af1bf01-407a-43a2-b3d6-5031126f5081))
(pad "16" thru_hole circle (at 8.89 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "24") (pintype "bidirectional") (tstamp 43526e7a-3295-4251-982b-c51daa2eedb0))
(pad "17" thru_hole circle (at 11.43 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "25") (pintype "bidirectional") (tstamp 82af3469-717a-41ad-949e-b5db55bd277b))
(pad "18" thru_hole circle (at 13.97 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "26_TX1") (pintype "bidirectional") (tstamp 35a26bf1-98f7-4335-8d75-ee5075158d0d))
(pad "19" thru_hole circle (at 16.51 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "27_RX1") (pintype "bidirectional") (tstamp c7a288c0-23ab-436a-a208-1b32d6d26a1c))
(pad "20" thru_hole circle (at 19.05 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "28") (pintype "bidirectional") (tstamp 39be62d2-d9ce-48d8-b482-1e5c710e644f))
(pad "21" thru_hole circle (at 21.59 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "29_PWM_CAN0TX_TOUCH") (pintype "bidirectional") (tstamp 514bede1-afd5-4755-ba32-9e4f65e9c11e))
(pad "22" thru_hole circle (at 24.13 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "30_PWM_CAN0RX_TOUCH") (pintype "bidirectional") (tstamp 50134c14-25de-44da-9ae1-44d40a08cb08))
(pad "23" thru_hole circle (at 26.67 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "31_A12_RX4_CS1") (pintype "bidirectional") (tstamp 16d22b65-1ce9-44bf-80f5-af4e7de36117))
(pad "24" thru_hole circle (at 29.21 7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "32_A13_TX4_SCK1") (pintype "bidirectional") (tstamp 8d3fcc70-a3ac-459e-968c-440d70f8945e))
(pad "25" thru_hole circle (at 16.51 5.08 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(U1-VBAT-Pad25)") (pinfunction "VBAT") (pintype "power_in") (tstamp f51d135c-b633-42f5-8f46-b165b924ab67))
(pad "26" thru_hole circle (at 16.51 2.54 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-3V3-Pad26)") (pinfunction "3V3") (pintype "power_in") (tstamp be485ce9-7dba-4c27-b12b-65d0ca1b4c3d))
(pad "27" thru_hole circle (at 16.51 0 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(U1-GND-Pad27)") (pinfunction "GND") (pintype "power_in") (tstamp e1f69afb-b46f-44fc-8965-6ef5a9e69e42))
(pad "28" thru_hole circle (at 16.51 -2.54 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(U1-PROGRAM-Pad28)") (pinfunction "PROGRAM") (pintype "input") (tstamp 9d7e67ee-7930-4548-a33b-88f9d3a9d8f6))
(pad "29" thru_hole circle (at 16.51 -5.08 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(U1-RESET-Pad29)") (pinfunction "RESET") (pintype "input") (tstamp 30291e26-c66e-498a-a780-d23f417f5754))
(pad "30" thru_hole circle (at 29.21 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 15 "/tout1") (pinfunction "33_A14_TX5_CAN1TX_SCL0") (pintype "bidirectional") (tstamp cf532098-514d-466f-ba57-c8f25cc7bcec))
(pad "31" thru_hole circle (at 26.67 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 16 "/tout2") (pinfunction "34_A15_RX5_CAN1RX_SDA0") (pintype "bidirectional") (tstamp f3eb1811-e0d0-48bd-8547-94ea85839d01))
(pad "32" thru_hole circle (at 24.13 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 17 "/tout3") (pinfunction "35_A16_PWM") (pintype "bidirectional") (tstamp 33bc3c72-81e1-409f-b640-982131085232))
(pad "33" thru_hole circle (at 21.59 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 18 "/tout4") (pinfunction "36_A17_PWM") (pintype "bidirectional") (tstamp 5c8e6001-fbb0-4678-943b-6c3da99fdc39))
(pad "34" thru_hole circle (at 19.05 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "37_A18_PWM_SCL1") (pintype "bidirectional") (tstamp 24056174-0d0f-475e-be21-fa2a040607bd))
(pad "35" thru_hole circle (at 16.51 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "38_A19_PWM_SDA1") (pintype "bidirectional") (tstamp b0d9179d-d02f-4e2c-a273-cba9e4d8fc81))
(pad "36" thru_hole circle (at 13.97 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "39_A20") (pintype "bidirectional") (tstamp 39c4f4c4-b767-471f-b990-ce5b9bf57adf))
(pad "37" thru_hole circle (at 11.43 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "A21_DAC0") (pintype "bidirectional") (tstamp 23e3bc3d-e1ec-47a7-8e90-19432e36bb55))
(pad "38" thru_hole circle (at 8.89 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "A22_DAC1") (pintype "bidirectional") (tstamp 6ab87ab2-64c6-49dd-9c2e-009ba8f28cf8))
(pad "39" thru_hole circle (at 6.35 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a23bf5f2-68ff-4956-8a3a-510451aad039))
(pad "40" thru_hole circle (at 3.81 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "13_SCK0_LED") (pintype "bidirectional") (tstamp 12528390-aab8-4d16-94a9-fd08da1e98f8))
(pad "41" thru_hole circle (at 1.27 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "14_A0_PWM_SCK0") (pintype "bidirectional") (tstamp 3a812fc6-bd99-4c22-bebe-7a5c9b94907f))
(pad "42" thru_hole circle (at -1.27 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "15_A1_CS0_TOUCH") (pintype "bidirectional") (tstamp 9da9df59-da54-4a73-90cc-eb9f20fba50f))
(pad "43" thru_hole circle (at -3.81 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "16_A2_SCL0_TOUCH") (pintype "bidirectional") (tstamp ea8d94b6-d1a1-405d-86aa-1398787966ec))
(pad "44" thru_hole circle (at -6.35 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "17_A3_SDA0_TOUCH") (pintype "bidirectional") (tstamp e0737a01-a1ec-4ea7-9159-22efb3447cd9))
(pad "45" thru_hole circle (at -8.89 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "18_A4_SDA0_TOUCH") (pintype "bidirectional") (tstamp de93ee37-af91-41c3-9f15-8bfbebb3da66))
(pad "46" thru_hole circle (at -11.43 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "19_A5_SCL0_TOUCH") (pintype "bidirectional") (tstamp 32ee57a8-41d0-4b9b-adbc-89162a30349c))
(pad "47" thru_hole circle (at -13.97 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "20_A6_PWM_CS0_SCK1") (pintype "bidirectional") (tstamp 9b21679c-7a81-4181-bd49-1b5c03505581))
(pad "48" thru_hole circle (at -16.51 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "21_A7_PWM_CS0_SCK1") (pintype "bidirectional") (tstamp d08c61c0-fe34-4e31-a1c5-c9a2ecace059))
(pad "49" thru_hole circle (at -19.05 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "22_A8_PWM_TOUCH") (pintype "bidirectional") (tstamp dfdf5e3d-81d5-4ad3-8db1-94e1cf4c4536))
(pad "50" thru_hole circle (at -21.59 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "GND") (pinfunction "23_A9_PWM_TOUCH") (pintype "bidirectional") (tstamp 9db05589-e422-42c1-be93-43237ed51f0b))
(pad "51" thru_hole circle (at -24.13 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(U1-3.3V-Pad51)") (pinfunction "3.3V") (pintype "power_out") (tstamp c5f6364a-f1e2-45cd-b55b-674f26935e6f))
(pad "52" thru_hole circle (at -26.67 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(U1-AGND-Pad52)") (pinfunction "AGND") (pintype "power_out") (tstamp d6c66656-a471-4ec6-93d2-761f8ebea08d))
(pad "53" thru_hole circle (at -29.21 -7.62 180) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")