-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgood-computer.kicad_pcb
More file actions
1097 lines (1075 loc) · 88.8 KB
/
good-computer.kicad_pcb
File metadata and controls
1097 lines (1075 loc) · 88.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(D2-Pad2)")
(net 2 "Net-(R2-Pad2)")
(net 3 "VCC")
(net 4 "unconnected-(U1-Pad21)")
(net 5 "GND")
(net 6 "Net-(C1-Pad1)")
(net 7 "Net-(C2-Pad1)")
(net 8 "Net-(D1-Pad2)")
(net 9 "Net-(D1-Pad1)")
(net 10 "Net-(D2-Pad1)")
(net 11 "unconnected-(U1-Pad4)")
(net 12 "unconnected-(U1-Pad5)")
(net 13 "Net-(U1-Pad27)")
(net 14 "Net-(U1-Pad28)")
(net 15 "Net-(U1-Pad23)")
(net 16 "Net-(U1-Pad24)")
(net 17 "unconnected-(J3-Pad5)")
(net 18 "unconnected-(J3-Pad6)")
(net 19 "unconnected-(U1-Pad6)")
(net 20 "Net-(U1-Pad25)")
(net 21 "Net-(U1-Pad26)")
(net 22 "unconnected-(U1-Pad11)")
(net 23 "Net-(J1-Pad7)")
(net 24 "unconnected-(U1-Pad12)")
(net 25 "Net-(J1-Pad8)")
(net 26 "unconnected-(U1-Pad13)")
(net 27 "Net-(J1-Pad9)")
(net 28 "Net-(J1-Pad10)")
(net 29 "Net-(J3-Pad3)")
(net 30 "Net-(J3-Pad4)")
(footprint "Crystal:Crystal_HC49-U_Vertical" (layer "F.Cu")
(tedit 5A1AD3B8) (tstamp 05f6ac0f-2887-4ccb-ace1-9b219b266bcb)
(at 124.46 71.12)
(descr "Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf")
(tags "THT crystalHC-49/U")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/301e28ed-9488-4d77-8f63-20e5998f82ec")
(attr through_hole)
(fp_text reference "Y1" (at 2.64 3.525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18cd4d9c-a3d4-4fa7-b511-5ce7fa0b9a90)
)
(fp_text value "16MHz" (at 2.64 -3.525) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a428f2d9-26af-41ae-aa60-a051dc944343)
)
(fp_text user "${REFERENCE}" (at 2.44 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a00a0bdf-4846-43bd-a7d4-f7c5eb15c8f8)
)
(fp_line (start -0.685 -2.525) (end 5.565 -2.525) (layer "F.SilkS") (width 0.12) (tstamp 196dc814-2633-4488-b1bb-2a074b288d26))
(fp_line (start -0.685 2.525) (end 5.565 2.525) (layer "F.SilkS") (width 0.12) (tstamp e2f11f7c-64c0-41ac-a11e-05a63e0fe62f))
(fp_arc (start -0.685 2.525) (mid -3.21 0) (end -0.685 -2.525) (layer "F.SilkS") (width 0.12) (tstamp 37a04e62-0345-4beb-bbf2-2a5c7a2e4625))
(fp_arc (start 5.565 -2.525) (mid 8.09 0) (end 5.565 2.525) (layer "F.SilkS") (width 0.12) (tstamp 742a6cfc-19ba-48ce-a8cc-707cb4d918e1))
(fp_line (start 8.4 2.8) (end 8.4 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp 55a86b4d-b5de-4e97-a437-43b3ed82dfe8))
(fp_line (start -3.5 -2.8) (end -3.5 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 7de7661d-370a-4dd9-84c6-c6d3bcd809e9))
(fp_line (start 8.4 -2.8) (end -3.5 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp 8a3dad21-ec62-40e9-bf26-74bd1d510051))
(fp_line (start -3.5 2.8) (end 8.4 2.8) (layer "F.CrtYd") (width 0.05) (tstamp ad08833a-ee27-40dc-a15e-db05e23f88b6))
(fp_line (start -0.56 2) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp 738de27f-02a7-4892-91c9-e9d6723e04ad))
(fp_line (start -0.56 -2) (end 5.44 -2) (layer "F.Fab") (width 0.1) (tstamp b850db4a-e3cf-4e3f-945f-f68c4ddc4de9))
(fp_line (start -0.685 -2.325) (end 5.565 -2.325) (layer "F.Fab") (width 0.1) (tstamp cd683962-ac03-4442-b16d-03c4bd1d59d6))
(fp_line (start -0.685 2.325) (end 5.565 2.325) (layer "F.Fab") (width 0.1) (tstamp d95ad5cd-9f55-453f-a2d0-fa92ca06100a))
(fp_arc (start 5.44 -2) (mid 7.44 0) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp 0863cf51-293f-425d-a1c1-767ccd68e6ab))
(fp_arc (start -0.685 2.325) (mid -3.01 0) (end -0.685 -2.325) (layer "F.Fab") (width 0.1) (tstamp 518da916-e54b-4ffc-9b30-f40bc4673c6c))
(fp_arc (start 5.565 -2.325) (mid 7.89 0) (end 5.565 2.325) (layer "F.Fab") (width 0.1) (tstamp 9f924bf3-1a19-4d0e-a668-6de3421b610c))
(fp_arc (start -0.56 2) (mid -2.56 0) (end -0.56 -2) (layer "F.Fab") (width 0.1) (tstamp b85201a2-8c93-49ab-b106-40e4c7db4630))
(pad "1" thru_hole circle locked (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 51ad26da-41a9-47d6-a4b8-0610cd2e8850))
(pad "2" thru_hole circle locked (at 4.88 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 68b90959-1929-4426-9d83-0eaee154fb24))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_HC49-U_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 112c1e9e-55d1-4be9-bdec-64beb65e30e8)
(at 121.96 76.2)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/36159bbd-f151-43f5-98d8-3147f3cef6f6")
(attr through_hole)
(fp_text reference "C1" (at 1.280457 1.990385) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1129f332-b738-4d45-b592-df0445a2356f)
)
(fp_text value "22" (at 1.25 2.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fd907f1-934f-4c27-b42e-b715a74ca6b0)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp cf784d47-b3bc-4964-b661-86ebe55c9e95)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp ecb25cb2-1517-4233-9b9e-b3215c72d68f))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp ef7a6364-e4ed-4b12-aead-5cb9ae7eaa5e))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3905d421-d154-4127-b9a7-c6caf3a01db5))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 56a3b6a4-f334-437e-ac46-49411b660d97))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp a18b2e2c-3b94-4d48-ae8d-898e83a79b5c))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp c3907f35-4688-4279-adac-64ad30e875c6))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 2629d0e3-d579-4c7e-94f7-8acf34287196))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 4bc45ee7-4966-449c-ab10-df64b00a36fa))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4ef434e0-09ea-4678-95d8-905acbfd637e))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp bd8bc2d1-d1a8-4dc3-93de-4a134779fb4f))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 571d9ab7-67ea-4c7c-8da5-240bdd12a5f7))
(pad "2" thru_hole circle locked (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pintype "passive") (tstamp 49524961-b9d9-4926-8279-3968afbb5674))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 125a38ab-71f7-4362-b439-98b99b456aa2)
(at 132.08 76.2 180)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/3fed7786-5089-4cd4-af0f-fc80a7ec1b5a")
(attr through_hole)
(fp_text reference "C2" (at 1.25 -1.821643) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78229c5b-1523-4896-88a1-80097b5bb8da)
)
(fp_text value "22" (at 1.12659 -2.049999) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 128dacaa-2c53-4d2f-a227-f08c4f9756a3)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp e6b0bf49-eac7-45da-af9b-b775f16eed07)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 5ba05ff0-8a80-4110-a19d-8e144de4890e))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp caf6b4b1-bcae-4fa4-9de4-668725b91b9b))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 5509e6c1-d18c-4669-b87f-2ce5777511f6))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 8173435b-d62b-4ca6-b6b2-07d558bb8d62))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp cba62826-5c8d-45ac-93de-e7b4cb667129))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp f8704b4e-7ad6-4ea4-8409-9b41fbedc2a9))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 2176cfd1-99b6-402d-afe7-ff5fa9cb20b1))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 3b46f5f4-e451-444a-ae86-cc305e08ebb2))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp e8773f9f-fd9a-4128-87e5-3704dd142b8f))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp eb78381e-34ed-4a9b-a86d-44065fd56b08))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pintype "passive") (tstamp 80ce3834-8557-4f0f-b6cd-75fe98cc05de))
(pad "2" thru_hole circle locked (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pintype "passive") (tstamp e4154861-95ca-4fda-8347-a75fe9d9a951))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 3582df5d-f547-46b2-a1ee-b0b50e05df7d)
(at 130.81 81.28 180)
(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" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/e0da3236-42e9-41f7-9421-e30e457a90e2")
(attr through_hole)
(fp_text reference "R2" (at 3.81 2.37 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bae6f08-4e20-410f-b2a9-f3f1e7f8dd45)
)
(fp_text value "4K7" (at 3.81 -2.37 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93d535fe-a8ee-4292-bfff-4057f0107a9a)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4c1ff2c-2dc1-46a4-a685-5b0dc05655e0)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 193311f4-dd77-414a-9189-adace9c7a40b))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1f198058-3b6e-405f-9131-02c0d4611ed9))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 23788854-a9c7-4e9a-b2da-34c21770accf))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b44b792-be3b-4a5c-bc5c-5cfbd803a3e3))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8f76f74f-af86-4245-8ead-c5943820afba))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp b1970839-88f7-4c11-b34e-3af1218bd16f))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 18437911-3278-43a0-ad41-ef62341e383a))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a84c97dc-224b-4aee-818b-6b0092e5b819))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b984f222-1579-46fc-903d-bdc86d11a105))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e28c0c19-bdf5-4efb-ac00-cd607dfaef7b))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 0a637b14-a9fd-4beb-b556-91ec238b744b))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 3d13ba21-2a98-4b31-9c67-b51d7a03e550))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 8d408835-ea1b-4519-8e39-1c758cd9b2e7))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 9e592c61-3bbc-4b71-bd74-7a44c99ac08f))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp b88b922a-23ee-4fb1-af6a-a25630df70f7))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp e028a2bd-05f3-473f-b19b-ef9d6d3e264e))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp c8cd6e95-b33e-4c2d-8865-b53066dad1b0))
(pad "2" thru_hole oval locked (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R2-Pad2)") (pintype "passive") (tstamp de547837-9993-4037-b8fd-62e84a232ff5))
(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 "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 44daded5-62e6-4908-96e2-53322bdd6183)
(at 123.2 85.1)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/8041d656-3099-411a-93ac-691dc40cf67f")
(attr through_hole)
(fp_text reference "U2" (at 3.8 -2.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d762d25-5d7d-41ec-81e6-0eba49512425)
)
(fp_text value "23LC1024-I/P" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cf5f820-729e-4421-8884-825c7ddb82b1)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aacef66d-3cb9-42ed-982b-7098772c9c64)
)
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0479aa28-e997-4a61-890f-8091331789b7))
(fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 092f164e-0c49-4a00-b543-0c0b62990278))
(fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp 210cbf69-3366-4270-b0e6-a520650ccd4f))
(fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 78f20ffa-f0d9-4ce5-adfa-5c2bf64625dd))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bea37f0b-fc78-4a1f-9620-4a7b13408f5a))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4b688d86-3750-4303-9842-79cb822e09a7))
(fp_line (start -1.1 9.15) (end 8.7 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 1dd53d31-90d9-41bf-82db-503be1d683cc))
(fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 6208f730-dba8-447d-9605-884d5617cf69))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp e0bedf96-ea51-4f07-b8dc-ba6865aa3fff))
(fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp eaf97a36-8f15-47ef-b65b-107e4263b9d0))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0cf94adb-5220-4f57-8d03-c62e81c25bc1))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 6ee0925a-5182-49c1-a423-e6ca6500ecee))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 7c111d36-6a04-4575-aee2-2a79285e5ac4))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp a48a1764-f1ef-4762-b54f-2138f7e04076))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp f3bd21aa-0f3b-4e52-84b9-128cda156d38))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R2-Pad2)") (pinfunction "*CS") (pintype "input") (tstamp 8d61ca3b-0bad-4f1a-9c14-5e5354d9b77a))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "Net-(J1-Pad8)") (pinfunction "SO/SIO1") (pintype "bidirectional") (tstamp d5160160-b2f1-4794-a714-f7d8b211568f))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "SIO2") (pintype "bidirectional") (tstamp 90c28eed-e225-4ae9-8645-104d412ce07e))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 1f24ea9e-bb37-4d82-871b-86955a8f207d))
(pad "5" thru_hole oval locked (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "Net-(J1-Pad7)") (pinfunction "SI/SIO0") (pintype "bidirectional") (tstamp b87c1ef3-2b19-4953-a9ed-7f8413e067b0))
(pad "6" thru_hole oval locked (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J1-Pad9)") (pinfunction "SCK") (pintype "unspecified") (tstamp b9dd527f-140b-48a1-a34f-c16e3fb5f91c))
(pad "7" thru_hole oval locked (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "*HOLD/SIO3") (pintype "bidirectional") (tstamp b5b5e88e-efb7-4011-80ab-cd5525715561))
(pad "8" thru_hole oval locked (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp d4145c7c-ed92-44f1-9e21-5dc0432fc6ba))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 478e0884-c424-4332-920e-75ac48ffed1d)
(at 135.9 59.7)
(descr "28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/89a8e170-a222-41c0-b545-c9f4c5604011")
(attr through_hole)
(fp_text reference "U1" (at 3.8 -2.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd5294a-40c8-4e9c-8adf-d3aa6f3d2ff7)
)
(fp_text value "ATmega8A-P" (at 3.81 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbd948ad-37e5-40ac-bb8a-db7b83e71d03)
)
(fp_text user "${REFERENCE}" (at 3.81 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e0075f4-41b2-47ed-a74a-3a8a3128b27e)
)
(fp_line (start 1.16 34.35) (end 6.46 34.35) (layer "F.SilkS") (width 0.12) (tstamp 208034cc-3aa9-425e-99f0-d74355d5b71a))
(fp_line (start 6.46 34.35) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27fa7c4f-00e7-4d34-a411-d500c9726d5d))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5e017112-456f-4ca1-9a40-2f17e6ca58fd))
(fp_line (start 1.16 -1.33) (end 1.16 34.35) (layer "F.SilkS") (width 0.12) (tstamp 7defd2c2-2852-4477-a058-82b17adb8985))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9bbb9b94-5f7d-428c-a871-79f3849972fc))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 68de925b-856b-45ee-bc39-820ac1ebdda0))
(fp_line (start -1.1 34.55) (end 8.7 34.55) (layer "F.CrtYd") (width 0.05) (tstamp 0c546797-bd0c-4c14-9b9d-9ecea1f57fe9))
(fp_line (start 8.7 34.55) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 3a0320e4-c3fb-40f2-99e6-81c8c41c5977))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 74fd6a00-3246-4cb5-ae8b-4fbf6af5d527))
(fp_line (start -1.1 -1.55) (end -1.1 34.55) (layer "F.CrtYd") (width 0.05) (tstamp 8db0005c-cfdb-45c3-8829-6456e9645343))
(fp_line (start 6.985 34.29) (end 0.635 34.29) (layer "F.Fab") (width 0.1) (tstamp 4a7f27a5-64d7-47d6-83f3-3f2211c0a00f))
(fp_line (start 6.985 -1.27) (end 6.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 61e4c738-7c4b-4703-9b07-971e2be14bc3))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7efe7a40-0398-4f3f-9643-bd5d0e885df1))
(fp_line (start 0.635 34.29) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp cbc0c215-3919-4b58-92dd-3d53baaf2f42))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f8b0386d-ea47-4b5a-914c-a5d4b874cdd1))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pinfunction "PC6/~{RESET}") (pintype "bidirectional") (tstamp d2da610a-d0a6-442f-a92f-f9cd3ef829a6))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "Net-(J3-Pad3)") (pinfunction "PD0") (pintype "bidirectional") (tstamp a7eeb678-71a1-4460-b159-9614578650a9))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "Net-(J3-Pad4)") (pinfunction "PD1") (pintype "bidirectional") (tstamp c6a9f583-889d-44f3-81c6-b2335e6ab54f))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "unconnected-(U1-Pad4)") (pinfunction "PD2") (pintype "bidirectional") (tstamp d3fbd990-87bb-46f1-80c2-c94f40e7ac1a))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "unconnected-(U1-Pad5)") (pinfunction "PD3") (pintype "bidirectional") (tstamp 1e787ea0-7def-4866-af95-5376d2f0f31f))
(pad "6" thru_hole oval locked (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "unconnected-(U1-Pad6)") (pinfunction "PD4") (pintype "bidirectional") (tstamp 9da45774-0f9d-4860-9ac7-3509f6c12160))
(pad "7" thru_hole oval locked (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 17d9a995-ecb9-413b-8cd1-1826842d21f6))
(pad "8" thru_hole oval locked (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0b2b0de5-33e1-4b8f-b4e5-b89855e41cae))
(pad "9" thru_hole oval locked (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pinfunction "PB6/XTAL1") (pintype "bidirectional") (tstamp aff893e2-36a1-4eec-8b99-4b12bcc5f9e0))
(pad "10" thru_hole oval locked (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pinfunction "PB7/XTAL2") (pintype "bidirectional") (tstamp 5a7b590a-12bc-47c6-b0a3-031aa6d21d2b))
(pad "11" thru_hole oval locked (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-Pad11)") (pinfunction "PD5") (pintype "bidirectional") (tstamp db91bdd5-6c5c-448c-8c8a-3bc3682e2979))
(pad "12" thru_hole oval locked (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "unconnected-(U1-Pad12)") (pinfunction "PD6") (pintype "bidirectional") (tstamp 3313fb54-49d5-4bbd-8b5c-09568fc0a8c0))
(pad "13" thru_hole oval locked (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-Pad13)") (pinfunction "PD7") (pintype "bidirectional") (tstamp ca705846-9ccb-4c30-a1be-94f195c427d0))
(pad "14" thru_hole oval locked (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(D1-Pad2)") (pinfunction "PB0") (pintype "bidirectional") (tstamp 5fd224c5-a2d6-4943-8f4d-31ddcca476d5))
(pad "15" thru_hole oval locked (at 7.62 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(D2-Pad2)") (pinfunction "PB1") (pintype "bidirectional") (tstamp e5f77f02-d765-4792-999e-5fbbf35d5ea6))
(pad "16" thru_hole oval locked (at 7.62 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R2-Pad2)") (pinfunction "PB2") (pintype "bidirectional") (tstamp 4db551a9-b63d-4e0b-bd69-86134ea10c12))
(pad "17" thru_hole oval locked (at 7.62 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "Net-(J1-Pad7)") (pinfunction "PB3") (pintype "bidirectional") (tstamp d35bcff9-9493-4119-a908-340570ed05c6))
(pad "18" thru_hole oval locked (at 7.62 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "Net-(J1-Pad8)") (pinfunction "PB4") (pintype "bidirectional") (tstamp fd936e50-dc98-4705-8a97-f48da9bb902c))
(pad "19" thru_hole oval locked (at 7.62 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J1-Pad9)") (pinfunction "PB5") (pintype "bidirectional") (tstamp e69fe6f7-93be-45d8-8a3c-4afe5b117ec8))
(pad "20" thru_hole oval locked (at 7.62 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "AVCC") (pintype "power_in") (tstamp 27e1a132-15e8-4d89-8bec-10d2da87d12a))
(pad "21" thru_hole oval locked (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "unconnected-(U1-Pad21)") (pinfunction "AREF") (pintype "passive") (tstamp 3fd963f9-f1b8-4a9b-b015-4458d9c54768))
(pad "22" thru_hole oval locked (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "AGND") (pintype "power_in") (tstamp aeb4e560-a866-4783-b2f4-7e3450c7b360))
(pad "23" thru_hole oval locked (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(U1-Pad23)") (pinfunction "PC0") (pintype "bidirectional") (tstamp a04c1177-7d70-46e0-a40a-f4dacc4faa69))
(pad "24" thru_hole oval locked (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(U1-Pad24)") (pinfunction "PC1") (pintype "bidirectional") (tstamp 417ea18f-19c4-47b9-9589-91abf32fb3da))
(pad "25" thru_hole oval locked (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(U1-Pad25)") (pinfunction "PC2") (pintype "bidirectional") (tstamp cea6ec3f-358e-4a91-9795-f074b0783a0c))
(pad "26" thru_hole oval locked (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(U1-Pad26)") (pinfunction "PC3") (pintype "bidirectional") (tstamp 6a9d7216-a96c-46ce-8210-3acc19f63a00))
(pad "27" thru_hole oval locked (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(U1-Pad27)") (pinfunction "PC4") (pintype "bidirectional") (tstamp f49d73f9-0bb4-4084-85fa-057f97278c99))
(pad "28" thru_hole oval locked (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(U1-Pad28)") (pinfunction "PC5") (pintype "bidirectional") (tstamp 6f9cd7e5-d86a-4068-9790-c787286b1eba))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x12_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 5a9572f4-a26a-465f-9f82-71b0d3b0dd01)
(at 157.48 50.8)
(descr "Through hole straight pin header, 1x12, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x12 2.54mm single row")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/1acc8e98-fc92-4c3d-a243-1764f683950a")
(attr through_hole)
(fp_text reference "J1" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 764c05c8-58ad-43ae-8a1b-909fc8d4896a)
)
(fp_text value "IO" (at 0 30.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61e20e83-d3d1-49c8-b17a-c07b70f97915)
)
(fp_text user "${REFERENCE}" (at 0 13.97 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 604ee6b3-a4b0-4972-9b91-e93db2eef6f3)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 090422ac-de2d-4cf7-888e-bb220c5f2e88))
(fp_line (start 1.33 1.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 990ac0db-e852-4388-9676-1846abc2eb8e))
(fp_line (start -1.33 29.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp b4ed7dc7-c8b2-4a80-83ef-8e5c02f56dc0))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ca5a19ec-7320-42e8-8209-79e2b4556fc4))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d9258668-4634-4cac-a346-a99ce581e5c0))
(fp_line (start -1.33 1.27) (end -1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp f9801a89-ec19-45ba-be46-2505f1014928))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5c4c133b-e2de-4136-8e99-2d1c3090a2e0))
(fp_line (start 1.8 29.75) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 93d0730f-1c3d-4892-b463-5ce62a7b3d4c))
(fp_line (start -1.8 29.75) (end 1.8 29.75) (layer "F.CrtYd") (width 0.05) (tstamp bff9ac03-e540-4774-ada7-74062000db5a))
(fp_line (start -1.8 -1.8) (end -1.8 29.75) (layer "F.CrtYd") (width 0.05) (tstamp c8dc2203-336a-4c07-b644-011a25f77bf3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 10203580-909c-4eb4-a37a-938e5ed31e57))
(fp_line (start 1.27 29.21) (end -1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp 32c4e63b-2d3c-44aa-ae0f-802ea533ade5))
(fp_line (start -1.27 29.21) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 51a5e0d1-2244-4930-b53a-b07f4dec2edf))
(fp_line (start 1.27 -1.27) (end 1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp a88ba18e-8285-4c43-92d8-d529b2d3ec9d))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp e0782be3-b541-45d9-9d10-786fd6580206))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(U1-Pad23)") (pinfunction "Pin_1") (pintype "passive") (tstamp 19095ae5-6d21-4bf1-a214-2dfa613f8dd5))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(U1-Pad24)") (pinfunction "Pin_2") (pintype "passive") (tstamp 6f64f8e1-52df-4952-a398-2bfa955b17c5))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(U1-Pad25)") (pinfunction "Pin_3") (pintype "passive") (tstamp 6f61cb2e-2372-483f-9f92-9c97ed923d9c))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "Net-(U1-Pad26)") (pinfunction "Pin_4") (pintype "passive") (tstamp 7240d2da-d61c-45a4-a9ad-7459c324eb0c))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(U1-Pad27)") (pinfunction "Pin_5") (pintype "passive") (tstamp 85fef594-57d2-464e-8e44-e52fafd83066))
(pad "6" thru_hole oval locked (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(U1-Pad28)") (pinfunction "Pin_6") (pintype "passive") (tstamp 63c66f7e-5614-4793-b470-0fa68cdefd91))
(pad "7" thru_hole oval locked (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "Net-(J1-Pad7)") (pinfunction "Pin_7") (pintype "passive") (tstamp ee22e6cc-4619-4836-a176-be1396e37af6))
(pad "8" thru_hole oval locked (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(J1-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 14308721-574b-40a7-af41-e746cacc85d5))
(pad "9" thru_hole oval locked (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "Net-(J1-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 4b7981b4-e3a4-4379-a331-07939cef8699))
(pad "10" thru_hole oval locked (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 05ebe16c-8c0a-410a-acaf-6f005927575c))
(pad "11" thru_hole oval locked (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_11") (pintype "passive") (tstamp 1da9b01b-2c1a-4f96-8861-c0ae2f75a1f2))
(pad "12" thru_hole oval locked (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 6e05a547-6691-433f-b263-8939d6a0bcc0))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x12_P2.54mm_Vertical.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")
(tedit 5AE5139B) (tstamp 6a8137c1-163a-49cf-bde5-39f0f926c36e)
(at 148.59 77.47 90)
(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" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/9492c999-f666-437e-8cd8-89b4fb524635")
(attr through_hole)
(fp_text reference "R3" (at 3.81 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46902f1c-b8ae-465f-b6a4-4e108b25239f)
)
(fp_text value "220" (at 3.81 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b3d3943-b856-4650-994f-f4de7cd72fc5)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bea35c00-6535-4bc9-8d1f-1bc334b6bcb7)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 048c9335-6615-4fe1-b210-c5621bed4995))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 1227aa7f-025f-4c5f-aa3e-6b6cbdd1db6b))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5505d231-e9ea-424d-bddf-c6166213f682))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 63875476-d1bb-43b8-b3f5-50e707f23372))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 923a3ae1-959e-4691-8366-1ec44732c22b))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp c1584412-1b0f-4e47-9e62-f001be4cc2c6))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 105e2046-30e1-4991-8b05-5157607ebdbd))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 361e0f1c-9a4c-4a3b-9e43-34cf88a56a38))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 79231e7a-cc73-4475-8d97-a629fa0a8334))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp aa964e4e-3aef-4a75-b7dc-6150985cd688))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 0e2d0194-4fed-44ec-ab02-1267c4d8a68d))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1c28e66f-65a4-46b8-bd05-a38e784ccce5))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 2458d0bd-994a-45b0-950b-be2a40092e85))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 4c9bd2cb-3eb7-431d-8ed4-958bc92000d2))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp d6e2e1a2-3a88-4d3c-a85f-7dcb5c2940e6))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp fb8e7ec1-739a-458f-a5fc-eca6f2ce0679))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(D1-Pad1)") (pintype "passive") (tstamp b48dab5b-096a-42cd-a0ab-be225dcdcc3d))
(pad "2" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pintype "passive") (tstamp 1baa75b4-d85f-44a0-9d9e-ae038c58d6a3))
(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 "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 6f521767-49f6-4649-817a-c4292d2d7262)
(at 149.15 89.19)
(descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "tact sw push 6mm")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/91dbcd0d-76c6-4a97-8c5d-d22b967b820e")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4290491-d4a3-4e36-bb5e-68c4542bd408)
)
(fp_text value "RESET" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb93b9ca-74de-4315-9b3a-4d6819772d89)
)
(fp_text user "${REFERENCE}" (at 0.25 5.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1a6a96f-78aa-41cc-ace6-4fda09f7fca4)
)
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp 6b5fbf75-33fd-4a3f-bd89-8eba043538f1))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp c11be2c5-d98f-4865-9bc1-f143d4b0689c))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp def01f55-4a60-4e35-b2e9-e3f7c2a72eaa))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp fb41b8e7-391c-4ecc-b638-81df822c1722))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 16e3ec7d-e33a-47ef-8ff0-29bb451c2567))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 25154f0b-b837-4280-9c71-0e88b372ec56))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2a092264-7ad7-4d80-8ef9-9eb76340ebe1))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 5a05b352-2f93-42f1-af65-146b90c74b2e))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 69db4734-e964-4b55-8f1e-0e4db8a14bd6))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 6f328520-7a62-4c0a-8ab7-6cc1358e2481))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 752ae945-37b9-46f2-b2ab-15a10a6ed3f5))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 86ec54c7-1938-400f-aaf4-d80d7542b6e0))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp ca735e65-f20e-4344-beaf-f8bdfd10ed12))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp dd96ee2f-2dde-4331-a507-efc42cf9e61c))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp f4fb83aa-2665-4ef1-84fb-afe011262a6e))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f5d58277-5e4a-47a9-b0ba-57ba4a469c2a))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 46542ef7-5d4f-482b-8670-044214558178))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 5c8a7819-0202-48cb-9afc-29530ca0f5f3))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 7f3b5dce-0380-4994-947c-210324e25844))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp e5697c54-84b8-475d-96cf-314b748f14f0))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp ee425fed-8e9a-438c-a449-12e0a93cbd10))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp dc765a4c-e177-4e4b-9cd1-496821f868b9))
(pad "1" thru_hole circle locked (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "1") (pintype "passive") (tstamp 00e433ed-2d24-4cf1-b06c-bc4ba841647f))
(pad "1" thru_hole circle locked (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "1") (pintype "passive") (tstamp e5204f31-1cd8-49ba-99ec-42a58832ec28))
(pad "2" thru_hole circle locked (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pinfunction "2") (pintype "passive") (tstamp b6548eec-e66e-49ee-84e4-db48c2b42e65))
(pad "2" thru_hole circle locked (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pinfunction "2") (pintype "passive") (tstamp ede550bc-a3a4-4969-bb32-89da9f262c85))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm" (layer "F.Cu")
(tedit 5995936A) (tstamp 773ea289-2ea8-4dad-a616-30a00b2685df)
(at 154.94 83.82)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/bdef3107-d818-4871-82f9-52505c1a5777")
(attr through_hole)
(fp_text reference "D2" (at -0.010385 -3.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af600d28-07b9-4515-9902-769ea293c884)
)
(fp_text value "LED" (at 1.27 3.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4551cab4-be42-483d-af56-7e5920e5d98a)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp e3181dc1-2b37-4036-b7ed-923009f9e288)
)
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer "F.SilkS") (width 0.12) (tstamp c8da2273-e004-49d2-a64e-f67c94a856cb))
(fp_arc (start 4.26 -0.000462) (mid 2.072002 2.880433) (end -1.29 1.54483) (layer "F.SilkS") (width 0.12) (tstamp 53b6ef7d-41ee-4ddf-bb74-19efa42371d6))
(fp_arc (start -1.29 -1.54483) (mid 2.072002 -2.880433) (end 4.26 0.000462) (layer "F.SilkS") (width 0.12) (tstamp 802af83d-3987-42ad-80d3-c585ef056250))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a5c0c779-a169-45a6-a475-54d4b20361ea))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 2d5dccf2-8428-472c-a412-9ff77f06a164))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 5a0907e0-2775-42f9-82e9-a2d99e3500bd))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp abed3ff4-dfd7-438d-a93b-3e8b641a6c0d))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer "F.CrtYd") (width 0.05) (tstamp baa82a05-df0d-483a-a33e-76f6733724ed))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp c2c978f0-9a06-47b4-8841-74e4868c7697))
(fp_arc (start -1.23 -1.469694) (mid 4.17 0.000016) (end -1.230016 1.469666) (layer "F.Fab") (width 0.1) (tstamp 354354af-e502-4386-833a-25a430014bff))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fd6c49ad-0572-46ea-a667-ef11fedce7d7))
(pad "1" thru_hole rect locked (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 10 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp c6f641ac-158f-4339-a8a5-46709045f574))
(pad "2" thru_hole circle locked (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp f792477b-3573-42d3-9cfa-4d0111bc48f9))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm" (layer "F.Cu")
(tedit 5995936A) (tstamp a039a2b8-4f7c-41eb-a9dd-d53d60a08d75)
(at 149.86 83.82 180)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/f05f0d5c-b6a6-4469-ab60-fa1f26b443e4")
(attr through_hole)
(fp_text reference "D1" (at 1.259121 3.771178 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c924706-7922-4a14-80c3-9c97ccb87328)
)
(fp_text value "LED" (at 1.27 -3.96 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77d1940f-ce82-4c01-9086-94b02e1d79af)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp 8df71c70-9b82-4524-aeed-2219d5116b61)
)
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer "F.SilkS") (width 0.12) (tstamp b2afe16a-8de5-41dd-8c6d-e49cf4e62ea5))
(fp_arc (start 4.26 -0.000462) (mid 2.072002 2.880433) (end -1.29 1.54483) (layer "F.SilkS") (width 0.12) (tstamp a089dd5e-9d58-44f5-b0a8-3ff38682adab))
(fp_arc (start -1.29 -1.54483) (mid 2.072002 -2.880433) (end 4.26 0.000462) (layer "F.SilkS") (width 0.12) (tstamp a3e8e3a6-015a-4147-8228-6709bf7e29b8))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp bb099b27-50ad-452b-8f10-116fd79242dd))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 2b3220f1-e062-4138-90ed-c57cccdabd12))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 768b1ee0-1258-47a2-a2fe-8b8ce0a741a7))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 9efe759d-26bf-4e84-93bb-54626e059520))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp a25282a9-3b5b-4745-b4f2-da2a4e9396fb))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp 63b67180-114d-4dcf-b360-8843c5a8216d))
(fp_arc (start -1.23 -1.469694) (mid 4.17 0.000016) (end -1.230016 1.469666) (layer "F.Fab") (width 0.1) (tstamp 8136f602-9d97-4c61-823f-682889d61935))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp f6f71d2b-ed41-4037-8e70-a6a4205c9cdd))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 9 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 5f4cb0e9-1bfd-455f-8e2d-fe0ad19e5250))
(pad "2" thru_hole circle locked (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 8 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 1ed345ef-d33b-409c-944f-8bd47da3a556))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp a8889b85-4124-421b-b603-307701e01e84)
(at 134.62 50.8 90)
(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" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/9fb9bd77-885e-4b30-8901-8dbe4cdf6d0c")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03b73cec-10d0-4ffa-8fb4-ee991b11efa8)
)
(fp_text value "ISP" (at 0 12.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf8d96c8-112f-4cbb-8383-b02503726208)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 353dcdae-6e2a-4133-847e-60411784930b)
)
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 54d2cce8-5e37-4353-b410-6cb05485795e))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 636fcc79-b6b9-4a6e-8f6d-f0a8255dc840))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 6c1363f2-1824-4683-9d3b-dcc4d2c2f137))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 8b455869-84d2-4ee3-aa5d-b5ec71f4ad35))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a01f7c69-4e60-430f-881b-1b69b4540d5f))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp db0164fb-3c29-41dd-98b5-2167b1705e21))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 048a90f3-06c8-42a2-90e0-1dde379bb400))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 710c04b8-031c-4683-882a-427921ff9e2d))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 731c548f-1071-4990-a2ea-2c879c80f663))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d7586e2b-8e00-42aa-8170-94ab215a966a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5971f544-331c-4b29-9310-aa2fba40e502))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 84a523bf-716f-481e-81f8-918f50b3edfa))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a7f80ca6-12a2-4677-8967-4a3afc2ed123))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp cc6a6cc7-595e-445a-8abf-128c26f8f5fc))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp f8805386-c881-4814-8b63-39a9b3333c25))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "Net-(J1-Pad7)") (pinfunction "Pin_1") (pintype "passive") (tstamp a2097ba7-9321-4dfa-ab93-fed0fbc64db8))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(J1-Pad8)") (pinfunction "Pin_2") (pintype "passive") (tstamp 76d3d76c-b95d-4194-b876-61c4607c49a8))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "Net-(J1-Pad9)") (pinfunction "Pin_3") (pintype "passive") (tstamp 2c6015ea-aab3-4f41-95ff-d3c6c11e3248))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pinfunction "Pin_4") (pintype "passive") (tstamp a3035dfb-8088-4055-95ea-2864de3fec48))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 590f21f9-0ac3-40f2-80c5-b3597d32d1d6))
(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 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp ef1482c7-1f7c-4b15-b3ea-ecefeb8c3db7)
(at 152.4 77.47 90)
(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" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/2c7424a5-16db-46d3-9ff8-6855b8646ba1")
(attr through_hole)
(fp_text reference "R4" (at 3.81 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6ae0abf-73aa-4c19-8cb1-71575f5262c4)
)
(fp_text value "220" (at 3.81 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05fa8752-f394-4c0d-b638-ae8acbe8dc27)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ab8fe6d-7d6a-4028-88d2-a914b2f42ca5)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2ed9183c-1282-4192-878e-b42b5d34fad7))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5edeba4c-84ca-4f53-8a35-23025c811432))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 61001fbd-767a-4c4b-9b90-8f7ffdb371f9))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp a3e99e39-ed09-4c2d-86b8-f2af3ddb9554))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp aaa1319b-5452-42be-9546-e9d68afdedbf))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp daace8e4-e9f0-40b3-bcf0-0fa58655fe5e))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b030845-c0b5-470e-8ba8-000bf8d7ded6))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 406a2507-642c-47b0-831d-6b2d68f29244))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp be34bc4c-068b-4589-b716-5b6cc3667ab1))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ea94c4b8-4744-4559-9204-4cd9ebbbe008))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 31cf8c36-4360-4fbe-8fbc-aec752c2987d))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 38983331-c262-4bcf-b93b-be3585b8d7ba))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 6208238b-1acf-47e6-97fc-3bd9ef399d45))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp a730b2e7-1ab8-4a3b-a779-5cbcf0f5fe97))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp d48fcec4-0f02-431b-82e6-222eed62eeb6))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp f9f63ee3-19d9-4b43-a1dd-d33705ab9e86))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(D2-Pad1)") (pintype "passive") (tstamp 3c275ef5-ea88-4e8e-b5f6-4b78b190554b))
(pad "2" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "GND") (pintype "passive") (tstamp eddc78ce-2f02-4eb0-9b0e-55bc69e9acde))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp f47a1d4e-6def-439b-b175-90a6157f9aed)
(at 127 64.77 180)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/2905abe5-2fe8-4b54-bc74-fd951dcb9030")
(attr through_hole)
(fp_text reference "J3" (at 2.292223 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d43d8c61-5ec0-4750-8aed-a901a3cc3fb3)
)
(fp_text value "CH304Ex" (at 0 15.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e74c80db-23bd-4118-8a54-b0a922f02ac1)
)
(fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5880301c-37cc-4e3f-ad23-30e3b843b71d)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6fa7a4de-ff5e-4b0e-a794-094bd75acade))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 820d2608-3714-4107-ae83-04a1e7ca3b28))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 8f98572b-7aa6-40ce-94a3-97443b6c06a8))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp ac1a4df2-3526-4a7e-b44e-90913291a650))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b2688f98-2c6e-48b9-a6dc-502dc4ae43c0))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp ed52b045-c7c9-494c-8c2a-d63e5d4584dc))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 219c117c-41a5-4e6e-a0c8-02b4e876b455))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 574cd8a9-ce26-4148-ad7a-e12e7a1fb9d3))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp d5d62eb0-a31e-448a-9b4a-29d55d511d39))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp d8f55ff6-c2f9-4749-843b-17d5c19e400c))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 07fa1e7b-dd9a-48ee-b6e8-ddc49ae5ecde))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 0bf76221-44fc-43a0-84d6-042085cf7b03))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 36b3b4f1-00c9-4b49-9be0-6931a224e8a7))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 392ecaa3-b8c0-46fc-97f6-682f61816677))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 53b3fedc-92e2-4c74-ae3c-382923eae506))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d53c4d91-666c-48e6-8456-602b871cd052))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 6310fc9b-04fd-4dc0-8b7d-2b2bc02ef7c5))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "Net-(J3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 24858d2a-758f-41f1-8cb1-327213cd5752))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "Net-(J3-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 037258e2-33ce-401a-b5f0-7446ceb77e79))
(pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "unconnected-(J3-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp b8113fd3-e769-487c-8b6b-45ed30c9e194))
(pad "6" thru_hole oval locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "unconnected-(J3-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 5fe0b797-ce2f-4a19-b101-1bda4a354487))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.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")
(tedit 5AE5139B) (tstamp fcc644a4-3ef3-40d4-8857-0f508100f2b6)
(at 143.51 55.88 180)
(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" "good-computer.kicad_sch")
(property "Sheetname" "")
(path "/63f72fb6-057e-49fb-a311-7ec06308091e")
(attr through_hole)
(fp_text reference "R1" (at 3.81 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e29938d-de78-4528-96f4-bbd44633a87a)
)
(fp_text value "4K7" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3a95142-c9e7-4ce3-bc5d-f9f996df219c)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 982901eb-cea0-46d5-b89d-ced14de77069)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 05c5b651-2071-45eb-867f-a9c41ff81d3a))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 7fcd550e-d801-4b47-86cb-159c039b650d))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 85e6fb11-ce2d-410f-ac08-9e5719f9d665))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9fd5ee94-4b2f-4aa0-a930-16289fa0b99f))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp dfed1519-246d-4fbb-8e39-362e1d3477bf))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp ecccce85-cab9-43f7-b0c3-031d841bf9d2))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3c84c2ed-c4d3-47e4-afbe-c5f8d8586b23))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4281e241-a1e2-496b-8cb5-9093a4106d40))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5d76d34f-155d-41a0-945e-0e2d5914d118))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8dad54c6-bac4-4e69-8c79-6b528454c5ee))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 4fab129b-6426-479e-867f-187bba9943e7))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 6569c301-88e3-4eb3-a815-b8a0e1991d21))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6f46fd83-2bba-4fff-9fdc-cbd6749ef71a))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp afde09bf-1c9c-4b4f-868a-cddd117fe942))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp c2536e97-e48a-495d-b438-802db60f214d))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp fd37c99e-7e7c-4716-85a1-acd2f913855b))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "VCC") (pintype "passive") (tstamp c330b3bc-75d9-4a22-8d6e-0a9cc723e706))
(pad "2" thru_hole oval locked (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(J1-Pad10)") (pintype "passive") (tstamp eb2d31d9-798d-4e6f-9a74-91f421308a25))
(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))
)
)
(gr_rect (start 129.54 67.31) (end 111.76 49.53) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 66d3a7f0-a995-4c10-8945-8ce44810461f))
(gr_rect (start 109.22 48.26) (end 160.02 96.52) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 8dfbecbd-3da1-4c88-856b-7786beab9dd3))
(gr_text "GOOD COMPUTER\nr3 @robn 2022" (at 116.84 81.28 90) (layer "F.SilkS") (tstamp 449ef6e4-6c58-414e-8a49-6c0ed0a23852)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 151.195489 85.044511) (end 156.255489 85.044511) (width 0.25) (layer "F.Cu") (net 1) (tstamp 23578cf5-8aaa-421c-aac5-e38d30d44eb9))
(segment (start 156.255489 85.044511) (end 157.48 83.82) (width 0.25) (layer "F.Cu") (net 1) (tstamp a23780e1-bdf3-4360-887b-7a6b851b9fba))
(segment (start 143.52 92.72) (end 151.195489 85.044511) (width 0.25) (layer "F.Cu") (net 1) (tstamp fad52b54-5fe3-4099-acb1-6d6aa27e0941))
(segment (start 121.625969 93.371986) (end 121.625969 86.674031) (width 0.25) (layer "B.Cu") (net 2) (tstamp 01bb6edc-dc99-4f7d-a9e6-9daa01d77d31))
(segment (start 122.683503 94.42952) (end 121.625969 93.371986) (width 0.25) (layer "B.Cu") (net 2) (tstamp 2491f3e0-848e-4ee8-91a1-04baeca8d3fe))
(segment (start 139.27048 94.42952) (end 122.683503 94.42952) (width 0.25) (layer "B.Cu") (net 2) (tstamp 376ff36d-c43b-4f83-990f-ea570d93b656))
(segment (start 143.52 90.18) (end 139.27048 94.42952) (width 0.25) (layer "B.Cu") (net 2) (tstamp 54e87955-8bdf-4919-be57-9c5c8229d8d8))
(segment (start 121.625969 86.674031) (end 123.2 85.1) (width 0.25) (layer "B.Cu") (net 2) (tstamp bf6b5a86-e685-4332-af79-edced1c6b42b))
(segment (start 123.2 85.1) (end 123.2 81.29) (width 0.25) (layer "B.Cu") (net 2) (tstamp ef6c14c2-90f4-4268-be66-9d8ac087276f))
(segment (start 131.7497 74.94) (end 130.81 75.8797) (width 0.25) (layer "F.Cu") (net 3) (tstamp 1412021d-7b61-4005-9eb7-62e54824bc4d))
(segment (start 130.81 75.8797) (end 130.81 81.28) (width 0.25) (layer "F.Cu") (net 3) (tstamp 421231db-74be-4e51-bc00-778274ec8bbf))
(segment (start 157.48 76.2) (end 153.66 80.02) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5b0a2f61-d874-44cd-a6bf-0ce61c7b13f6))
(segment (start 135.9 74.94) (end 131.7497 74.94) (width 0.25) (layer "F.Cu") (net 3) (tstamp 67a0a55a-9890-4ef7-888e-21f2732cdf26))
(segment (start 153.66 80.02) (end 143.52 80.02) (width 0.25) (layer "F.Cu") (net 3) (tstamp 67e8f63c-be6c-401f-8ac3-9781274e4e92))
(segment (start 139.7 63.5) (end 137.16 66.04) (width 0.25) (layer "B.Cu") (net 3) (tstamp 15a99902-1d02-4ce9-8390-3a1e0df00fae))
(segment (start 153.524511 72.244511) (end 153.524511 69.384211) (width 0.25) (layer "B.Cu") (net 3) (tstamp 334f34da-03c8-4920-9214-b353a8b064eb))
(segment (start 139.7 59.69) (end 139.7 63.5) (width 0.25) (layer "B.Cu") (net 3) (tstamp 54a17f03-44bb-44e7-8f71-f93ed5d34bb5))
(segment (start 153.524511 69.384211) (end 152.7203 68.58) (width 0.25) (layer "B.Cu") (net 3) (tstamp 72bd20d5-53c6-4c2f-8370-92324fd229bc))
(segment (start 137.16 66.04) (end 133.35 66.04) (width 0.25) (layer "B.Cu") (net 3) (tstamp 75bade5e-a47a-483f-8e61-60557be59a7d))
(segment (start 130.82 87.64) (end 125.74 87.64) (width 0.25) (layer "B.Cu") (net 3) (tstamp 7fad85ca-2db6-4fbe-8ca6-3707ccb1148a))
(segment (start 130.82 85.1) (end 130.82 87.64) (width 0.25) (layer "B.Cu") (net 3) (tstamp 90c195f0-ed6b-4397-ab8f-2d78745d201e))
(segment (start 125.74 87.64) (end 123.2 90.18) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9ab2e460-a6f9-4d7a-879a-5ce0ab4298e4))
(segment (start 133.35 66.04) (end 132.08 67.31) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9b60f0f5-39b9-442e-abed-62997d4b6518))
(segment (start 157.48 76.2) (end 153.524511 72.244511) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9eceb0a6-94e7-48c0-94c9-baf4fe588537))
(segment (start 152.7203 68.58) (end 142.26 68.58) (width 0.25) (layer "B.Cu") (net 3) (tstamp a1fe03ff-06a3-4b19-a539-2ee47e4a4999))
(segment (start 143.51 55.88) (end 139.7 59.69) (width 0.25) (layer "B.Cu") (net 3) (tstamp a6e905c1-7822-4eb8-8833-8a23451bed59))
(segment (start 132.08 71.12) (end 135.9 74.94) (width 0.25) (layer "B.Cu") (net 3) (tstamp a78b88aa-c284-41b5-a7a4-2ff43eb56c3c))
(segment (start 142.26 68.58) (end 135.9 74.94) (width 0.25) (layer "B.Cu") (net 3) (tstamp a9cad49e-1cb8-4f60-93dd-4a5d2bbe0d8a))
(segment (start 127 62.23) (end 132.08 67.31) (width 0.25) (layer "B.Cu") (net 3) (tstamp b06dd1dc-264e-4ede-bfcd-e098665d6f20))
(segment (start 132.08 67.31) (end 132.08 71.12) (width 0.25) (layer "B.Cu") (net 3) (tstamp b203c686-8c6c-4a9a-bbd5-faaea9ea3d6e))
(segment (start 130.81 81.28) (end 130.81 85.09) (width 0.25) (layer "B.Cu") (net 3) (tstamp cf45d714-3e22-480c-9810-bc7d971c4815))
(segment (start 127.783501 49.625489) (end 125.759367 51.649623) (width 0.25) (layer "F.Cu") (net 5) (tstamp 161f1991-a3cd-4a74-8cbc-6d03157c31f1))
(segment (start 144.495489 93.844511) (end 124.324511 93.844511) (width 0.25) (layer "F.Cu") (net 5) (tstamp 1880a5c1-38c0-4f5f-aa33-c21b94b74bfc))
(segment (start 125.759367 51.649623) (end 125.759367 63.529367) (width 0.25) (layer "F.Cu") (net 5) (tstamp 38f7c589-269a-455b-b71a-6527334b28c2))
(segment (start 124.324511 93.844511) (end 123.2 92.72) (width 0.25) (layer "F.Cu") (net 5) (tstamp 51031d09-11bb-4a83-962a-bc61a4b095ad))
(segment (start 121.92 91.44) (end 121.92 78.74) (width 0.25) (layer "F.Cu") (net 5) (tstamp 68d94c24-fa52-48d3-b6b2-8a81bd1b2060))
(segment (start 123.2 92.72) (end 121.92 91.44) (width 0.25) (layer "F.Cu") (net 5) (tstamp 6c8374a2-1948-41b8-83c2-33bb44d97be7))
(segment (start 149.15 89.19) (end 144.495489 93.844511) (width 0.25) (layer "F.Cu") (net 5) (tstamp 75d10cc4-4714-48c4-9896-2089bf4ae86a))
(segment (start 143.605489 49.625489) (end 127.783501 49.625489) (width 0.25) (layer "F.Cu") (net 5) (tstamp 8a6b5256-0915-45cf-a58e-e6b488be5ba6))
(segment (start 121.92 78.74) (end 124.46 76.2) (width 0.25) (layer "F.Cu") (net 5) (tstamp 8ef0d5d0-9121-4e20-bf60-ba95d5f863af))
(segment (start 125.759367 63.529367) (end 127 64.77) (width 0.25) (layer "F.Cu") (net 5) (tstamp d383b454-7aee-42c3-9c22-ac8ac25dbbb1))
(segment (start 144.78 50.8) (end 143.605489 49.625489) (width 0.25) (layer "F.Cu") (net 5) (tstamp fa386e48-a5ac-46fd-8bab-4f562a8373c3))
(segment (start 148.59 69.87) (end 143.52 74.94) (width 0.25) (layer "B.Cu") (net 5) (tstamp 0ae227d8-beda-4e1e-908c-5f26618e407c))
(segment (start 152.4 69.85) (end 152.4 73.66) (width 0.25) (layer "B.Cu") (net 5) (tstamp 1be50f20-cefe-43a5-9ad0-999d24eb3068))
(segment (start 124.46 76.2) (end 127 73.66) (width 0.25) (layer "B.Cu") (net 5) (tstamp 2e8c4c72-0a75-464e-9b42-9d31d1c354c9))
(segment (start 130.82 77.48) (end 129.54 76.2) (width 0.25) (layer "B.Cu") (net 5) (tstamp 31e0c95a-78ca-44bb-9184-1c4d48ccbf3e))
(segment (start 149.15 89.19) (end 155.65 89.19) (width 0.25) (layer "B.Cu") (net 5) (tstamp 3c6410ed-a560-46b5-9660-00fb1d7c00e9))
(segment (start 148.59 69.85) (end 152.4 69.85) (width 0.25) (layer "B.Cu") (net 5) (tstamp 4875c511-85a7-4282-b611-5f3f939a3849))
(segment (start 156.164511 80.055489) (end 157.48 78.74) (width 0.25) (layer "B.Cu") (net 5) (tstamp 58c2c1d5-963c-4012-b6c4-f399c32ff52c))
(segment (start 152.4 73.66) (end 157.48 78.74) (width 0.25) (layer "B.Cu") (net 5) (tstamp 81d4a72d-13bb-43e1-8966-ac00684e0067))
(segment (start 127 73.66) (end 127 64.77) (width 0.25) (layer "B.Cu") (net 5) (tstamp 968e9c9f-cd24-4a12-bbe3-5cd4499e2633))
(segment (start 129.54 76.2) (end 124.46 76.2) (width 0.25) (layer "B.Cu") (net 5) (tstamp c01a1ce6-aea6-4b9e-95ac-caf2bdbfe10e))
(segment (start 156.164511 88.675489) (end 156.164511 80.055489) (width 0.25) (layer "B.Cu") (net 5) (tstamp c2641110-297e-485e-be1e-785e80d7a64f))
(segment (start 135.9 77.48) (end 130.82 77.48) (width 0.25) (layer "B.Cu") (net 5) (tstamp d9c0241a-6ebb-41a4-87f6-309aab930fa4))
(segment (start 143.52 74.94) (end 138.44 74.94) (width 0.25) (layer "B.Cu") (net 5) (tstamp dea9cafc-7ca3-44e5-9c74-f66defc76023))
(segment (start 138.44 74.94) (end 135.9 77.48) (width 0.25) (layer "B.Cu") (net 5) (tstamp e78e1421-bd5f-4b7c-b6e4-33855db6fbaa))
(segment (start 125.78 80.02) (end 135.9 80.02) (width 0.25) (layer "B.Cu") (net 6) (tstamp 830a7ed6-ee6e-4930-b0e3-7063f8168620))
(segment (start 121.96 73.62) (end 124.46 71.12) (width 0.25) (layer "B.Cu") (net 6) (tstamp b5f60a68-78e3-42c6-a1ce-793057ebfa52))
(segment (start 121.96 76.2) (end 125.78 80.02) (width 0.25) (layer "B.Cu") (net 6) (tstamp c73fa5f8-e48c-4393-ae06-ee13e82183c7))
(segment (start 121.96 76.2) (end 121.96 73.62) (width 0.25) (layer "B.Cu") (net 6) (tstamp e637934b-74cf-40af-99d5-12d781ce1480))
(segment (start 132.08 76.2) (end 132.08 78.74) (width 0.25) (layer "F.Cu") (net 7) (tstamp 2df0f9c6-1020-41da-89d1-1db640ead165))
(segment (start 132.08 78.74) (end 135.9 82.56) (width 0.25) (layer "F.Cu") (net 7) (tstamp 633fbfba-0fbb-4b1f-8f2c-923e0aa8b639))
(segment (start 129.34 71.12) (end 129.34 73.46) (width 0.25) (layer "B.Cu") (net 7) (tstamp 9b60a8c5-d25e-481c-b363-b18b0a49b5b4))
(segment (start 129.34 73.46) (end 132.08 76.2) (width 0.25) (layer "B.Cu") (net 7) (tstamp a4cb6d34-41eb-44e0-b1e3-8d82f7d20b14))
(segment (start 143.8503 88.9) (end 139.72 88.9) (width 0.25) (layer "F.Cu") (net 8) (tstamp 28915f3b-2f4d-4add-a7f4-773dba4181dc))
(segment (start 139.72 88.9) (end 135.9 92.72) (width 0.25) (layer "F.Cu") (net 8) (tstamp 43ea9d23-a552-485e-948f-f9647f4c036a))
(segment (start 147.32 85.4303) (end 143.8503 88.9) (width 0.25) (layer "F.Cu") (net 8) (tstamp 4feb822b-4273-4be5-8ef0-fb2edfb0a619))
(segment (start 147.32 83.82) (end 147.32 85.4303) (width 0.25) (layer "F.Cu") (net 8) (tstamp 66644961-0e3d-46f4-91a4-728628eebcff))
(segment (start 148.59 77.47) (end 148.59 82.55) (width 0.25) (layer "B.Cu") (net 9) (tstamp 672ccec3-cafb-4774-9d49-8ba59b800b56))
(segment (start 148.59 82.55) (end 149.86 83.82) (width 0.25) (layer "B.Cu") (net 9) (tstamp c5e89c69-83e6-47c3-939b-5e254825974f))
(segment (start 152.4 77.47) (end 152.4 81.28) (width 0.25) (layer "B.Cu") (net 10) (tstamp 9dff2b52-dd63-4f12-878f-0bcf8b877097))
(segment (start 152.4 81.28) (end 154.94 83.82) (width 0.25) (layer "B.Cu") (net 10) (tstamp f83accda-4941-4aa9-8fc2-0346c2b7fbd8))
(segment (start 150.772527 54.252527) (end 157.48 60.96) (width 0.25) (layer "F.Cu") (net 13) (tstamp 12e148b2-f0af-4918-950f-01f26c3aee3b))
(segment (start 143.52 62.24) (end 140.23808 62.24) (width 0.25) (layer "F.Cu") (net 13) (tstamp 15602146-4aba-4d4c-a12b-dbe28aaa547e))
(segment (start 141.330345 54.252527) (end 150.772527 54.252527) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1e5c4b86-7f07-46a9-80b3-0d65e8f226dd))
(segment (start 138.95808 60.96) (end 138.95808 56.624792) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7c1b0c96-08bc-4ebc-8893-d7dce9d25c65))
(segment (start 138.95808 56.624792) (end 141.330345 54.252527) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7ead3f64-fe5e-4620-a23f-88ef4d3330a9))
(segment (start 140.23808 62.24) (end 138.95808 60.96) (width 0.25) (layer "F.Cu") (net 13) (tstamp dbefec61-d518-49d8-aadd-c50b09f9affb))
(segment (start 148.682047 54.702047) (end 157.48 63.5) (width 0.25) (layer "F.Cu") (net 14) (tstamp 0f68f645-e273-4832-bc9f-d5c43ffaf5eb))
(segment (start 139.4076 58.42) (end 139.4076 56.81099) (width 0.25) (layer "F.Cu") (net 14) (tstamp 1017a13a-29b7-4e39-a8b6-796f9c1c65a2))
(segment (start 140.6876 59.7) (end 139.4076 58.42) (width 0.25) (layer "F.Cu") (net 14) (tstamp 2fe48768-c4de-4293-9f05-bd57f3f59d61))
(segment (start 141.516543 54.702047) (end 148.682047 54.702047) (width 0.25) (layer "F.Cu") (net 14) (tstamp 9b497c77-77e8-42a2-8930-0bcfb03cc0e8))
(segment (start 143.52 59.7) (end 140.6876 59.7) (width 0.25) (layer "F.Cu") (net 14) (tstamp cf89810f-9884-46f7-bb99-d11f2921588f))
(segment (start 139.4076 56.81099) (end 141.516543 54.702047) (width 0.25) (layer "F.Cu") (net 14) (tstamp e1ec9676-1d8b-46bb-955b-d981aa4fe914))
(segment (start 143.52 72.4) (end 137.16 66.04) (width 0.25) (layer "F.Cu") (net 15) (tstamp 637c4a20-1847-4c8a-85a4-50148f7ba4a3))