-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathANET_ATX.kicad_pcb
1145 lines (1122 loc) · 88.5 KB
/
ANET_ATX.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "RPi ATX HAT")
(date "2022-12-09")
(company "Pavel Mlcoch")
)
(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)
)
(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 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer false)
(plotframeref true)
(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 true)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(D1GPIO1-Pad1)")
(net 2 "Net-(D1GPIO1-Pad2)")
(net 3 "Net-(D2SWSTART1-Pad1)")
(net 4 "+5V")
(net 5 "5VSB")
(net 6 "+3.3V")
(net 7 "unconnected-(J2ATX1-Pad1)")
(net 8 "unconnected-(J2ATX1-Pad2)")
(net 9 "unconnected-(J2ATX1-Pad5)")
(net 10 "unconnected-(J2ATX1-Pad6)")
(net 11 "unconnected-(J2ATX1-Pad7)")
(net 12 "unconnected-(J2ATX1-Pad8)")
(net 13 "12V")
(net 14 "unconnected-(J2ATX1-Pad11)")
(net 15 "unconnected-(J2ATX1-Pad12)")
(net 16 "unconnected-(J2ATX1-Pad13)")
(net 17 "unconnected-(J2ATX1-Pad14)")
(net 18 "unconnected-(J2ATX1-Pad15)")
(net 19 "unconnected-(J2ATX1-Pad17)")
(net 20 "unconnected-(J2ATX1-Pad18)")
(net 21 "unconnected-(J2ATX1-Pad19)")
(net 22 "unconnected-(J2ATX1-Pad20)")
(net 23 "unconnected-(J6RPI1-Pad1)")
(net 24 "unconnected-(J6RPI1-Pad3)")
(net 25 "unconnected-(J6RPI1-Pad4)")
(net 26 "unconnected-(J6RPI1-Pad5)")
(net 27 "unconnected-(J6RPI1-Pad6)")
(net 28 "unconnected-(J6RPI1-Pad7)")
(net 29 "unconnected-(J6RPI1-Pad8)")
(net 30 "unconnected-(J6RPI1-Pad9)")
(net 31 "unconnected-(J6RPI1-Pad10)")
(net 32 "unconnected-(J6RPI1-Pad11)")
(net 33 "unconnected-(J6RPI1-Pad12)")
(net 34 "unconnected-(J6RPI1-Pad13)")
(net 35 "unconnected-(J6RPI1-Pad14)")
(net 36 "unconnected-(J6RPI1-Pad15)")
(net 37 "unconnected-(J6RPI1-Pad16)")
(net 38 "unconnected-(J6RPI1-Pad17)")
(net 39 "unconnected-(J6RPI1-Pad18)")
(net 40 "unconnected-(J6RPI1-Pad19)")
(net 41 "unconnected-(J6RPI1-Pad20)")
(net 42 "unconnected-(J6RPI1-Pad21)")
(net 43 "unconnected-(J6RPI1-Pad22)")
(net 44 "unconnected-(J6RPI1-Pad23)")
(net 45 "unconnected-(J6RPI1-Pad24)")
(net 46 "unconnected-(J6RPI1-Pad25)")
(net 47 "unconnected-(J6RPI1-Pad26)")
(net 48 "unconnected-(J6RPI1-Pad27)")
(net 49 "unconnected-(J6RPI1-Pad28)")
(net 50 "unconnected-(J6RPI1-Pad30)")
(net 51 "unconnected-(J6RPI1-Pad31)")
(net 52 "unconnected-(J6RPI1-Pad32)")
(net 53 "unconnected-(J6RPI1-Pad33)")
(net 54 "GND")
(net 55 "GPIO")
(net 56 "unconnected-(J6RPI1-Pad34)")
(net 57 "unconnected-(J6RPI1-Pad35)")
(net 58 "unconnected-(J6RPI1-Pad36)")
(net 59 "unconnected-(J6RPI1-Pad37)")
(net 60 "unconnected-(J6RPI1-Pad38)")
(net 61 "unconnected-(J6RPI1-Pad40)")
(net 62 "Net-(Q1-Pad2)")
(net 63 "unconnected-(J3USB1-Pad2)")
(net 64 "unconnected-(J3USB1-Pad3)")
(net 65 "unconnected-(J3USB1-Pad5)")
(net 66 "unconnected-(J3USB1-Pad6)")
(net 67 "Net-(D3POWER1-Pad2)")
(net 68 "Net-(J2ATX1-Pad16)")
(net 69 "unconnected-(J2ATX1-Pad21)")
(net 70 "unconnected-(J2ATX1-Pad22)")
(net 71 "unconnected-(J2ATX1-Pad23)")
(net 72 "unconnected-(J2ATX1-Pad24)")
(footprint "SamacSys_Parts:0398800302" (layer "F.Cu")
(tedit 0) (tstamp 2c146c2f-d0ae-4a3e-bb70-a82fa874db30)
(at 108.8 99.15 90)
(descr "0398800302-2")
(tags "Connector")
(property "Arrow Part Number" "")
(property "Arrow Price/Stock" "")
(property "Description" "3.50mm Pitch Beau Eurostyle Fixed Mount PCB Terminal Block, Circuits")
(property "Height" "8.64")
(property "Manufacturer_Name" "Molex")
(property "Manufacturer_Part_Number" "39357-0002")
(property "Mouser Part Number" "538-39357-0002")
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Molex/39357-0002?qs=c7V%252BsbZfmqvL0V%252BWJEAGdg%3D%3D")
(property "Mouser Testing Part Number" "")
(property "Mouser Testing Price/Stock" "")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000639a3b37")
(attr through_hole)
(fp_text reference "J4" (at 2.54 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp b0f3baa0-20a5-4c46-9875-dae7bd74f475)
)
(fp_text value "39357-0002" (at 2.54 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 0e3c8f3f-f77a-4909-a9c6-c1055e7a8e7f)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 93f364ad-b8ed-4088-9242-67c3eb8fa9f0)
)
(fp_line (start -3.3 0) (end -3.3 0) (layer "F.SilkS") (width 0.1) (tstamp 35ed722f-6d74-4308-8ebd-5916fbae536a))
(fp_line (start -2.865 4.1) (end -2.865 -4.1) (layer "F.SilkS") (width 0.2) (tstamp 47a89269-e5aa-4982-864c-23850dcd0abe))
(fp_line (start -3.4 0) (end -3.4 0) (layer "F.SilkS") (width 0.1) (tstamp a5e6c2f5-2a69-42d4-b1a7-cc735d999c1c))
(fp_line (start 7.945 4.1) (end -2.865 4.1) (layer "F.SilkS") (width 0.2) (tstamp a62e9ad8-e877-40bf-ae8e-a4cbb28d1bd6))
(fp_line (start 7.945 -4.1) (end 7.945 4.1) (layer "F.SilkS") (width 0.2) (tstamp de79e63f-438f-4dc9-b017-3440afffa0da))
(fp_line (start -2.865 -4.1) (end 7.945 -4.1) (layer "F.SilkS") (width 0.2) (tstamp e1ccbad3-71b2-4a1c-b0b7-778870455ddc))
(fp_arc (start -3.3 0) (mid -3.35 0.05) (end -3.4 0) (layer "F.SilkS") (width 0.1) (tstamp 3414d24f-868a-4e03-8d8c-cf4adc3774f4))
(fp_arc (start -3.4 0) (mid -3.35 -0.05) (end -3.3 0) (layer "F.SilkS") (width 0.1) (tstamp d37e27c2-d512-4114-9de1-359b984a5cd3))
(fp_line (start -3.865 5.1) (end -3.865 -5.1) (layer "F.CrtYd") (width 0.1) (tstamp 66d74b94-8519-4abd-8e33-284f44e980d2))
(fp_line (start 8.945 -5.1) (end 8.945 5.1) (layer "F.CrtYd") (width 0.1) (tstamp 6d947a64-27c6-4928-b435-66cb5c1245fd))
(fp_line (start 8.945 5.1) (end -3.865 5.1) (layer "F.CrtYd") (width 0.1) (tstamp 85995a48-fe7b-4bef-bec9-4bf3ecd62a8f))
(fp_line (start -3.865 -5.1) (end 8.945 -5.1) (layer "F.CrtYd") (width 0.1) (tstamp b3e5ecd5-634f-49c9-8015-7cd84d1f13d3))
(fp_line (start -2.865 4.1) (end -2.865 -4.1) (layer "F.Fab") (width 0.1) (tstamp 09031e05-6298-4261-a484-f0e7fa032ebe))
(fp_line (start -2.865 -4.1) (end 7.945 -4.1) (layer "F.Fab") (width 0.1) (tstamp 5c3e0202-daca-4846-83a2-250ad14a5613))
(fp_line (start 7.945 -4.1) (end 7.945 4.1) (layer "F.Fab") (width 0.1) (tstamp b9c98a2d-9ef0-4352-ae6c-061f23667b42))
(fp_line (start 7.945 4.1) (end -2.865 4.1) (layer "F.Fab") (width 0.1) (tstamp fd8b9eb9-f8e6-49b0-918b-360bcedddbcc))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "1") (pintype "passive") (tstamp 7705f2d5-2fc8-4124-9dd7-4d0990cb8cde))
(pad "2" thru_hole circle locked (at 5.08 0 90) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 13 "12V") (pinfunction "2") (pintype "passive") (tstamp 66e39aff-ca44-4a69-b6c3-6d4e4863684f))
(model "C:\\SamacSys_PCB_Library\\KiCad\\SamacSys_Parts.3dshapes\\0398800302.stp"
(offset (xyz 2.910000042 4.05000013 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 593b9308-be0c-4b2f-b5e8-ef7df9eca0d8)
(at 87.5 78.4 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063881681")
(attr through_hole)
(fp_text reference "D2SWSTART1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9196552-0c23-4c7f-b12d-527842c0d5e5)
)
(fp_text value "1N4003" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3745fb4c-0bbf-4f87-a9cd-455ce76d007c)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 663ba6b8-f3f9-4463-a107-1afdab62a865))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp f78c9cae-879e-4fd7-9c64-185cebab5cd9))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 9f1096f4-a520-481b-b77f-7db373c268be))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp b07f22a9-8d60-475d-a190-0953fce632ec))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp f52683e2-9255-4a05-9508-7080785a8556))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp f85d54bd-9237-4884-bb27-1cc9efd8bb54))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 3ba754c6-ce9b-4a52-9b0b-719a163aef97))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 6ace2402-bb6a-42ab-8874-0e5c791dc50d))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp cd52071c-2a2b-4cce-b33f-ba8386146466))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp ce29b4d5-28b9-445d-b36e-79b0491348ad))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp e507ed49-191e-4f16-83c7-d922d1c7cd8f))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 7071afd1-4649-4a05-98be-f64ea59245cc))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 12af7482-e4fe-4e05-ab5c-4e545b2fd69f))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 3 "Net-(D2SWSTART1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 4b887f47-1317-4844-8cec-1c28fe8a8300))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "A") (pintype "passive") (tstamp abb03d57-fbb1-4a01-bd4b-d6360d0134f6))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" placed (layer "F.Cu")
(tedit 59FED5CC) (tstamp 80c24f39-98ff-4b19-b22a-6b6d92562ef5)
(at 61.8 71.95)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063899fe8")
(attr through_hole)
(fp_text reference "J1" (at -0.175 13.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f544b8c5-8042-4d0e-b08a-d2b700771155)
)
(fp_text value "External connect" (at 2.5 5.425 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cce7ad8-9b62-4602-9635-8a0f50c1fd50)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6f04d7c-7b73-4752-8486-8c0def1bfb0f)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6e36b619-4e53-405b-90f4-e6c9a89a8bdc))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 7e7fa1f2-1caa-45df-8a6d-1eb8831c8f24))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a03dc4c4-66d8-401b-8780-77b6f4fe0886))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp ab7dcbbd-2094-46f2-80ab-f4a2d7ca955e))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c3ed4a55-472a-40a1-8093-b61052b63b7e))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp fcd6540a-72d1-4cbe-afd3-0b31f9d79cf9))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp b572dda2-be97-48f4-b1db-b84da88334b2))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp c887e89a-ee90-4b2d-ba7a-abe1b7e311d1))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d3165956-54f9-48f7-86a3-f1e043f7fb56))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp db657e41-5591-45e6-ace1-ec3940887c7c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 10ed10b1-2655-49e0-9ae6-7249d9870441))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4b6bc006-1781-46aa-9f81-bf5d573b37f5))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 5e69cbc0-442a-41a2-a14d-38a9a559465e))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 825b8d45-f0a2-42d2-8b96-8f109375c4e9))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 9b7871d1-b7ca-4f1e-9a0e-fe907ee49112))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 55 "GPIO") (pinfunction "Pin_1") (pintype "passive") (tstamp a0d10357-be05-4902-b690-ab9ba805a4c8))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "+3.3V") (pinfunction "Pin_2") (pintype "passive") (tstamp 1042796b-6e10-4d51-b60d-57acaf5c4fc5))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp 780cbfc4-5d58-4007-a4e1-970860fcdc90))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "5VSB") (pinfunction "Pin_4") (pintype "passive") (tstamp c070ff6f-c0a2-4396-8cdf-0302bf7b50b5))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp ccfd8ff0-4a94-451b-b5dc-2843e75c0253))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.7mm_M2.5_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 8501f05a-6983-491a-b99f-3f7658147164)
(at 109.45 63.325)
(descr "Mounting Hole 2.7mm, M2.5")
(tags "mounting hole 2.7mm m2.5")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -3.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6c019c6-995b-4d49-ac3e-aea072bab798)
)
(fp_text value "H1" (at 0 3.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 893c2bbe-def3-4ad5-8856-d257e63d2eb0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06e3b88a-ac8a-4e88-8f1a-464211fd848c)
)
(fp_circle (center 0 0) (end 2.7 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp ef48dd5c-f5c8-4877-8382-6e37bfe22b3c))
(fp_circle (center 0 0) (end 2.95 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a4bcd95a-e260-4d93-a319-a82785554c8e))
(pad "1" connect circle (at 0 0) (size 5.4 5.4) (layers "B.Cu" "B.Mask") (tstamp 0508761c-86da-4caa-8e01-c7cf1a2bd0a0))
(pad "1" connect circle (at 0 0) (size 5.4 5.4) (layers "F.Cu" "F.Mask") (tstamp 42bbc592-e741-4c99-a8e3-776aa5f9d61b))
(pad "1" thru_hole circle (at 0 0) (size 3.1 3.1) (drill 2.7) (layers *.Cu *.Mask) (tstamp a9d1763d-1b24-4409-bcf5-30acdd3f6ee9))
)
(footprint "SamacSys_Parts:39-30-124Y_012" (layer "F.Cu")
(tedit 0) (tstamp 86106954-af4d-4619-82bc-ad68c4f82782)
(at 100.5158 105.0531)
(descr "39-30-124Y_012")
(tags "Connector")
(property "Arrow Part Number" "")
(property "Arrow Price/Stock" "")
(property "Description" "Mini-Fit Jr. Header, Dual Row, Right-Angle, with Snap-in Plastic Peg PCB Lock, 24 Circuits, PA Polyamide Nylon 6/6 94V-0")
(property "Height" "10")
(property "Manufacturer_Name" "Molex")
(property "Manufacturer_Part_Number" "39-30-1240")
(property "Mouser Part Number" "538-39-30-1240")
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Molex/39-30-1240?qs=53in8j6h7oT4gg7SUi1WDw%3D%3D")
(property "Mouser Testing Part Number" "")
(property "Mouser Testing Price/Stock" "")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/d407ecd6-f7ce-4db7-a981-3c79efde27ed")
(attr through_hole)
(fp_text reference "J2ATX1" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 8e3c3083-70b1-4a35-89c5-d01ce0cbf0e5)
)
(fp_text value "39-30-1240" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp c89d29fc-4ff1-4b5a-8b4f-dc6df2e10fa7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 56c8c1a6-0e29-49fe-9d3a-bafb93e15aa4)
)
(fp_line (start 2.7 13.968) (end -48.9 13.968) (layer "F.SilkS") (width 0.127) (tstamp 09da4318-3ca1-4834-b772-e3f96fc7d486))
(fp_line (start 2.7 -5.968) (end 2.7 13.968) (layer "F.SilkS") (width 0.127) (tstamp 9e8037dc-c0d1-4676-a3dd-7286c2117b5d))
(fp_line (start 6.5 0) (end 7.5 -0.5) (layer "F.SilkS") (width 0.127) (tstamp b0484ea8-051e-43c1-8b44-d8305c032938))
(fp_line (start 7.5 0.5) (end 6.5 0) (layer "F.SilkS") (width 0.127) (tstamp de9461f9-7bce-4dbb-9eac-597bc5dee452))
(fp_line (start 7.5 -0.5) (end 7.5 0.5) (layer "F.SilkS") (width 0.127) (tstamp efee6b06-ad6f-4d6b-b923-8c06a00de51b))
(fp_line (start -48.9 13.968) (end -48.9 -5.968) (layer "F.SilkS") (width 0.127) (tstamp f9893cd9-c895-435b-a99a-2274d1700c63))
(fp_line (start 3.97 -7.7942) (end 3.97 15.238) (layer "F.CrtYd") (width 0.05) (tstamp 351e673d-d914-4133-a96e-c4a1840e8a44))
(fp_line (start 3.97 15.238) (end -50.17 15.238) (layer "F.CrtYd") (width 0.05) (tstamp c96d82cc-e967-42cd-9ea0-d3fac2f1cbe9))
(fp_line (start -50.17 15.238) (end -50.17 -7.7942) (layer "F.CrtYd") (width 0.05) (tstamp cc324f97-81e1-4a99-bd33-270e3a10f246))
(fp_line (start -50.17 -7.7942) (end 3.97 -7.7942) (layer "F.CrtYd") (width 0.05) (tstamp efd29c5b-7ea9-4329-ad79-42402400acf9))
(fp_line (start 6.5 0) (end 7.5 -0.5) (layer "F.Fab") (width 0.127) (tstamp 34bc3ca1-f781-40dd-99ad-d0d9f83965e9))
(fp_line (start -48.9 -5.968) (end 2.7 -5.968) (layer "F.Fab") (width 0.127) (tstamp 4e189ac3-5d3b-47ba-be59-55d3c1630bc4))
(fp_line (start 7.5 0.5) (end 6.5 0) (layer "F.Fab") (width 0.127) (tstamp 506b96d8-28cb-477c-8efb-f4019ddaecb8))
(fp_line (start -48.9 13.968) (end -48.9 -5.968) (layer "F.Fab") (width 0.127) (tstamp 68db0cc9-6cab-4716-b7ea-e3871993b209))
(fp_line (start 2.7 13.968) (end -48.9 13.968) (layer "F.Fab") (width 0.127) (tstamp 8c71b412-5b3b-4dbf-b5cb-b7489f8dfac3))
(fp_line (start 7.5 -0.5) (end 7.5 0.5) (layer "F.Fab") (width 0.127) (tstamp 92764f50-f09c-4477-baac-329473b2c47f))
(fp_line (start 2.7 -5.968) (end 2.7 13.968) (layer "F.Fab") (width 0.127) (tstamp b19aa778-26d7-4f65-93b4-921fcf294342))
(pad "" np_thru_hole circle locked (at 0 7.3) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 386ad1e0-f768-4535-a17e-a78569e69af6))
(pad "" np_thru_hole circle locked (at -46.2 7.3) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5e295676-aa6f-4b88-8b8a-e6fba801d062))
(pad "1" thru_hole rect locked (at 0 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 7 "unconnected-(J2ATX1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp d0010b9c-abf7-4ef8-9392-18787b17b7e9))
(pad "2" thru_hole circle locked (at -4.2 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 8 "unconnected-(J2ATX1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 2f9ef973-9969-4e7f-9d28-8a0fd10c36ee))
(pad "3" thru_hole circle locked (at -8.4 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "3") (pintype "passive") (tstamp 2c86461b-dd0b-490d-b51f-94a5703aa29d))
(pad "4" thru_hole circle locked (at -12.6 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "4") (pintype "passive") (tstamp 3374d954-14e4-4ca2-9b30-2d6eef3996a2))
(pad "5" thru_hole circle locked (at -16.8 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 9 "unconnected-(J2ATX1-Pad5)") (pinfunction "5") (pintype "passive") (tstamp 9e0595ad-0964-4fc5-8b50-9102fb996e1c))
(pad "6" thru_hole circle locked (at -21 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 10 "unconnected-(J2ATX1-Pad6)") (pinfunction "6") (pintype "passive") (tstamp bde5578a-d678-43b3-960a-ecb3cd58293d))
(pad "7" thru_hole circle locked (at -25.2 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 11 "unconnected-(J2ATX1-Pad7)") (pinfunction "7") (pintype "passive") (tstamp 18bea440-8138-4b7c-87a2-1923bc306192))
(pad "8" thru_hole circle locked (at -29.4 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 12 "unconnected-(J2ATX1-Pad8)") (pinfunction "8") (pintype "passive") (tstamp de54467c-cbea-40f6-9baa-9f05be4b018a))
(pad "9" thru_hole circle locked (at -33.6 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 67 "Net-(D3POWER1-Pad2)") (pinfunction "9") (pintype "passive") (tstamp 2a5098ce-0217-40d0-8c55-c3c73f47473e))
(pad "10" thru_hole circle locked (at -37.8 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 13 "12V") (pinfunction "10") (pintype "passive") (tstamp d62ee7fe-c6c8-436f-bbdf-e75192f78473))
(pad "11" thru_hole circle locked (at -42 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 14 "unconnected-(J2ATX1-Pad11)") (pinfunction "11") (pintype "passive") (tstamp c499ba96-d928-40ec-ab8e-3cd67681661a))
(pad "12" thru_hole circle locked (at -46.2 0) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 15 "unconnected-(J2ATX1-Pad12)") (pinfunction "12") (pintype "passive") (tstamp 7c087c84-ed88-46f5-ade2-c71f750df064))
(pad "13" thru_hole circle locked (at 0 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 16 "unconnected-(J2ATX1-Pad13)") (pinfunction "13") (pintype "passive") (tstamp a6c34c63-cdf9-4a63-88b8-a70d18731094))
(pad "14" thru_hole circle locked (at -4.2 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 17 "unconnected-(J2ATX1-Pad14)") (pinfunction "14") (pintype "passive") (tstamp d01bcc02-4590-4147-9ac7-de71dc1f0863))
(pad "15" thru_hole circle locked (at -8.4 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 18 "unconnected-(J2ATX1-Pad15)") (pinfunction "15") (pintype "passive") (tstamp 6ef94a89-dbd7-4b9a-ad2f-d9bdac785d0f))
(pad "16" thru_hole circle locked (at -12.6 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 68 "Net-(J2ATX1-Pad16)") (pinfunction "16") (pintype "passive") (tstamp 5eb8ac25-bfe0-4fa3-b4e5-8c7914fd482b))
(pad "17" thru_hole circle locked (at -16.8 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 19 "unconnected-(J2ATX1-Pad17)") (pinfunction "17") (pintype "passive") (tstamp 47cafe52-3a2d-455a-ab40-2746773fa957))
(pad "18" thru_hole circle locked (at -21 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 20 "unconnected-(J2ATX1-Pad18)") (pinfunction "18") (pintype "passive") (tstamp d54a84cf-b651-4b35-bd20-58f37c6341b9))
(pad "19" thru_hole circle locked (at -25.2 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 21 "unconnected-(J2ATX1-Pad19)") (pinfunction "19") (pintype "passive") (tstamp 4a469383-a869-407e-b08c-1942190ff6dc))
(pad "20" thru_hole circle locked (at -29.4 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 22 "unconnected-(J2ATX1-Pad20)") (pinfunction "20") (pintype "passive") (tstamp e3319c17-e90e-43cd-b6d5-c2dcfb5d85c2))
(pad "21" thru_hole circle locked (at -33.6 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 69 "unconnected-(J2ATX1-Pad21)") (pinfunction "21") (pintype "passive") (tstamp f07e590e-3a73-404f-922f-3802522b71bf))
(pad "22" thru_hole circle locked (at -37.8 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 70 "unconnected-(J2ATX1-Pad22)") (pinfunction "22") (pintype "passive") (tstamp 8dbc57f3-f704-4f7b-9a21-546f5b83bab6))
(pad "23" thru_hole circle locked (at -42 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 71 "unconnected-(J2ATX1-Pad23)") (pinfunction "23") (pintype "passive") (tstamp 57b6dd00-b5dd-421c-a91a-8534b7d6080b))
(pad "24" thru_hole circle locked (at -46.2 -5.5) (size 2.15 2.15) (drill 1.8) (layers *.Cu *.Mask)
(net 72 "unconnected-(J2ATX1-Pad24)") (pinfunction "24") (pintype "passive") (tstamp a4ca222a-5f56-413e-9fbc-8fc45736eeb8))
(model "C:\\SamacSys_PCB_Library\\KiCad\\SamacSys_Parts.3dshapes\\39-30-1240.stp"
(offset (xyz -22.99999965 -13.97000006 -0.05999999776))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" placed (layer "F.Cu")
(tedit 5AE5139B) (tstamp 96190473-076a-4fb7-b9ff-ad276636b4a5)
(at 81.94 87.225)
(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" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063878306")
(attr through_hole)
(fp_text reference "R2" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp babbf5a2-7792-4121-af93-136aa67c1a39)
)
(fp_text value "1K" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c360ec4-91d5-4035-955f-f91ebd102c93)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18838c2c-b7ab-4959-8211-3aacbb9e1a26)
)
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 1c146e34-1a22-46e4-87d2-45d2ad0da505))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3ee8154a-6c00-464a-80f4-a3f193575efd))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 51128d51-ad51-4288-bd4a-fdee32540043))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6d611756-05d3-4895-ab26-5e1bd0a1ae89))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7520ca33-2bb1-4cdd-bd8c-e95d983f8ae8))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp bf04770d-03e6-4b51-9b57-2a17f0feb861))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 65412899-b464-4fd5-97ef-9b80c443a823))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6cd0f3fc-56ce-48fc-833c-6da3473734fb))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7e8d254a-a746-4d08-89fc-b418a13b6f2a))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c62b3828-3992-4ab6-8f37-eb4f0cf8195e))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 34bd3e9b-42ef-4d30-b461-d66eb69e2b34))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 3dae809b-2bc7-4db0-8dc7-b01a9103a80f))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 5c247133-32bc-4a4c-9798-240fe02e8b31))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp abfa0644-d004-4617-af8c-ced776346992))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp cd39f170-3405-4be2-8c9e-abde03a86f9c))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp d0fb8114-7be6-41b3-a48e-7b9041dd13ad))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "Net-(Q1-Pad2)") (pintype "passive") (tstamp 1f269582-7938-4a25-833c-69c9bf96f96d))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(D2SWSTART1-Pad1)") (pintype "passive") (tstamp 09e28c45-7347-4612-b4ee-a53261c81e50))
(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 "MountingHole:MountingHole_2.7mm_M2.5_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 9da0c7d6-3650-4f9e-afa3-ac36764bdf56)
(at 109.425 86.425)
(descr "Mounting Hole 2.7mm, M2.5")
(tags "mounting hole 2.7mm m2.5")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -3.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a193fffe-dcc1-4e00-8dfd-bb863e733e52)
)
(fp_text value "H3" (at 0 3.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8aa4b00f-c8a7-4f0f-a2a8-6ddd3e96955a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5531967c-fbe9-48f9-aff4-e79bd8a9d22e)
)
(fp_circle (center 0 0) (end 2.7 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp fe7ed47d-4b89-40b6-9472-3824cd2e0315))
(fp_circle (center 0 0) (end 2.95 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp bde29d80-3354-480d-93bf-583589e7f602))
(pad "1" connect circle (at 0 0) (size 5.4 5.4) (layers "B.Cu" "B.Mask") (tstamp 17dc027a-6163-45b8-addc-beb69363433b))
(pad "3" thru_hole circle (at 0 0) (size 3.1 3.1) (drill 2.7) (layers *.Cu *.Mask) (tstamp 868e6201-fbeb-482c-b97f-8d42e5b10aff))
(pad "3" connect circle (at 0 0) (size 5.4 5.4) (layers "F.Cu" "F.Mask") (tstamp bad8df70-1256-4f87-a757-3c9096222b26))
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" placed (layer "F.Cu")
(tedit 5A1DD157) (tstamp acc16cbf-7316-465e-ad4a-86cd484a1c9c)
(at 74.94 86.255 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006385e764")
(attr through_hole)
(fp_text reference "Q1" (at 1.27 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a86e11d-c6b2-4d76-8e90-a0b98f8c110f)
)
(fp_text value "2N3904" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ecb63b72-2a12-4697-bb40-bd41e054f38d)
)
(fp_text user "${REFERENCE}" (at -0.805 -3.585 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cf9cefe-6fad-425d-8977-05d61fc0b9ec)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp b3de7441-96e2-41c0-aaf0-b590749d6070))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 107214f4-d0c8-480e-bb97-b4af58b61248))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp ff4f757c-0c3b-45ce-9f75-aa85cb16d70c))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 0a2016ca-930e-431c-97c1-5cd844be51ae))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 36e4d452-1370-407c-b185-94db8851072f))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 3fe07c85-4ef6-4bbf-9626-30c0c2c4265a))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp e43f5bb6-ddaa-423c-89be-a9c1909ea935))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 5a02d006-45a8-4f9b-9fa6-1e56400fa23b))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 23e54872-0922-455b-8db1-77385db0e752))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp b7dd3e26-2ae4-4b1c-956d-5d7e8fdb201e))
(pad "1" thru_hole rect (at 0 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 1 "Net-(D1GPIO1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 1909bae5-b532-49cd-8451-7c48143d6db0))
(pad "2" thru_hole oval (at 1.27 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 62 "Net-(Q1-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 4565d6ac-41c9-4782-86de-8c02859b1958))
(pad "3" thru_hole oval (at 2.54 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 68 "Net-(J2ATX1-Pad16)") (pinfunction "E") (pintype "passive") (tstamp f24c596f-4a00-4817-ab17-9777c7d5211c))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp ae0cb5c3-231f-4491-872c-d49268b035d2)
(at 70.1 78.125 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006388037f")
(attr through_hole)
(fp_text reference "D3POWER1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f67bfee1-b883-4ab7-a6dc-849ac8a8a86c)
)
(fp_text value "1N4003" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8da137c0-7df1-45f9-b68a-a3d57d2a7f1d)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 4c867859-fab8-4223-a7cd-2f1661356dfb))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp c40e6981-1cea-44b9-bc62-7010b31dcf7d))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp 3aa68bf2-9ba1-43eb-bad5-274e76d16952))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 4c8659c1-6fa5-4581-98c7-734fee01a506))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 5ab4be4f-c2f2-4095-b9e6-2400d8abe874))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp c49d500c-eac1-462a-a669-5bb7df33e7c3))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 269aa6e8-985e-4673-8faa-106fbe1ac89f))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 731f9219-5de1-4533-a19c-306cf6d6a4fc))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp acaf8d98-70e9-4270-99f6-e1598d53ccc4))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp d0bc51b7-023e-4b3b-9d32-bafaf28f7f6c))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 721f077e-7d18-4e4a-b5e5-a6e546e19bec))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 8db453a6-493e-4b87-8632-6dbc1fc53ec8))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6eb33803-50c6-41a9-a729-801203c33661))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 5 "5VSB") (pinfunction "K") (pintype "passive") (tstamp 92a2211e-32bd-43a4-bd8d-16ecc5df0d3b))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 67 "Net-(D3POWER1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 42f433bc-a7bb-4329-8b50-4f60c8f406ce))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SamacSys_Parts:RHDR40W64P254_2X20_5130X500X1375P" (layer "F.Cu")
(tedit 0) (tstamp b07b7a81-94de-4f31-a6fc-9759985ab46b)
(at 56.13 64.64)
(descr "PRT-14017")
(tags "Connector")
(property "Arrow Part Number" "")
(property "Arrow Price/Stock" "")
(property "Description" "Female header 2x20 p straight")
(property "Height" "8.65")
(property "Manufacturer_Name" "Econ Connect")
(property "Manufacturer_Part_Number" "BLG2X20")
(property "Mouser Part Number" "")
(property "Mouser Price/Stock" "")
(property "Mouser Testing Part Number" "")
(property "Mouser Testing Price/Stock" "")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000639bb032")
(attr through_hole)
(fp_text reference "J6RPI1" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 05fab84f-98e9-43ba-9c42-59294a08e0b5)
)
(fp_text value "BLG2X20" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 43f96fac-ea1d-4cc8-86d5-63ec8f400f13)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 27021bbc-bf14-4315-9a4b-6dd7663abf35)
)
(fp_line (start 50.08 1.23) (end 50.08 -3.92) (layer "F.SilkS") (width 0.2) (tstamp 6373a60b-32cf-4062-b4f7-31687084c9dd))
(fp_line (start 50.08 -3.92) (end -1.52 -3.92) (layer "F.SilkS") (width 0.2) (tstamp 7998cb4e-ce28-4dcb-9ee6-0dd65d677aab))
(fp_line (start 0 1.23) (end 50.08 1.23) (layer "F.SilkS") (width 0.2) (tstamp ea68b359-d21b-4d72-b3a8-9294112a5102))
(fp_line (start -1.52 -3.92) (end -1.52 0) (layer "F.SilkS") (width 0.2) (tstamp f36c4732-7f3e-4a78-9468-e698dbeef584))
(fp_line (start -1.77 -4.17) (end 50.33 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 4f382006-9f0a-47d8-becb-2e78b20137d3))
(fp_line (start -1.77 1.48) (end -1.77 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 682c48bb-ffb5-4452-b968-675a57838460))
(fp_line (start 50.33 -4.17) (end 50.33 1.48) (layer "F.CrtYd") (width 0.05) (tstamp c0d1304f-1fab-4947-bed0-8927def4db83))
(fp_line (start 50.33 1.48) (end -1.77 1.48) (layer "F.CrtYd") (width 0.05) (tstamp df86bc65-3d47-4256-bbcb-fee023bcc104))
(fp_line (start 50.08 1.23) (end -1.52 1.23) (layer "F.Fab") (width 0.1) (tstamp 59302a2e-d7ca-47b9-a477-a23d0a4ac3e6))
(fp_line (start -1.52 -3.92) (end 50.08 -3.92) (layer "F.Fab") (width 0.1) (tstamp bc656b8c-a62b-47d3-9076-23e158c7649a))
(fp_line (start 50.08 -3.92) (end 50.08 1.23) (layer "F.Fab") (width 0.1) (tstamp cf43f615-d795-4dcf-b8a6-157380770065))
(fp_line (start -1.52 1.23) (end -1.52 -3.92) (layer "F.Fab") (width 0.1) (tstamp e021a642-05db-411e-b85c-ae6909f7c9ed))
(pad "1" thru_hole rect locked (at 0 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 23 "unconnected-(J6RPI1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 7b9ce4bd-b5f7-4645-b48b-6172193f10d5))
(pad "2" thru_hole circle locked (at 0 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "5VSB") (pinfunction "2") (pintype "passive") (tstamp 6f777286-33a8-46bf-b5c9-107531f2e6a4))
(pad "3" thru_hole circle locked (at 2.54 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 24 "unconnected-(J6RPI1-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 4e83b563-c14c-4f3e-9d72-2a987021b985))
(pad "4" thru_hole circle locked (at 2.54 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 25 "unconnected-(J6RPI1-Pad4)") (pinfunction "4") (pintype "passive") (tstamp b86deadb-5889-4fa0-bc78-3579f9565306))
(pad "5" thru_hole circle locked (at 5.08 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 26 "unconnected-(J6RPI1-Pad5)") (pinfunction "5") (pintype "passive") (tstamp 849843ef-0b67-43cd-abe3-a76ab88336d0))
(pad "6" thru_hole circle locked (at 5.08 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "unconnected-(J6RPI1-Pad6)") (pinfunction "6") (pintype "passive") (tstamp c0426043-c305-46ad-b691-182f228a41db))
(pad "7" thru_hole circle locked (at 7.62 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 28 "unconnected-(J6RPI1-Pad7)") (pinfunction "7") (pintype "passive") (tstamp c0d38e60-14f2-4e2c-a95b-325d32e9b0ff))
(pad "8" thru_hole circle locked (at 7.62 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 29 "unconnected-(J6RPI1-Pad8)") (pinfunction "8") (pintype "passive") (tstamp e096a56f-ba7a-4d36-b7e4-e8fbaaf42e4c))
(pad "9" thru_hole circle locked (at 10.16 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J6RPI1-Pad9)") (pinfunction "9") (pintype "passive") (tstamp 5dc29192-c1d9-4430-8dae-a3f0a0fff678))
(pad "10" thru_hole circle locked (at 10.16 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J6RPI1-Pad10)") (pinfunction "10") (pintype "passive") (tstamp 1927a411-a257-4971-8a80-5577a133cd2f))
(pad "11" thru_hole circle locked (at 12.7 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J6RPI1-Pad11)") (pinfunction "11") (pintype "passive") (tstamp 7cdc04d4-f852-4e43-81d3-ae1a8feb2232))
(pad "12" thru_hole circle locked (at 12.7 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 33 "unconnected-(J6RPI1-Pad12)") (pinfunction "12") (pintype "passive") (tstamp 0e621a8e-c027-401f-892d-ae743c1d027d))
(pad "13" thru_hole circle locked (at 15.24 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 34 "unconnected-(J6RPI1-Pad13)") (pinfunction "13") (pintype "passive") (tstamp 516d3ad4-2d70-4004-ad14-2b6183d5b4e9))
(pad "14" thru_hole circle locked (at 15.24 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 35 "unconnected-(J6RPI1-Pad14)") (pinfunction "14") (pintype "passive") (tstamp ddeb5a0d-2492-432c-afe6-7f7dd8a39fff))
(pad "15" thru_hole circle locked (at 17.78 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 36 "unconnected-(J6RPI1-Pad15)") (pinfunction "15") (pintype "passive") (tstamp 87d8f4af-0fc1-4b76-99e8-4a666cc637e7))
(pad "16" thru_hole circle locked (at 17.78 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 37 "unconnected-(J6RPI1-Pad16)") (pinfunction "16") (pintype "passive") (tstamp 646d6f5d-18c9-4fc2-8157-58bc7262b205))
(pad "17" thru_hole circle locked (at 20.32 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 38 "unconnected-(J6RPI1-Pad17)") (pinfunction "17") (pintype "passive") (tstamp 35ccc687-b9d6-4914-9d8c-d82c9e0d4339))
(pad "18" thru_hole circle locked (at 20.32 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 39 "unconnected-(J6RPI1-Pad18)") (pinfunction "18") (pintype "passive") (tstamp 844e28f7-186d-4446-8fe7-ca7e56efe3c8))
(pad "19" thru_hole circle locked (at 22.86 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 40 "unconnected-(J6RPI1-Pad19)") (pinfunction "19") (pintype "passive") (tstamp 6d7ff967-2e64-420d-91fe-ebb3c324dc6f))
(pad "20" thru_hole circle locked (at 22.86 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 41 "unconnected-(J6RPI1-Pad20)") (pinfunction "20") (pintype "passive") (tstamp a3f15e67-efe1-4f0a-972e-83a11f427357))
(pad "21" thru_hole circle locked (at 25.4 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 42 "unconnected-(J6RPI1-Pad21)") (pinfunction "21") (pintype "passive") (tstamp 30cf50c1-a411-4e3a-a50a-bc27f2ea4fcc))
(pad "22" thru_hole circle locked (at 25.4 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 43 "unconnected-(J6RPI1-Pad22)") (pinfunction "22") (pintype "passive") (tstamp 3253cb0f-e174-4159-9c66-ebd338b66bf1))
(pad "23" thru_hole circle locked (at 27.94 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 44 "unconnected-(J6RPI1-Pad23)") (pinfunction "23") (pintype "passive") (tstamp dd163de5-aa77-4923-8fa0-2296b697cc92))
(pad "24" thru_hole circle locked (at 27.94 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 45 "unconnected-(J6RPI1-Pad24)") (pinfunction "24") (pintype "passive") (tstamp bfb605d2-ed51-4be5-9813-d827880e0884))
(pad "25" thru_hole circle locked (at 30.48 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 46 "unconnected-(J6RPI1-Pad25)") (pinfunction "25") (pintype "passive") (tstamp 92ede57e-85ac-4d7b-bdc7-ff07c941f246))
(pad "26" thru_hole circle locked (at 30.48 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 47 "unconnected-(J6RPI1-Pad26)") (pinfunction "26") (pintype "passive") (tstamp 9ead8e7f-427b-4505-ad54-4f86c7f5bd5c))
(pad "27" thru_hole circle locked (at 33.02 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 48 "unconnected-(J6RPI1-Pad27)") (pinfunction "27") (pintype "passive") (tstamp e6ea91ad-3ee2-4178-b029-12aec2916f56))
(pad "28" thru_hole circle locked (at 33.02 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 49 "unconnected-(J6RPI1-Pad28)") (pinfunction "28") (pintype "passive") (tstamp 038bbc4f-b5b9-4c31-b6ef-0e4c5d4fff65))
(pad "29" thru_hole circle locked (at 35.56 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 55 "GPIO") (pinfunction "29") (pintype "passive") (tstamp ca69ae17-fb4b-4a5e-8686-e76f3cec2e22))
(pad "30" thru_hole circle locked (at 35.56 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 50 "unconnected-(J6RPI1-Pad30)") (pinfunction "30") (pintype "passive") (tstamp f98fb38c-088b-41b7-9e6f-fd30b88b3b16))
(pad "31" thru_hole circle locked (at 38.1 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 51 "unconnected-(J6RPI1-Pad31)") (pinfunction "31") (pintype "passive") (tstamp 9b4dc998-9dd2-4192-b1f8-726dab7c0ef5))
(pad "32" thru_hole circle locked (at 38.1 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 52 "unconnected-(J6RPI1-Pad32)") (pinfunction "32") (pintype "passive") (tstamp ce9fcb38-1e1a-4b6d-8e0d-a63127e31adf))
(pad "33" thru_hole circle locked (at 40.64 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 53 "unconnected-(J6RPI1-Pad33)") (pinfunction "33") (pintype "passive") (tstamp fcb3758d-54b2-40df-a8b2-fe8b04a35162))
(pad "34" thru_hole circle locked (at 40.64 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 56 "unconnected-(J6RPI1-Pad34)") (pinfunction "34") (pintype "passive") (tstamp 9caa6dae-f61d-42c0-a4be-a1c4b126cf7c))
(pad "35" thru_hole circle locked (at 43.18 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 57 "unconnected-(J6RPI1-Pad35)") (pinfunction "35") (pintype "passive") (tstamp 37e9dd9d-4bb3-4e59-a75a-51d0d6fa461c))
(pad "36" thru_hole circle locked (at 43.18 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 58 "unconnected-(J6RPI1-Pad36)") (pinfunction "36") (pintype "passive") (tstamp fe490431-f6b4-4b9f-b60a-4cb32fc5a5f1))
(pad "37" thru_hole circle locked (at 45.72 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 59 "unconnected-(J6RPI1-Pad37)") (pinfunction "37") (pintype "passive") (tstamp 20dc1c63-0b83-43e8-bba0-2a395e404772))
(pad "38" thru_hole circle locked (at 45.72 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 60 "unconnected-(J6RPI1-Pad38)") (pinfunction "38") (pintype "passive") (tstamp 58180ae6-79bf-469e-a9ee-59d598f13ee2))
(pad "39" thru_hole circle locked (at 48.26 0) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "39") (pintype "passive") (tstamp fef5ebe0-9e7b-4fa8-a4da-a8a469cf1001))
(pad "40" thru_hole circle locked (at 48.26 -2.54) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 61 "unconnected-(J6RPI1-Pad40)") (pinfunction "40") (pintype "passive") (tstamp 7368db96-386b-49ac-8b31-c89a52164d40))
(model "C:\\SamacSys_PCB_Library\\KiCad\\SamacSys_Parts.3dshapes\\PRT-14017.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp c53df521-6b95-4004-94db-72e7ea4bbe03)
(at 79.175 78.275 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006385bbc8")
(attr through_hole)
(fp_text reference "D1GPIO1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bcd944d-c50f-4780-bc3f-eda5f8979a72)
)
(fp_text value "1N4003" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bc7896f-f184-49f3-b65f-9d86b2ed7230)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 9a85eabe-845a-4637-9c17-40b76ef10fba))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp c170eee7-3466-418f-9eba-8ec4fce144fc))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 0041d63a-b83f-4a16-8d3f-1d00ba64693d))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 4e1cd2d8-a43f-4f63-8444-2bd387b223c5))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp a727cc8b-f8e8-4e37-a09f-4a014ab391ca))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp bfdf9917-9844-4d9f-806a-545a247974f3))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 7142b017-96b3-4c09-8bde-de6da8d25fd8))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 971652dd-19f1-4eff-bee5-24403b871c5c))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp c5f2aa2e-ba93-479f-b8d0-802b59fb4f39))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp e3be92b3-4c18-4646-8837-2a8122625e71))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 1afb70d4-8f45-4306-aea8-596e666bd6f8))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp f0c134ec-3562-472e-a09f-8cefe9d12cb8))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp beb256fe-06d0-48c3-8c08-d78516d5f929))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "Net-(D1GPIO1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 108f8022-6ee0-45c5-bbab-a59cbc4412e9))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "Net-(D1GPIO1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 57c8c7fa-c0f2-4413-89e6-3db839157a6a))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.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" placed (layer "F.Cu")
(tedit 5AE5139B) (tstamp c91dc52e-1e6d-4150-8644-3b0274f9cfb9)
(at 79.805 70.45)
(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" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006385d173")
(attr through_hole)
(fp_text reference "R1" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d43676db-a829-474d-ba62-ba3de82956e5)
)
(fp_text value "1k" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ded14bb-eb86-4b45-9f4c-bc9c85d39f54)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4711b3a-52b8-42d1-84ad-d4a81f24cec6)
)
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 02f47f3a-d022-4d53-a724-be5338eb3240))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 74873fb6-4320-462e-a2af-06bb3e1f47d6))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 777bf024-97cc-406c-8192-7be858d5ae85))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8359eb78-8f05-4e46-b242-d2e468d452f0))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8b8655e2-21ab-4ecc-91f9-5c3e9144c6ae))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ea04fc7c-8da3-4386-b43f-10c726351c28))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 004dbcef-d78a-4773-b254-e9e19e6606e6))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0df0f079-5585-45d6-afa1-b2b4db46140a))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 60f8ff24-4185-46a5-8b05-6437cb2fa5b7))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 90448681-a801-4366-88c3-a1bbff24a964))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 23430172-f8bd-46c3-9546-f5ae4f86e941))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 8658e36b-e414-4924-8e76-d9dedc697a77))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 86d13867-1826-4607-a3d0-19b0559e85e1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 8f128c94-164a-43e4-88e5-5abc04b58cde))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp d1d959c1-d96a-4c67-b533-fb4961d7ddf7))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp d695566d-e297-487d-8567-0cb1b61656cf))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(D1GPIO1-Pad2)") (pintype "passive") (tstamp 819ffc50-547f-4e9f-a0db-bf8e25704cae))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "GPIO") (pintype "passive") (tstamp 3aac2d6b-2461-405e-91ae-17633b38bd52))
(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 "SamacSys_Parts:A-USBSA" (layer "F.Cu")
(tedit 0) (tstamp cc0378c9-7c88-4fd5-9cd2-ae992563d552)
(at 110.95 74.845 90)
(descr "A-USBSA")
(tags "Connector")
(property "Arrow Part Number" "292303-7")
(property "Arrow Price/Stock" "https://www.arrow.com/en/products/292303-7/te-connectivity")
(property "Description" "Type A USB right angled PCB receptacle")
(property "Height" "7.01")
(property "Manufacturer_Name" "TE Connectivity")
(property "Manufacturer_Part_Number" "292303-7")
(property "Mouser Part Number" "571-292303-7")
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/TE-Connectivity/292303-7?qs=e6gk%2FTaAuqWZCg5WWmtijA%3D%3D")
(property "Mouser Testing Part Number" "")
(property "Mouser Testing Price/Stock" "")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000639a2df5")
(attr through_hole)
(fp_text reference "J3USB1" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 1a9291f3-da3b-428d-a437-25a14934ba87)
)
(fp_text value "292303-7" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 2010e38f-3e3c-4ad1-9228-76464ae8cb21)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp ae4d1bb1-8e8c-4a43-a92d-83168961e67f)
)
(fp_line (start -6.57 -7.1) (end 6.57 -7.1) (layer "F.SilkS") (width 0.2) (tstamp e5537778-4aaa-427b-a246-c80d9802bdec))
(fp_line (start -6.57 7.1) (end 6.57 7.1) (layer "F.SilkS") (width 0.2) (tstamp f9da80d5-067e-4e49-9b9e-1e17c79b7787))
(fp_line (start -6.57 7.1) (end 6.57 7.1) (layer "F.Fab") (width 0.1) (tstamp 7acd903c-fc3a-46c3-b3c2-14d790ba9911))
(fp_line (start 6.57 7.1) (end 6.57 -7.1) (layer "F.Fab") (width 0.1) (tstamp 854f23ef-8b30-474c-9091-67226683c5e9))
(fp_line (start -6.57 -7.1) (end -6.57 7.1) (layer "F.Fab") (width 0.1) (tstamp 9e159f8d-d141-42e5-872b-35cd24b2c303))
(fp_line (start 6.57 -7.1) (end -6.57 -7.1) (layer "F.Fab") (width 0.1) (tstamp e9e9c3fa-344e-4891-abec-469ef5a8f0b4))
(pad "1" thru_hole circle locked (at -3.5 -6.01 90) (size 1.38 1.38) (drill 0.92) (layers *.Cu *.Mask)
(net 5 "5VSB") (pinfunction "1") (pintype "passive") (tstamp 52e2da9e-5b59-4d6a-884a-f57289dffe76))
(pad "2" thru_hole circle locked (at -1 -6.01 90) (size 1.38 1.38) (drill 0.92) (layers *.Cu *.Mask)
(net 63 "unconnected-(J3USB1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 3d3a68d6-c488-4782-b039-fe788e37b54e))
(pad "3" thru_hole circle locked (at 1 -6.01 90) (size 1.38 1.38) (drill 0.92) (layers *.Cu *.Mask)
(net 64 "unconnected-(J3USB1-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 7b648b52-523c-42bc-a502-e6740ed24dd5))
(pad "4" thru_hole circle locked (at 3.5 -6.01 90) (size 1.38 1.38) (drill 0.92) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "4") (pintype "passive") (tstamp 563aacd5-7278-464f-8074-a8a9e0e488b9))
(pad "5" thru_hole circle locked (at -6.57 -3.3 90) (size 3.45 3.45) (drill 2.3) (layers *.Cu *.Mask)
(net 65 "unconnected-(J3USB1-Pad5)") (pinfunction "5") (pintype "passive") (tstamp 8be3d60a-abd0-42a9-9909-1cb0b9d9e716))
(pad "6" thru_hole circle locked (at 6.57 -3.3 90) (size 3.45 3.45) (drill 2.3) (layers *.Cu *.Mask)
(net 66 "unconnected-(J3USB1-Pad6)") (pinfunction "6") (pintype "passive") (tstamp 3398081e-14ff-4909-a11e-4ce0273c1bbf))
(model "C:\\SamacSys_PCB_Library\\KiCad\\SamacSys_Parts.3dshapes\\A-USBSA.stp"
(offset (xyz 0 -7.099999798 0.4999999925))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "SamacSys_Parts:0398800302" (layer "F.Cu")
(tedit 0) (tstamp daf9a0b1-2b0a-4e8b-a6ff-e66d7973445d)
(at 108.85 110.015 90)
(descr "0398800302-2")
(tags "Connector")
(property "Arrow Part Number" "")
(property "Arrow Price/Stock" "")
(property "Description" "3.50mm Pitch Beau Eurostyle Fixed Mount PCB Terminal Block, Circuits")
(property "Height" "8.64")
(property "Manufacturer_Name" "Molex")
(property "Manufacturer_Part_Number" "39357-0002")
(property "Mouser Part Number" "538-39357-0002")
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Molex/39357-0002?qs=c7V%252BsbZfmqvL0V%252BWJEAGdg%3D%3D")
(property "Mouser Testing Part Number" "")
(property "Mouser Testing Price/Stock" "")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000639a864e")
(attr through_hole)
(fp_text reference "J5" (at 2.54 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 2df44067-0765-41a6-9564-e34192f16075)
)
(fp_text value "39357-0002" (at 2.54 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 0ecdf60c-f85d-424c-a526-e685968da210)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 871a56ec-df8f-4143-b21e-b78f3953a98a)
)
(fp_line (start 7.945 -4.1) (end 7.945 4.1) (layer "F.SilkS") (width 0.2) (tstamp 04876224-285c-438e-b814-1a91183e0acf))
(fp_line (start -2.865 4.1) (end -2.865 -4.1) (layer "F.SilkS") (width 0.2) (tstamp 07084cca-293e-4fbb-97a7-196d586fc063))
(fp_line (start -2.865 -4.1) (end 7.945 -4.1) (layer "F.SilkS") (width 0.2) (tstamp 77de5ec4-4287-4895-90e9-a7b2cbd6eaa0))
(fp_line (start 7.945 4.1) (end -2.865 4.1) (layer "F.SilkS") (width 0.2) (tstamp 8010b6c8-65c6-4e0c-a03a-15d51f2e6372))
(fp_line (start -3.3 0) (end -3.3 0) (layer "F.SilkS") (width 0.1) (tstamp 90d73690-96c1-4663-8c85-c10574fc51c3))
(fp_line (start -3.4 0) (end -3.4 0) (layer "F.SilkS") (width 0.1) (tstamp e429201b-86c8-468a-9286-1f4d9810ca46))
(fp_arc (start -3.3 0) (mid -3.35 0.05) (end -3.4 0) (layer "F.SilkS") (width 0.1) (tstamp 169b1d9f-87f5-4156-866a-abf8d98164de))
(fp_arc (start -3.4 0) (mid -3.35 -0.05) (end -3.3 0) (layer "F.SilkS") (width 0.1) (tstamp 99a4b0e9-7709-4e30-951f-da84790ac9ee))
(fp_line (start 8.945 -5.1) (end 8.945 5.1) (layer "F.CrtYd") (width 0.1) (tstamp 16d5a53e-ec8c-4b38-a15d-f4129759a793))
(fp_line (start -3.865 -5.1) (end 8.945 -5.1) (layer "F.CrtYd") (width 0.1) (tstamp 3e7d31d4-19a4-4360-986a-074ddf6c3db9))
(fp_line (start 8.945 5.1) (end -3.865 5.1) (layer "F.CrtYd") (width 0.1) (tstamp c390529d-3816-4f96-a371-9d258829699f))
(fp_line (start -3.865 5.1) (end -3.865 -5.1) (layer "F.CrtYd") (width 0.1) (tstamp cf3e6978-a52d-4451-a893-8a987aef2124))
(fp_line (start 7.945 -4.1) (end 7.945 4.1) (layer "F.Fab") (width 0.1) (tstamp 3afb6118-e704-4dfd-be24-64bc25aeb3c6))
(fp_line (start -2.865 4.1) (end -2.865 -4.1) (layer "F.Fab") (width 0.1) (tstamp 6f521d38-c16f-44df-9d9b-fdf9174828fa))
(fp_line (start -2.865 -4.1) (end 7.945 -4.1) (layer "F.Fab") (width 0.1) (tstamp 8f1461ae-0629-4c9d-af90-74ecf63b6705))
(fp_line (start 7.945 4.1) (end -2.865 4.1) (layer "F.Fab") (width 0.1) (tstamp b451bb82-f9cd-44ae-be00-9d496641b471))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 54 "GND") (pinfunction "1") (pintype "passive") (tstamp 10247984-cdc7-40b1-be21-02003b50219c))
(pad "2" thru_hole circle locked (at 5.08 0 90) (size 1.65 1.65) (drill 1.1) (layers *.Cu *.Mask)
(net 13 "12V") (pinfunction "2") (pintype "passive") (tstamp 4923f8f0-83f9-478c-83c7-8583fbc6dbb5))
(model "C:\\SamacSys_PCB_Library\\KiCad\\SamacSys_Parts.3dshapes\\0398800302.stp"
(offset (xyz 2.910000042 4.05000013 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile" (layer "F.Cu")
(tedit 5A4E1404) (tstamp facc5765-83c1-43db-a289-5954c4b5b728)
(at 52.95 68.75 -90)
(descr "1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile")
(tags "DIP Switch SPST Slide 7.62mm 300mil LowProfile")
(property "Sheetfile" "ANET_ATX.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063884b93")
(attr through_hole)
(fp_text reference "SW1HWSTART1" (at 3.81 -3.11 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d49bc80b-95a5-4927-8536-255941f545e9)
)
(fp_text value "SW_DIP_x01" (at 3.81 3.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c21efbbe-8664-4e48-9ebe-a75f468fe779)
)
(fp_text user "on" (at 4.485 -1.3425 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 57cc11ab-9a3d-4f87-bb31-ae80a3e3e2ea)
)
(fp_text user "${REFERENCE}" (at 6.39 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 9d66cf8c-18c2-45c5-ba44-9dc118dbde1d)
)
(fp_line (start 2 0.325) (end 3.206667 0.325) (layer "F.SilkS") (width 0.12) (tstamp 0314656a-4ef9-4409-b845-d633c9b495cb))
(fp_line (start 5.62 0.635) (end 5.62 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 04eadef5-c033-4298-9b0f-64298c25efa5))
(fp_line (start 2 0.635) (end 5.62 0.635) (layer "F.SilkS") (width 0.12) (tstamp 05b96180-b0a6-4ade-ba3a-85af297ecb8c))
(fp_line (start 2 -0.395) (end 3.206667 -0.395) (layer "F.SilkS") (width 0.12) (tstamp 0759fe77-b037-4542-8de7-500636d5efc5))
(fp_line (start 2 -0.635) (end 2 0.635) (layer "F.SilkS") (width 0.12) (tstamp 07f963ed-47ba-4e79-a065-acd7c50e87bc))
(fp_line (start 2 -0.275) (end 3.206667 -0.275) (layer "F.SilkS") (width 0.12) (tstamp 0b380030-76f8-4146-9c45-1798b4e1f298))
(fp_line (start 0.4 1.04) (end 0.4 2.11) (layer "F.SilkS") (width 0.12) (tstamp 14ddde59-3ef7-4f36-bd9a-ce3623c8606a))
(fp_line (start 2 0.205) (end 3.206667 0.205) (layer "F.SilkS") (width 0.12) (tstamp 36b22a91-bceb-425b-811e-2e6624b34b80))
(fp_line (start 2 -0.155) (end 3.206667 -0.155) (layer "F.SilkS") (width 0.12) (tstamp 41a51461-9b4d-459d-845a-78380e41407e))
(fp_line (start 3.206667 -0.635) (end 3.206667 0.635) (layer "F.SilkS") (width 0.12) (tstamp 469c89c1-15de-4a7f-8406-665d75eed775))
(fp_line (start 7.221 -2.11) (end 7.221 -0.99) (layer "F.SilkS") (width 0.12) (tstamp 483a689b-887b-4946-bf9d-6493adf406ef))
(fp_line (start 2 0.085) (end 3.206667 0.085) (layer "F.SilkS") (width 0.12) (tstamp 5557b782-e3ec-4d16-9139-56874bc58d71))
(fp_line (start 7.221 0.99) (end 7.221 2.11) (layer "F.SilkS") (width 0.12) (tstamp 63752460-e2b2-4c7b-ad7c-37a60bc26e6e))
(fp_line (start 2 -0.515) (end 3.206667 -0.515) (layer "F.SilkS") (width 0.12) (tstamp 68e50770-ee14-4625-8261-8453ade78f3e))
(fp_line (start 0.4 -2.11) (end 7.221 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 73e35993-1cf5-43ad-9275-cb60d41d72e7))
(fp_line (start 0.16 -2.35) (end 0.16 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 766e047b-d165-48a1-9a74-6a232b815354))
(fp_line (start 0.16 -2.35) (end 1.543 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 963f189b-429a-4cda-bcd4-4326593de58f))
(fp_line (start 2 0.445) (end 3.206667 0.445) (layer "F.SilkS") (width 0.12) (tstamp af1d3618-36de-4c74-ac82-710cd3fd59aa))
(fp_line (start 2 0.565) (end 3.206667 0.565) (layer "F.SilkS") (width 0.12) (tstamp bc5b6a41-ed44-4158-9d5f-00af76ada20f))
(fp_line (start 0.4 2.11) (end 7.221 2.11) (layer "F.SilkS") (width 0.12) (tstamp c7cf9cfd-1405-492c-80ed-10bb11c1ba7a))
(fp_line (start 0.4 -2.11) (end 0.4 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d4978326-c5af-4387-8951-e342a0cc30b5))
(fp_line (start 2 -0.035) (end 3.206667 -0.035) (layer "F.SilkS") (width 0.12) (tstamp e8d30f97-8798-4592-9d76-0a053692d6db))
(fp_line (start 5.62 -0.635) (end 2 -0.635) (layer "F.SilkS") (width 0.12) (tstamp f008ed35-7d18-4454-86a8-f148c1a6661a))
(fp_line (start 8.7 2.4) (end 8.7 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp 1348588d-e01d-46f3-ab7a-2e3669169a8b))
(fp_line (start -1.1 2.4) (end 8.7 2.4) (layer "F.CrtYd") (width 0.05) (tstamp 6ad60bd4-3ac5-40a3-8654-5a556c08f8d6))
(fp_line (start 8.7 -2.4) (end -1.1 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp d0260386-edf9-4812-baee-6543bce79c8b))
(fp_line (start -1.1 -2.4) (end -1.1 2.4) (layer "F.CrtYd") (width 0.05) (tstamp d785505c-aeac-46a1-8544-0df4e0fb38ac))
(fp_line (start 1.46 -2.05) (end 7.16 -2.05) (layer "F.Fab") (width 0.1) (tstamp 01ef2135-d3fe-4f13-abbd-35e3cf8ecc3d))
(fp_line (start 2 -0.235) (end 3.206667 -0.235) (layer "F.Fab") (width 0.1) (tstamp 07920fe9-79de-44aa-9987-927df257d4cc))
(fp_line (start 2 -0.635) (end 2 0.635) (layer "F.Fab") (width 0.1) (tstamp 11747a0b-bc38-4bf4-8115-acc52562a2be))
(fp_line (start 2 0.265) (end 3.206667 0.265) (layer "F.Fab") (width 0.1) (tstamp 2baa21f8-843e-4b90-bc4a-2338ee2a7acd))
(fp_line (start 2 0.465) (end 3.206667 0.465) (layer "F.Fab") (width 0.1) (tstamp 32137812-638c-42cf-80a9-007887674b64))
(fp_line (start 7.16 -2.05) (end 7.16 2.05) (layer "F.Fab") (width 0.1) (tstamp 32b6e886-daa5-410f-aca6-5b660dce48a4))
(fp_line (start 2 0.065) (end 3.206667 0.065) (layer "F.Fab") (width 0.1) (tstamp 3e32fd65-16e2-4a94-a8ad-36eb8e80eebd))
(fp_line (start 2 -0.535) (end 3.206667 -0.535) (layer "F.Fab") (width 0.1) (tstamp 5d15ecf4-a60e-431f-a5da-761ef051cd3f))
(fp_line (start 0.46 -1.05) (end 1.46 -2.05) (layer "F.Fab") (width 0.1) (tstamp 6405784d-2eef-4641-82c2-074284c789a6))
(fp_line (start 0.46 2.05) (end 0.46 -1.05) (layer "F.Fab") (width 0.1) (tstamp 6f92abe6-7fc9-4d7f-b84c-0d1995fa83e6))
(fp_line (start 2 0.565) (end 3.206667 0.565) (layer "F.Fab") (width 0.1) (tstamp 7e6d11cc-4f48-4580-965a-ff934233953a))
(fp_line (start 2 0.635) (end 5.62 0.635) (layer "F.Fab") (width 0.1) (tstamp 813b7c10-0938-4a42-a628-bb219b9aefe7))
(fp_line (start 2 -0.035) (end 3.206667 -0.035) (layer "F.Fab") (width 0.1) (tstamp 8351b99b-70d1-497c-9bdf-e7b646fa5d39))
(fp_line (start 7.16 2.05) (end 0.46 2.05) (layer "F.Fab") (width 0.1) (tstamp 93f53989-4fcc-47cb-a8f3-06533fe8403f))
(fp_line (start 2 -0.135) (end 3.206667 -0.135) (layer "F.Fab") (width 0.1) (tstamp a3a22aa4-f017-48fa-9669-9c5a6b93b440))