-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattiny85.kicad_pcb
2087 lines (2066 loc) · 109 KB
/
attiny85.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "Net-(D1-Pad1)")
(net 2 "Net-(D2-Pad1)")
(net 3 "/PB0")
(net 4 "/PB1")
(net 5 "/PB2")
(net 6 "/PB3")
(net 7 "/PB4")
(net 8 "/PB5")
(net 9 "/GND")
(net 10 "/5V")
(net 11 "Net-(D3-Pad2)")
(net 12 "Net-(D4-Pad2)")
(net 13 "/3V3")
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A42B) (tstamp 119496fd-92cd-4607-8377-14bf0447d020)
(at 207.09 79.1)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/51cb45db-f6d8-4278-830a-c0ee5c424561")
(attr through_hole)
(fp_text reference "J2" (at -1.27 -2.77) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c98a88a9-8322-4750-ab22-3e5517558511)
)
(fp_text value "Conn_02x05_Odd_Even" (at -1.27 12.93) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8049239-701f-4772-9fe7-fc7fe0cd0bbd)
)
(fp_text user "${REFERENCE}" (at -1.27 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd889cfa-5de0-4d14-aaba-e594b03ef315)
)
(fp_line (start -3.87 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 169bd88a-24b3-404a-9ad2-8344186f79a0))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1c491641-c370-49d8-acbd-3a321a35af01))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 35de1569-4243-48a2-bd76-19f777637f26))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 4f163a63-8304-4d6a-a81f-f17cfb756c55))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 53363ecb-67ea-4e4b-8565-920b79d97d5d))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 82ad8bb7-dceb-4c98-874e-2202a35cee05))
(fp_line (start -3.87 -1.33) (end -3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp aebc22e7-658f-4f89-9f0d-b4c3cdfd5494))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp eb859ceb-df14-43dc-bf10-98199114fbfb))
(fp_line (start 1.76 11.9) (end -4.34 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 3d9521b6-f80b-4d13-b2b3-35483b2e6780))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4d9fbabb-5485-4170-8a36-fd2c13a650b1))
(fp_line (start -4.34 11.9) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 73fa80c2-dafc-4404-823f-ac3bd9bb4cae))
(fp_line (start 1.76 -1.8) (end 1.76 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 9d6ad0ec-1452-42fa-9418-b1bc90140027))
(fp_line (start 1.27 11.43) (end -3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 47bae6f0-aa22-4355-a742-f920c584f4d2))
(fp_line (start -3.81 11.43) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4e87ef6a-10c9-4682-a3b0-118003376c4a))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 81a37d93-a562-4d00-aed8-511a037ff33e))
(fp_line (start 1.27 -0.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 88ab7740-9039-4e7d-a0d0-ce01241f7ad5))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fa2ec3b3-12d1-4be0-b6a4-0586ec416e27))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "Pin_1") (pintype "passive") (tstamp cfcb8144-3143-4690-a45b-a0ca36c6ead0))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/5V") (pinfunction "Pin_2") (pintype "passive") (tstamp c436c385-a5da-4ba5-9850-52af2b62e9a7))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 8b33ed40-caed-4198-88ff-10bf13b6b38c))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp ac03af65-1b0e-46b8-9bea-cfe83bfe8e94))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/PB0") (pinfunction "Pin_5") (pintype "passive") (tstamp 341a6ba6-b25b-4926-b4eb-4551b4612de9))
(pad "6" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/PB3") (pinfunction "Pin_6") (pintype "passive") (tstamp 499e4e6a-08cc-47d2-9b0b-20b1f6208169))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/PB1") (pinfunction "Pin_7") (pintype "passive") (tstamp a76b0cfa-08a7-482b-b3f1-6150a25f0a6a))
(pad "8" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/PB4") (pinfunction "Pin_8") (pintype "passive") (tstamp 7a83e877-8f40-4d04-bf5a-33eedf749171))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/PB2") (pinfunction "Pin_9") (pintype "passive") (tstamp d71e618c-be2b-46d9-877a-92ccbe412100))
(pad "10" thru_hole oval (at -2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/PB5") (pinfunction "Pin_10") (pintype "passive") (tstamp b948e276-e918-407a-b658-ddbc342edbf3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_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 1288eeb6-ed6e-40d3-b7e9-8bf07899abfb)
(at 182.29 78.8)
(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" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/781f7c64-cba3-439f-91c2-7ed5f5d35118")
(attr through_hole)
(fp_text reference "R4" (at 3.81 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bfd33f1-9b38-4f55-bfd7-3dadf1ee6f9d)
)
(fp_text value "470" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94806e3e-0629-4ae1-bc44-609cbea5dd2d)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d537196-35d9-44c5-be5b-2193dc1f5bbf)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 733f7e91-078c-419c-af8b-f90175c2a4ba))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ab2dd974-b153-4373-85cd-f04dcfdd26e3))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp ac71075d-1f6c-4619-8817-90d2d4e48972))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b97dae83-14ca-499c-b5fd-d71cf2e2897f))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp e7cc9bc8-f261-466c-aecc-70e1db2b4d74))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e8c416e0-5cbc-4dd1-a9bc-51e3d4a85c5f))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5361d2c4-af79-492f-9965-edc8ba3e4382))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 550abba3-1451-493a-b63b-8aca6fa0bfba))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b936c478-b417-4204-9086-8f0d5a3a095c))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c6b231e6-5d14-4f2c-8b77-e3cac197df27))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 71441712-f7be-4f03-aa2f-436c8fd3f883))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 77836362-41f1-4bc9-b61f-a223e073e622))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9ca8beee-54bd-4ba9-b7b5-506c03e4143b))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp b6fbb1a8-4434-42b2-bf00-42223fa5ae5b))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp cc8f413d-e135-49ac-92cc-04f3e0947c29))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp f449adff-5a30-42ae-b203-ecfa395b5290))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/5V") (pintype "passive") (tstamp 829f83af-4b04-464d-a958-94b879d1369d))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(D3-Pad2)") (pintype "passive") (tstamp c3f956e7-9cfa-4385-bdd6-b577e3c9447a))
(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 "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 264558a9-a659-44ad-a721-d1425d871715)
(at 193.8 78.4 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/8a6013e6-13c0-4fd5-ab86-372f95897eba")
(attr smd)
(fp_text reference "D4" (at 0 -1.82) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17e421e5-a138-4e48-b83c-a674d3f12eda)
)
(fp_text value "LED" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 255900b2-4ee6-4d07-942b-404e1f27f2fa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 099323ff-bdb3-4e27-8122-44ce0a966401)
)
(fp_line (start -2.46 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 2f5cf8e2-534f-4763-9085-ac6931f5d5ec))
(fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer "F.SilkS") (width 0.12) (tstamp 6550e5ef-14a3-4199-a9bd-0e6dd171ae04))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer "F.SilkS") (width 0.12) (tstamp b1659d86-f79b-4d58-b956-21e58c4cbf58))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 00f58ef4-bdfb-4f22-a704-a2681de7d24f))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 46df3220-d51e-45d9-97e7-917439fee90f))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 61e7371c-dd0f-4f03-b4cd-e6d1f718b38d))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp f6bb0657-70ed-4eed-b256-a2a590308f8e))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 05c522cc-3a08-4b2f-b5a1-90f847b7f948))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 99e9a1ef-8d3d-45bc-b6b8-04967022e4f9))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b87d316b-227b-47bc-b530-24019fab1e27))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp db69cef2-812a-48f4-92e1-e1d2d72f550c))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp fd965ab5-2f24-4721-a560-b93b05a21618))
(pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 9 "/GND") (pinfunction "K") (pintype "passive") (tstamp f55c0376-7e50-4f2e-ae0b-0d6305e659ee))
(pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 12 "Net-(D4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp b64232e0-c35e-4324-b8e9-48a14a330869))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.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 36590805-e318-4306-af34-fea7bd704137)
(at 182.29 81.82)
(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" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/d348af30-b12e-42f8-996c-01691f9acf45")
(attr through_hole)
(fp_text reference "R5" (at 3.81 0.03) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86a6ca7f-5342-4694-8993-69b80d23a328)
)
(fp_text value "470" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ce35a46-9312-4d79-92a5-1024004a0887)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcc6c5b2-e9ca-432e-b77b-263ff5de79e9)
)
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 02bad8d0-6786-49b6-99a3-820c70efde8c))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 5d0bf2f2-cfec-4ce7-899f-c59c07279218))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5e700319-ee95-4c26-ad6f-c11dace9f8d4))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 763f943e-7788-49c8-94dc-c2f23dd4ba00))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp d8c9d3a8-06eb-47b3-8aba-a8157d581cf2))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp eb7b23ce-6991-49e5-a90e-df6d4a56483b))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5d3c921d-aafb-41d0-ba55-4b1c8edb2786))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 66640994-e2e6-4ef3-b2c9-f15fdc79e036))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d6707878-54ff-46be-bf62-875afd88d111))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d8fae073-5a55-496d-99be-c406984fe59e))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 28e4fc0d-cd2e-4879-93ac-c05e966073d0))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 3d344eed-8f3a-479d-8c20-39337a71f12d))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 4f9b39c1-ef42-4a9c-aa53-e6ab7aa08264))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp b6794f01-716e-44e0-ac7e-b47dbd632c2d))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp d635ccc9-1c60-4df3-afb2-b5bb7bfaa8c3))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp da177a2e-5760-4994-b5eb-618ce70ca760))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/PB1") (pintype "passive") (tstamp cf3706c3-07d1-4178-bcd9-bffeb0b3dce3))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(D4-Pad2)") (pintype "passive") (tstamp bbf3a0b5-bfdb-4ffa-bc0b-01d727526154))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 58d0c72e-021d-4ad3-bfa9-5303ab6e242e)
(at 172.2 78.8)
(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" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/f6eb8082-9386-49b8-9b95-b02a592c98f4")
(attr through_hole)
(fp_text reference "R1" (at 3.81 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18ce82c5-413c-4302-adb7-9597d8d9146c)
)
(fp_text value "1K5" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5d27764-f2d6-4d71-a711-2a3375494acf)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5479904-26f0-451e-bfda-d228fab7d6be)
)
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 0299c6f1-d385-48f5-bd06-9c08fea6f453))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 34bea175-f126-4b67-927e-232e0a09552f))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 58b7b650-6126-4eaf-b4cb-e2c1ecba3400))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 815e02ef-687a-4737-bf22-368ba25d9377))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e56401e7-c072-454e-b5d9-cfe83fc48e6e))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f97a0d97-1959-434d-9713-48ebe1264cba))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3e916155-6c1a-4d67-8064-9749af5605e8))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6203ecac-c33c-4631-8ee0-396518fc290d))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 91c0b478-81f0-4696-ad1a-e9d6573b7968))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fa9bcfae-392f-4aff-accd-32e5c9caa692))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 01ffc493-c803-4edf-a47c-32a49467bbb0))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 489edbb9-277e-4af0-9aa6-51c80edace87))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 84d86ed1-2d29-4633-bb06-2548ab3c92e9))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp b0fd3c3e-7659-4823-aab5-7995d248040a))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp f0e1beb9-7620-49ef-9ab7-1738adfbc817))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp fe0c88c9-667d-4c8f-a59a-767b75029b40))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)") (pintype "passive") (tstamp ab1c3b6b-bed7-4fce-ac61-fb15f8065222))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/5V") (pintype "passive") (tstamp 9f340235-43ac-4059-bc56-c5a48ec054bc))
(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_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 64e006b4-6d4a-44ee-981a-778cd9c7de43)
(at 192.9 81.65)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/2e1100cf-7d2a-4512-b4db-9b543d5eb582")
(attr through_hole)
(fp_text reference "U1" (at 3.81 3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe29d828-ce8b-4551-80cc-7d2fb7a739ca)
)
(fp_text value "ATtiny85-20P" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5104c055-25ec-4ba9-92d3-464dd6332c90)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90c39c8b-507a-4a20-aaff-4721e9c25813)
)
(fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 22bee816-9cc2-4b24-84d1-07a478e39aaa))
(fp_line (start -1.33 9.01) (end 8.95 9.01) (layer "F.SilkS") (width 0.12) (tstamp 4007736a-783e-4437-8f20-c4df4de5f5aa))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 4c9bfe0f-c53a-4ff1-822d-3f1a22e099f0))
(fp_line (start -1.33 -1.39) (end -1.33 9.01) (layer "F.SilkS") (width 0.12) (tstamp 72dae55f-459a-4641-87ea-57d505f0ccbe))
(fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp a10e70cf-504f-4f37-9338-e393696d9a20))
(fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp c895287f-4193-4ae2-81ee-1313c53ce2cf))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d2d5c84e-7897-4542-b2b4-726d0fdabf5d))
(fp_line (start 8.95 9.01) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp d711607d-a7a7-4afd-bf38-c20ef792ae56))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ffb3e3d2-d457-4032-a021-ecf306385aff))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7d981dd-1f84-44b0-b69a-e021a4cf5d76))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 1859be9a-3614-43ab-9133-5f259d280e4b))
(fp_line (start 9.15 9.2) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 1c008370-2fe8-479a-b9d5-e4a978ced196))
(fp_line (start -1.55 -1.6) (end -1.55 9.2) (layer "F.CrtYd") (width 0.05) (tstamp 8563e8f8-4c66-4e68-b7a5-d1d4f8bcaa8e))
(fp_line (start -1.55 9.2) (end 9.15 9.2) (layer "F.CrtYd") (width 0.05) (tstamp bbacb852-ba35-4726-8aec-74cb72e0e382))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 21f438d0-8dcd-408d-b37b-d42a61386790))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 5b28e83c-812d-4c7c-bf66-206f7f6a425f))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6e29f32c-72c3-4b16-867f-e843d45d4c0c))
(fp_line (start -1.27 8.95) (end 8.89 8.95) (layer "F.Fab") (width 0.1) (tstamp 83efedcc-fde8-4dfd-925c-d9472e09dfc8))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 994a847d-d472-4afc-94e0-8c04c95be6e3))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 99c4d134-12bc-48c4-a37e-0fb42bf570eb))
(fp_line (start 8.89 8.95) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 9e5e0388-900f-4706-808b-0613d1c5b177))
(fp_line (start -1.27 -1.33) (end -1.27 8.95) (layer "F.Fab") (width 0.1) (tstamp a1598403-f718-4085-bc19-9d43affdeac1))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp f3867d07-d37f-4b7f-b4c8-1ef4a79a4bae))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/PB5") (pinfunction "~{RESET}/PB5") (pintype "bidirectional") (tstamp d42c029e-5e65-40cf-801e-3e64903310dd))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/PB3") (pinfunction "XTAL1/PB3") (pintype "bidirectional") (tstamp dd209ba0-cc33-4bf3-b2a5-fda45bb9a7a7))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/PB4") (pinfunction "XTAL2/PB4") (pintype "bidirectional") (tstamp 71b0c9c2-d2cb-4b97-855a-e03961fdd3d9))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "GND") (pintype "power_in") (tstamp 3ec1c72e-86bc-43f3-9e4b-82a0f36793e3))
(pad "5" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "/PB0") (pinfunction "AREF/PB0") (pintype "bidirectional") (tstamp f5c18c93-1aca-4f9e-b75d-63358001fa38))
(pad "6" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/PB1") (pinfunction "PB1") (pintype "bidirectional") (tstamp 46891b14-ea15-49de-a7cb-fab91654a24b))
(pad "7" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/PB2") (pinfunction "PB2") (pintype "bidirectional") (tstamp 8122dced-ebb9-485e-8822-89a02b596543))
(pad "8" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/5V") (pinfunction "VCC") (pintype "power_in") (tstamp 16a9e9f9-3483-4a09-bc5e-b2e2331fc752))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 8e4d6da8-e0fa-4be2-a93a-a6c1b4f95876)
(at 199.5 78.4 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/fb359f89-2c0a-4805-b361-741badca04d5")
(attr smd)
(fp_text reference "D3" (at 0 -1.82) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c632856d-984e-4b38-a034-f22c268b5a0b)
)
(fp_text value "LED" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d79d8f28-c70b-46a9-9f3c-3fe37eb71e98)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6f0ca822-31d3-4011-b6c0-9425c953ac19)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer "F.SilkS") (width 0.12) (tstamp 1fd73d53-64da-45a7-b70b-ec00b209faf2))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer "F.SilkS") (width 0.12) (tstamp 63de83b9-b68d-449a-98f1-45f2ba778db3))
(fp_line (start -2.46 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp aa16e68c-16e1-4f34-bac5-bbd2026e0057))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 3b718531-8dd8-4f3c-abe8-7d5ec7a5a2d0))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 72afd3be-a9b8-43f0-a47b-1c39a3617e3f))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp aca11dba-20c1-41e2-b44b-bf57c2e5714e))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp cc257704-0bb0-4b57-beb0-ee9ea14aec0f))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6bb88b69-b6d9-4e4f-8541-520c82e02edf))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 9eb7059c-e87f-4fb6-ac8e-2f6584684509))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp aaab50ec-0381-4b66-9a78-e0549e3cc1e3))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp cbf4b785-eb3a-4211-89ac-18ff20a2d47c))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp f8621ae2-2d15-4450-a1f9-da7ef0dcefcd))
(pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 9 "/GND") (pinfunction "K") (pintype "passive") (tstamp b6477b2e-8b7b-46f0-939b-6776251ee7bc))
(pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 11 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 1eb27b71-9d1f-4717-a1c3-b4656f060a02))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-34_SOD68_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 9ff125bf-9156-46ce-a231-53dd1e7df5dd)
(at 172.2 89.65)
(descr "Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf")
(tags "Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/2cba1221-5f94-40b9-8136-75af9511b749")
(attr through_hole)
(fp_text reference "D1" (at 3.81 -1.92) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03bca998-3941-4833-9ef0-cd053e11a37b)
)
(fp_text value "3.6 Zener" (at 3.81 1.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 795399b2-cacb-411e-9b4a-411c8dd360c7)
)
(fp_text user "K" (at 0 -1.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0fae496-ef20-4d06-943a-3640311b3efa)
)
(fp_text user "K" (at 0 -1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03522edc-5c66-4b32-a51d-3cceb16f08de)
)
(fp_text user "${REFERENCE}" (at 4.038 0) (layer "F.Fab")
(effects (font (size 0.608 0.608) (thickness 0.0912)))
(tstamp 988266f4-af2d-4b23-bc8a-861ef3312e9d)
)
(fp_line (start 5.45 -0.92) (end 2.17 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 03e7582a-2ba0-4bec-a80a-1b6de24eab22))
(fp_line (start 5.45 0.92) (end 5.45 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 35da5405-66e9-41d0-9bba-4d4faabd7314))
(fp_line (start 2.626 -0.92) (end 2.626 0.92) (layer "F.SilkS") (width 0.12) (tstamp 4f4e38e4-a780-4377-995b-ecbe7474cd7c))
(fp_line (start 2.17 0.92) (end 5.45 0.92) (layer "F.SilkS") (width 0.12) (tstamp a731c815-3fa0-458e-ab90-8fd92c1e9ccd))
(fp_line (start 6.63 0) (end 5.45 0) (layer "F.SilkS") (width 0.12) (tstamp cacd303f-1613-40e1-ba38-b7ea4bc04203))
(fp_line (start 2.866 -0.92) (end 2.866 0.92) (layer "F.SilkS") (width 0.12) (tstamp cbdb3cac-c622-4940-adf1-ac85fe2877ac))
(fp_line (start 2.746 -0.92) (end 2.746 0.92) (layer "F.SilkS") (width 0.12) (tstamp cfbcfb3d-0831-4095-bd1f-44201717d302))
(fp_line (start 0.99 0) (end 2.17 0) (layer "F.SilkS") (width 0.12) (tstamp e8a8b88a-398b-4c85-9aef-3a0996f266d7))
(fp_line (start 2.17 -0.92) (end 2.17 0.92) (layer "F.SilkS") (width 0.12) (tstamp eea54de3-60ef-44e1-922b-dc2c3551a7e5))
(fp_line (start -1 -1.05) (end -1 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 21b31348-ff41-4199-b498-7ad62b869a00))
(fp_line (start 8.63 1.05) (end 8.63 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4475379b-2f4e-40d0-9173-ad90b2b96049))
(fp_line (start 8.63 -1.05) (end -1 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 562ea0c6-be59-4345-aaeb-af70356a2f0f))
(fp_line (start -1 1.05) (end 8.63 1.05) (layer "F.CrtYd") (width 0.05) (tstamp bbd30d78-6e84-4a6c-ae94-305d9ba928f7))
(fp_line (start 0 0) (end 2.29 0) (layer "F.Fab") (width 0.1) (tstamp 00e358b0-6393-490e-af5f-9d2cb9b42430))
(fp_line (start 5.33 0.8) (end 5.33 -0.8) (layer "F.Fab") (width 0.1) (tstamp 103fa8df-cdeb-46b7-9253-ce638fbd2e2c))
(fp_line (start 2.646 -0.8) (end 2.646 0.8) (layer "F.Fab") (width 0.1) (tstamp 169b7ac8-9c0f-4d1d-9fc4-489530c83dea))
(fp_line (start 2.746 -0.8) (end 2.746 0.8) (layer "F.Fab") (width 0.1) (tstamp 4dab5872-ad36-4be7-bf81-d10b41419150))
(fp_line (start 2.29 -0.8) (end 2.29 0.8) (layer "F.Fab") (width 0.1) (tstamp 55759bb5-7f43-441c-963e-d99b7d5fcd88))
(fp_line (start 5.33 -0.8) (end 2.29 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8090d595-f840-483b-8147-2c62f5c1fa3c))
(fp_line (start 7.62 0) (end 5.33 0) (layer "F.Fab") (width 0.1) (tstamp c02ed7a4-09eb-4e74-9299-7f3b3770ac7c))
(fp_line (start 2.846 -0.8) (end 2.846 0.8) (layer "F.Fab") (width 0.1) (tstamp c25f7822-f004-49b0-ba1c-a60a1d6ec16b))
(fp_line (start 2.29 0.8) (end 5.33 0.8) (layer "F.Fab") (width 0.1) (tstamp f37a9799-fc5a-411a-8bc7-147a299045aa))
(pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp b84e540f-5dc4-496e-ac78-cc05870bf797))
(pad "2" thru_hole oval (at 7.62 0) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "A") (pintype "passive") (tstamp 8cb771ba-5f9d-4b24-be9f-c81152a00244))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-34_SOD68_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "My footprints:MOLEX_48037-0001" (layer "F.Cu")
(tedit 63F4AD12) (tstamp a76edc16-1e7b-4065-a584-b4f5cf529b9a)
(at 167.6375 84.05575 -90)
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/f1fb3440-341e-4e81-92c7-0cc645eb1d8d")
(attr through_hole)
(fp_text reference "J1" (at -3.725 -4.235 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ad49d9d-f936-480e-ab39-97ad958f6402)
)
(fp_text value "USB_A" (at 3.26 18.965 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e434069e-951a-4f75-848f-032302d97d49)
)
(fp_text user "PCB EDGE" (at 6.28 2.47 -90) (layer "F.Fab") hide
(effects (font (size 0.32 0.32) (thickness 0.15)))
(tstamp c5b5958b-3aec-4fef-b8a7-d57a1fe9ec56)
)
(fp_line (start -6 2.75) (end -6 17.8) (layer "F.SilkS") (width 0.127) (tstamp 019941f1-9f3e-466b-8212-3b2bd13d8ce0))
(fp_line (start -6 2) (end -6 2.75) (layer "F.SilkS") (width 0.127) (tstamp 02af76a0-fa36-48f0-a5d2-523875befa5f))
(fp_line (start 6 17.8) (end 6 2.75) (layer "F.SilkS") (width 0.127) (tstamp 1e755d0b-8617-49bd-9190-9d19bcccafe5))
(fp_line (start 6 2.75) (end 6 2) (layer "F.SilkS") (width 0.127) (tstamp 54542bb9-d113-4249-9204-a937827cf2bf))
(fp_line (start -6 2.75) (end 6 2.75) (layer "F.SilkS") (width 0.127) (tstamp 772d3d0e-ef11-4e9d-a4ec-4bd6bd5f7694))
(fp_line (start -6 17.8) (end 6 17.8) (layer "F.SilkS") (width 0.127) (tstamp a7ab2117-bcd4-4c6b-a00b-a018171c72ca))
(fp_circle (center 3.5 -3.4) (end 3.6 -3.4) (layer "F.SilkS") (width 0.2) (fill none) (tstamp 5f7683fe-8b00-4cdd-9fbc-21a207308333))
(fp_line (start 6.75 -3.11) (end -6.75 -3.11) (layer "F.CrtYd") (width 0.05) (tstamp 31022a6c-5326-421e-8f8b-6e772cf1e373))
(fp_line (start 6.75 18.05) (end 6.75 -3.11) (layer "F.CrtYd") (width 0.05) (tstamp 7b0aa643-1095-4e49-a2ae-bad43af02938))
(fp_line (start -6.75 18.05) (end 6.75 18.05) (layer "F.CrtYd") (width 0.05) (tstamp 9dc69a82-6624-478e-9e4e-8a620f4fdf8e))
(fp_line (start -6.75 -3.11) (end -6.75 18.05) (layer "F.CrtYd") (width 0.05) (tstamp f39f0c1f-7dbf-47f2-8bb2-c3c77c81c5bf))
(fp_line (start -6 2.75) (end 6 2.75) (layer "F.Fab") (width 0.127) (tstamp 1c2eae69-c1b4-4cc1-a082-7e37bdcbe64a))
(fp_line (start 6 2.75) (end 6 -1) (layer "F.Fab") (width 0.127) (tstamp 294bc081-3cfa-4911-8dc6-6c5d71223b21))
(fp_line (start -6 2.75) (end -6 17.8) (layer "F.Fab") (width 0.127) (tstamp 39ecfa6c-5521-404d-818b-86ce162d24cf))
(fp_line (start 6 -1) (end -6 -1) (layer "F.Fab") (width 0.127) (tstamp 3d0bc97e-1210-4ba2-9ab1-803f7e8467fd))
(fp_line (start 6 2.75) (end 9.2 2.75) (layer "F.Fab") (width 0.127) (tstamp 4aa96624-6203-41c3-a954-dbecf3bf46f8))
(fp_line (start -6 -1) (end -6 2.75) (layer "F.Fab") (width 0.127) (tstamp 5231761b-283a-42a1-9f9c-85da6db1bb1f))
(fp_line (start -6 17.8) (end 6 17.8) (layer "F.Fab") (width 0.127) (tstamp 7ff8e1b1-fd9e-4ab6-86fb-1afc7fc57a1f))
(fp_line (start 6 17.8) (end 6 2.75) (layer "F.Fab") (width 0.127) (tstamp c94125b7-bccd-48b0-9123-d1ee42e06b99))
(fp_circle (center 3.5 -3.4) (end 3.6 -3.4) (layer "F.Fab") (width 0.2) (fill none) (tstamp cd3fa596-b918-45fa-bd75-ae09915c20f5))
(pad "" np_thru_hole circle locked (at -2.25 0 270) (size 1.25 1.25) (drill 1.25) (layers *.Cu *.Mask) (tstamp 16f57a62-55c7-4443-b9ed-9899ced47031))
(pad "" np_thru_hole circle locked (at 2.25 0 270) (size 1.25 1.25) (drill 1.25) (layers *.Cu *.Mask) (tstamp bb9ca959-d221-4082-9232-4df40aefbdd5))
(pad "1" thru_hole rect locked (at 3.5 -2.1 270) (size 1.508 1.508) (drill 1) (layers *.Cu *.Mask)
(net 10 "/5V") (pinfunction "VBUS") (pintype "power_in") (tstamp b07329fa-732c-4b32-8fe3-3403218f8b47))
(pad "2" thru_hole circle locked (at 1 -2.1 270) (size 1.508 1.508) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)") (pinfunction "D-") (pintype "bidirectional") (tstamp bd5d78ce-4eaf-49e1-9107-7cf1838b8e69))
(pad "3" thru_hole circle locked (at -1 -2.1 270) (size 1.508 1.508) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(D2-Pad1)") (pinfunction "D+") (pintype "bidirectional") (tstamp ff1f9320-7c59-4db6-8944-02e4cc5c5a0e))
(pad "4" thru_hole circle locked (at -3.5 -2.1 270) (size 1.508 1.508) (drill 1) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "GND") (pintype "power_in") (tstamp 83999e80-cec0-43ee-996e-b36eba9ddf9b))
(pad "S1" thru_hole oval locked (at 5.7 0 270) (size 1.575 3.15) (drill oval 1.05 2.6) (layers *.Cu *.Mask) (tstamp add5e2c3-999f-4d0c-b6ee-53fae7df9c89))
(pad "S2" thru_hole oval locked (at -5.7 0 270) (size 1.575 3.15) (drill oval 1.05 2.6) (layers *.Cu *.Mask) (tstamp 61c468ed-fe02-47a1-a48e-7cc672c1b065))
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tedit 5A02FF57) (tstamp c17d204b-9a4d-40da-8d8a-03f01fb0e72b)
(at 185.95 87.25 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/c7a0303d-1651-4d92-90e6-071f900a2e75")
(attr smd)
(fp_text reference "U2" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b2f557c-6213-455c-8b3f-376d6354678f)
)
(fp_text value "AMS1117-3.3" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f40ca26c-9ffa-4e08-897d-00bcd8d73371)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 40dabfba-97f6-4da8-a951-347257fe80a6)
)
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 35362cef-58bc-4566-a229-47d027f6e83c))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 6fc2ba4a-8a3e-40b2-8cf9-6fe5ad303d54))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 9a16720c-a198-4375-9cee-8a7556e93060))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp c2000aa4-32b2-4d86-b7f8-1a071082a737))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 2628d1f4-dd8d-4d5f-8410-35ce482b30a6))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 86142fbd-0e32-4bc2-a57e-10e5d8b9ccf6))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp aa5ea61e-9237-493d-aa73-70d881cf681d))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp c267da0c-7e4a-4348-b659-fd7dd97a3aff))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 666675e8-10d4-4364-af85-56eba45427b5))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 791c46de-6ac5-4845-9b5e-afd4a935ecb8))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 7b0f882d-2304-408a-a2ae-c3d9c74a9e90))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 7e6cf7ea-80fc-4208-af77-869f67cf2520))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp d3d62c11-1684-4c11-87b8-549c71641de7))
(pad "1" smd rect (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/GND") (pinfunction "GND") (pintype "power_in") (tstamp fddc1b28-c49d-40f7-8b1d-e5d8e6368c9f))
(pad "2" smd rect (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/3V3") (pinfunction "VO") (pintype "power_out") (tstamp 4cbe445a-7667-43df-bd25-f34795491ed2))
(pad "2" smd rect (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/3V3") (pinfunction "VO") (pintype "power_out") (tstamp e75712d4-8fde-46d4-a94f-9b8be5a83447))
(pad "3" smd rect (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/5V") (pinfunction "VI") (pintype "power_in") (tstamp 308d5c84-e6cf-42dd-8f38-2ccac82f94f5))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.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 ca97f5b6-0661-411c-adf5-fae0f6dd46af)
(at 179.81 81.8 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" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/8f73990c-1d91-4ef7-9847-b48846611bf6")
(attr through_hole)
(fp_text reference "R3" (at 3.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2207db0-1a99-4b63-a210-d081497b7bb5)
)
(fp_text value "66" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d4cd474-928a-41de-850e-234b029a2c0b)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4f94c4b-6c41-4362-94ca-afadd4c77313)
)
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6de6d198-960b-4f64-80a2-e63ea87fd605))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 840f5a81-e17b-4b44-9cb5-416ed21c30e6))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 85be60b8-fcf5-4069-9c27-3a4bf099bcce))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp b625b7fb-bf44-4c13-b146-7bb4f606b830))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b722e2b2-6b7c-405d-84d0-829b934c1e74))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp d2f01276-a88d-4d58-9329-ea2048276534))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 501abd57-62f1-4d6b-9f0b-d93466dec9a8))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2c6fc9a-d107-4ad3-b3ff-71e1a38cebda))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b4ba3465-fe75-42a4-8d56-3f5a3c97d1cf))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b555fe2b-067b-4f25-b85e-0aa2476953ac))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 02444ae1-b5bd-4f75-8f02-cbd8d8cf0922))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 1864cd97-76f2-4540-b819-e1d9be09eb95))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 45d0b1fb-7ecf-4d51-b344-9aa29525e6b4))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 53804472-e6ff-4a3f-8d2f-7637eae790fa))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 87e6c90e-7bb8-4989-b934-e3c932d62d8b))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 896d58f0-c075-430a-9879-e9be958c4abd))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/PB3") (pintype "passive") (tstamp 3cf4aca4-1593-4ab4-b3b5-43b40f274f40))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)") (pintype "passive") (tstamp 8c06f0de-5ac3-4f43-b811-70b7c3097f32))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp da2c0db5-f90d-432c-8bbc-90ead57a6780)
(at 179.81 84.9 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" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/1c65aa00-c624-4481-bda9-4456ca3f353d")
(attr through_hole)
(fp_text reference "R2" (at 3.81 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51742393-b290-4470-aa70-51767b0fe00f)
)
(fp_text value "66" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bbdd69e-09d9-4d27-8cb3-1d4f0cab51ec)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ca217a5-6bc9-4be2-8ba2-b71c39e53050)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 48e73d11-444b-4a18-a0ca-66b14b48e052))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6e3e66dd-1d13-4e77-b016-600294666db0))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8075da0a-40c7-4eb5-a627-c0b6748d05f0))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a52f0308-d2c0-4e7e-94c3-e6d06922c560))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp ce2b1e14-aa00-4476-8079-815e83ae97e6))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp e0a7846a-8971-4982-a75d-dfb97ea4f836))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3e08e1fd-6170-454c-885e-09cc91adcde3))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4901ee86-d78b-42ef-a504-237ea4dc7f28))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 528087f5-562a-4999-9f03-fe8a5c3fa6e3))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp dd574a3c-9c87-452e-a8f9-51d7a4544ff8))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3551239c-d204-4296-ad26-9d98535ebf08))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 420cb561-7e1f-4e5f-b349-17fc281cf5e3))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 7eb1889d-ff6d-4cd5-a651-5ad96e238fd3))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 8ac13a8c-b0f0-4407-8d11-dc46d793cf61))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 8d441519-4ec0-46fb-b77b-054d8296722d))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp e1479b5d-9638-4314-b05e-bb90bf12fef8))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/PB4") (pintype "passive") (tstamp a52286e5-efcd-4c12-a288-fe34a90c617b))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(D2-Pad1)") (pintype "passive") (tstamp 61541f1f-7892-4bb1-8cca-83b46201397f))
(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 "Diode_THT:D_DO-34_SOD68_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp dcfbd885-3a97-4815-abc3-8615d7ffeb74)
(at 172.2 87.5)
(descr "Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf")
(tags "Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm")
(property "Sheetfile" "File: attiny85.kicad_sch")
(property "Sheetname" "")
(path "/88d63fdb-5153-44df-995c-837028a0aeca")
(attr through_hole)
(fp_text reference "D2" (at 3.81 -1.92) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3b1ace7-c6db-40f1-8dd7-cec63af1251f)
)
(fp_text value "3.6 Zener" (at 3.81 1.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c61bcdbd-fda7-4167-8a3e-e7d3b9ac190b)
)
(fp_text user "K" (at 0 -1.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3aa160ea-d13f-46eb-a5bc-59c1fa5efa2d)
)
(fp_text user "${REFERENCE}" (at 4.038 0) (layer "F.Fab")
(effects (font (size 0.608 0.608) (thickness 0.0912)))
(tstamp 853c35b5-f219-4adf-8529-03647af1d9be)
)
(fp_text user "K" (at 0 -1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd018e95-616a-4b4d-997d-4a96e78fc7f9)
)
(fp_line (start 0.99 0) (end 2.17 0) (layer "F.SilkS") (width 0.12) (tstamp 0dd5c155-7fc6-4bfe-8bb1-f2adee87a784))
(fp_line (start 2.626 -0.92) (end 2.626 0.92) (layer "F.SilkS") (width 0.12) (tstamp 14dc1de2-d781-4901-862f-a8fdff8f1cd3))
(fp_line (start 2.746 -0.92) (end 2.746 0.92) (layer "F.SilkS") (width 0.12) (tstamp 37cfa6e7-761e-4213-9df8-56993a6877c4))
(fp_line (start 2.17 0.92) (end 5.45 0.92) (layer "F.SilkS") (width 0.12) (tstamp 37e04126-3adf-40a4-8704-85bbd49ecf5f))
(fp_line (start 6.63 0) (end 5.45 0) (layer "F.SilkS") (width 0.12) (tstamp 4595be9f-9d98-4efb-88bb-79f3257f2c5a))
(fp_line (start 5.45 -0.92) (end 2.17 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 90682d1b-9e80-451e-b093-dad8975a7b32))
(fp_line (start 5.45 0.92) (end 5.45 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 99016e8d-704d-46cc-8fec-e9bf0bb84e43))
(fp_line (start 2.866 -0.92) (end 2.866 0.92) (layer "F.SilkS") (width 0.12) (tstamp 9a96c660-0066-434c-b575-81a9673f3449))
(fp_line (start 2.17 -0.92) (end 2.17 0.92) (layer "F.SilkS") (width 0.12) (tstamp a1b7255b-2ff1-4ab2-b610-3e5c5a045961))
(fp_line (start 8.63 -1.05) (end -1 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 233145b9-02ef-4f18-b934-16fc61f4e5d4))
(fp_line (start -1 -1.05) (end -1 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 40e62a5e-7f6f-464d-8466-310dd7f3d2c1))
(fp_line (start 8.63 1.05) (end 8.63 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp a9f4d328-0c76-4b3d-9e5f-60cbb03be92f))
(fp_line (start -1 1.05) (end 8.63 1.05) (layer "F.CrtYd") (width 0.05) (tstamp c5d2cec8-ec93-48ce-9012-9d83bd9c52f4))
(fp_line (start 2.29 0.8) (end 5.33 0.8) (layer "F.Fab") (width 0.1) (tstamp 285d149c-8e42-4cf5-a5c3-a546ed1e485c))
(fp_line (start 5.33 0.8) (end 5.33 -0.8) (layer "F.Fab") (width 0.1) (tstamp 2fa7eedb-f115-418c-a4a8-25567ecbcf43))
(fp_line (start 2.846 -0.8) (end 2.846 0.8) (layer "F.Fab") (width 0.1) (tstamp 54a38c1d-fb87-4d95-859b-6e05471cee51))
(fp_line (start 2.646 -0.8) (end 2.646 0.8) (layer "F.Fab") (width 0.1) (tstamp 8da7a72f-8ea2-4518-9174-7eceded439f3))
(fp_line (start 2.746 -0.8) (end 2.746 0.8) (layer "F.Fab") (width 0.1) (tstamp 8e6caadd-4a10-4c02-872a-f5385e58ea2c))
(fp_line (start 0 0) (end 2.29 0) (layer "F.Fab") (width 0.1) (tstamp b3377c8f-0f44-44b2-98ba-a76553beb630))
(fp_line (start 2.29 -0.8) (end 2.29 0.8) (layer "F.Fab") (width 0.1) (tstamp d3e12b5e-2445-4741-b615-bd1f980df17a))
(fp_line (start 7.62 0) (end 5.33 0) (layer "F.Fab") (width 0.1) (tstamp da5b6ae4-7444-455c-895d-5d63569808be))
(fp_line (start 5.33 -0.8) (end 2.29 -0.8) (layer "F.Fab") (width 0.1) (tstamp f3fcd011-21c1-47c8-a7e0-d2ef3c557250))
(pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 2 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 46921d2a-6afa-49fa-b25e-ca4197ba2314))
(pad "2" thru_hole oval (at 7.62 0) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 9 "/GND") (pinfunction "A") (pintype "passive") (tstamp 64b0c84c-afa8-4c35-9fb3-d7d5aac0fb49))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-34_SOD68_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Symbol:OSHW-Logo2_14.6x12mm_SilkScreen" (layer "B.Cu")
(tedit 0) (tstamp 3065bbe6-99b4-4d53-941c-10e9b1a62d22)
(at 186.1 86.8 180)
(descr "Open Source Hardware Symbol")
(tags "Logo Symbol OSHW")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 0) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ec08ba18-6ce8-4e9d-9d28-2b2c98ed4ee9)
)
(fp_text value "OSHW-Logo2_14.6x12mm_SilkScreen" (at 0.75 0) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9e9cba39-d94d-4d4d-a199-574c475819a8)
)
(fp_poly (pts
(xy -3.684448 -3.884676)
(xy -3.569342 -3.962111)
(xy -3.480389 -4.073949)
(xy -3.427251 -4.216265)
(xy -3.416503 -4.321015)
(xy -3.417724 -4.364726)
(xy -3.427944 -4.398194)
(xy -3.456039 -4.428179)
(xy -3.510884 -4.46144)
(xy -3.601355 -4.504738)
(xy -3.736328 -4.564833)
(xy -3.737011 -4.565134)
(xy -3.861249 -4.622037)
(xy -3.963127 -4.672565)
(xy -4.032233 -4.71128)
(xy -4.058154 -4.73274)
(xy -4.058161 -4.732913)
(xy -4.035315 -4.779644)
(xy -3.981891 -4.831154)
(xy -3.920558 -4.868261)
(xy -3.889485 -4.875632)
(xy -3.804711 -4.850138)
(xy -3.731707 -4.786291)
(xy -3.696087 -4.716094)
(xy -3.66182 -4.664343)
(xy -3.594697 -4.605409)
(xy -3.515792 -4.554496)
(xy -3.446179 -4.526809)
(xy -3.431623 -4.525287)
(xy -3.415237 -4.550321)
(xy -3.41425 -4.614311)
(xy -3.426292 -4.700593)
(xy -3.448993 -4.792501)
(xy -3.479986 -4.873369)
(xy -3.481552 -4.876509)
(xy -3.574819 -5.006734)
(xy -3.695696 -5.095311)
(xy -3.832973 -5.138786)
(xy -3.97544 -5.133706)
(xy -4.111888 -5.076616)
(xy -4.117955 -5.072602)
(xy -4.22529 -4.975326)
(xy -4.295868 -4.848409)
(xy -4.334926 -4.681526)
(xy -4.340168 -4.634639)
(xy -4.349452 -4.413329)
(xy -4.338322 -4.310124)
(xy -4.058161 -4.310124)
(xy -4.054521 -4.374503)
(xy -4.034611 -4.393291)
(xy -3.984974 -4.379235)
(xy -3.906733 -4.346009)
(xy -3.819274 -4.304359)
(xy -3.817101 -4.303256)
(xy -3.74297 -4.264265)
(xy -3.713219 -4.238244)
(xy -3.720555 -4.210965)
(xy -3.751447 -4.175121)
(xy -3.83004 -4.123251)
(xy -3.914677 -4.119439)
(xy -3.990597 -4.157189)
(xy -4.043035 -4.230001)
(xy -4.058161 -4.310124)
(xy -4.338322 -4.310124)
(xy -4.330356 -4.236261)
(xy -4.281366 -4.095829)
(xy -4.213164 -3.997447)
(xy -4.090065 -3.89803)
(xy -3.954472 -3.848711)
(xy -3.816045 -3.845568)
(xy -3.684448 -3.884676)
) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 0101cfaf-ed9a-4e14-940c-1596db6b3447))
(fp_poly (pts
(xy 6.343439 -3.95654)
(xy 6.45895 -4.032034)
(xy 6.514664 -4.099617)
(xy 6.558804 -4.222255)
(xy 6.562309 -4.319298)
(xy 6.554368 -4.449056)
(xy 6.255115 -4.580039)
(xy 6.109611 -4.646958)
(xy 6.014537 -4.70079)
(xy 5.965101 -4.747416)
(xy 5.956511 -4.79272)
(xy 5.983972 -4.842582)
(xy 6.014253 -4.875632)
(xy 6.102363 -4.928633)
(xy 6.198196 -4.932347)
(xy 6.286212 -4.891041)
(xy 6.350869 -4.808983)
(xy 6.362433 -4.780008)
(xy 6.417825 -4.689509)
(xy 6.481553 -4.65094)
(xy 6.568966 -4.617946)
(xy 6.568966 -4.743034)
(xy 6.561238 -4.828156)
(xy 6.530966 -4.899938)
(xy 6.467518 -4.982356)
(xy 6.458088 -4.993066)
(xy 6.387513 -5.066391)
(xy 6.326847 -5.105742)
(xy 6.25095 -5.123845)
(xy 6.18803 -5.129774)
(xy 6.075487 -5.131251)
(xy 5.99537 -5.112535)
(xy 5.94539 -5.084747)
(xy 5.866838 -5.023641)
(xy 5.812463 -4.957554)
(xy 5.778052 -4.874441)
(xy 5.759388 -4.762254)
(xy 5.752256 -4.608946)
(xy 5.751687 -4.531136)
(xy 5.753622 -4.437853)
(xy 5.929899 -4.437853)
(xy 5.931944 -4.487896)
(xy 5.937039 -4.496092)
(xy 5.970666 -4.484958)
(xy 6.04303 -4.455493)
(xy 6.139747 -4.413601)
(xy 6.159973 -4.404597)
(xy 6.282203 -4.342442)
(xy 6.349547 -4.287815)
(xy 6.364348 -4.236649)
(xy 6.328947 -4.184876)
(xy 6.299711 -4.162)
(xy 6.194216 -4.11625)
(xy 6.095476 -4.123808)
(xy 6.012812 -4.179651)
(xy 5.955548 -4.278753)
(xy 5.937188 -4.357414)
(xy 5.929899 -4.437853)
(xy 5.753622 -4.437853)
(xy 5.755459 -4.349351)
(xy 5.769359 -4.214853)
(xy 5.796894 -4.116916)
(xy 5.841572 -4.044811)
(xy 5.906901 -3.987813)
(xy 5.935383 -3.969393)
(xy 6.064763 -3.921422)
(xy 6.206412 -3.918403)
(xy 6.343439 -3.95654)
) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 12e3ca7b-c108-4587-8fe6-442b2fcc0313))
(fp_poly (pts
(xy -1.255402 -3.723857)
(xy -1.246846 -3.843188)
(xy -1.237019 -3.913506)
(xy -1.223401 -3.944179)
(xy -1.203473 -3.944571)
(xy -1.197011 -3.94091)
(xy -1.11106 -3.914398)
(xy -0.999255 -3.915946)
(xy -0.885586 -3.943199)
(xy -0.81449 -3.978455)
(xy -0.741595 -4.034778)
(xy -0.688307 -4.098519)
(xy -0.651725 -4.17951)
(xy -0.62895 -4.287586)
(xy -0.617081 -4.43258)
(xy -0.613218 -4.624326)
(xy -0.613149 -4.661109)
(xy -0.613103 -5.074288)
(xy -0.705046 -5.106339)
(xy -0.770348 -5.128144)
(xy -0.806176 -5.138297)
(xy -0.80723 -5.138391)
(xy -0.810758 -5.11086)
(xy -0.813761 -5.034923)
(xy -0.81601 -4.920565)
(xy -0.817276 -4.777769)
(xy -0.817471 -4.690951)
(xy -0.817877 -4.519773)
(xy -0.819968 -4.397088)
(xy -0.825053 -4.313)
(xy -0.83444 -4.257614)
(xy -0.849439 -4.221032)
(xy -0.871358 -4.193359)
(xy -0.885043 -4.180032)
(xy -0.979051 -4.126328)
(xy -1.081636 -4.122307)
(xy -1.17471 -4.167725)
(xy -1.191922 -4.184123)
(xy -1.217168 -4.214957)
(xy -1.23468 -4.251531)
(xy -1.245858 -4.304415)
(xy -1.252104 -4.384177)
(xy -1.254818 -4.501385)
(xy -1.255402 -4.662991)
(xy -1.255402 -5.074288)
(xy -1.347345 -5.106339)
(xy -1.412647 -5.128144)
(xy -1.448475 -5.138297)
(xy -1.449529 -5.138391)
(xy -1.452225 -5.110448)
(xy -1.454655 -5.03163)
(xy -1.456722 -4.909453)
(xy -1.458329 -4.751432)
(xy -1.459377 -4.565083)
(xy -1.459769 -4.35792)
(xy -1.45977 -4.348706)
(xy -1.45977 -3.55902)
(xy -1.364885 -3.518997)
(xy -1.27 -3.478973)
(xy -1.255402 -3.723857)
) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 394c996e-51ed-4a12-b4df-85e773506240))
(fp_poly (pts
(xy 1.065943 -3.92192)
(xy 1.198565 -3.970859)
(xy 1.30601 -4.057419)