-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAmigaExternalBoard.kicad_pcb
5742 lines (5711 loc) · 256 KB
/
AmigaExternalBoard.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)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "Net-(J1-Pad24)")
(net 2 "Net-(J1-Pad23)")
(net 3 "Net-(J2-Pad1)")
(net 4 "CLK(ROT)")
(net 5 "DT(ROT)")
(net 6 "SCL(DSP)")
(net 7 "SDA(DSP)")
(net 8 "JB1(SPK)")
(net 9 "JB0(SPK)")
(net 10 "GND")
(net 11 "+3V3")
(net 12 "+5V")
(net 13 "Net-(J3-Pad2)")
(net 14 "Net-(J3-Pad1)")
(net 15 "JA0(ROT-SW)")
(net 16 "SW3_3")
(net 17 "SW3_2")
(net 18 "SW3_1")
(net 19 "SW2_3")
(net 20 "SW2_2")
(net 21 "SW2_1")
(net 22 "SW1_3")
(net 23 "SW1_2")
(net 24 "SW1_1")
(net 25 "Net-(DSP1-Pad2)")
(net 26 "Net-(DSP1-Pad1)")
(net 27 "GotekBTN1")
(net 28 "GotekBTN2")
(net 29 "GotekLED")
(footprint "Connector_FFC-FPC:Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal" (layer "F.Cu")
(tedit 5D24667B) (tstamp 00000000-0000-0000-0000-0000607f9a24)
(at 177.8762 63.246 180)
(descr "Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator")
(tags "connector Hirose FH12 horizontal")
(path "/00000000-0000-0000-0000-0000607f3d3a")
(attr smd)
(fp_text reference "J1" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cad0e0a5-e090-47b6-9c7e-5646166054cc)
)
(fp_text value "Conn_01x24" (at 0 5.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82de8101-e69e-46ad-a71c-f2b9639ad15f)
)
(fp_text user "${REFERENCE}" (at 0 3.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed9fa1a5-849a-4bc5-a892-57bb26505f70)
)
(fp_line (start 7.65 -1.3) (end 7.65 0.04) (layer "F.SilkS") (width 0.12) (tstamp 0914b3b5-696b-41fd-a61e-3b3dabec2b73))
(fp_line (start -7.65 -1.3) (end -7.65 0.04) (layer "F.SilkS") (width 0.12) (tstamp 18ed410d-9464-4206-ba22-b59ce3a1da32))
(fp_line (start -6.16 -1.3) (end -6.16 -2.5) (layer "F.SilkS") (width 0.12) (tstamp 1fad5b1b-d28e-48b5-8470-3cf82203a2ae))
(fp_line (start -6.16 -1.3) (end -7.65 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 4aea7f0a-c878-44f5-9681-2619ef136f96))
(fp_line (start -7.65 4.5) (end 7.65 4.5) (layer "F.SilkS") (width 0.12) (tstamp 5a97eb1b-8b68-40ae-83ba-80bec9dfa8dd))
(fp_line (start 6.16 -1.3) (end 7.65 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 9ace58de-cc2c-4455-993c-69b96c5a15ed))
(fp_line (start -7.65 2.76) (end -7.65 4.5) (layer "F.SilkS") (width 0.12) (tstamp a5a0de9b-d3eb-4585-a75c-ea399991b773))
(fp_line (start 7.65 4.5) (end 7.65 2.76) (layer "F.SilkS") (width 0.12) (tstamp a9596665-4042-42a8-8268-b49bc49ca47c))
(fp_line (start 9.05 -3) (end -9.05 -3) (layer "F.CrtYd") (width 0.05) (tstamp 2c1dbc29-407e-40d8-bda6-83319f05b184))
(fp_line (start -9.05 4.9) (end 9.05 4.9) (layer "F.CrtYd") (width 0.05) (tstamp 76340907-893c-47b7-8449-3a4fb6f4728f))
(fp_line (start -9.05 -3) (end -9.05 4.9) (layer "F.CrtYd") (width 0.05) (tstamp c6026e05-ee14-4392-ad42-2d3e2e63a7be))
(fp_line (start 9.05 4.9) (end 9.05 -3) (layer "F.CrtYd") (width 0.05) (tstamp d16330f4-d887-4d75-a0f2-a4afe2158f95))
(fp_line (start 7.45 4.4) (end 0 4.4) (layer "F.Fab") (width 0.1) (tstamp 00b5ea32-5d7f-42cb-93cf-0d064ffe3cbb))
(fp_line (start -6.95 3.4) (end -6.95 3.7) (layer "F.Fab") (width 0.1) (tstamp 1a8f5f98-8c7f-4ad0-abb1-fac4a4e7f018))
(fp_line (start 7.55 -1.2) (end 7.55 3.4) (layer "F.Fab") (width 0.1) (tstamp 2ff414a9-7ad7-4303-864d-52f634f9b63f))
(fp_line (start -6.25 -1.2) (end -5.75 -0.492893) (layer "F.Fab") (width 0.1) (tstamp 39899db8-f0dc-4b66-8b12-ca632f3bec6f))
(fp_line (start -7.45 4.4) (end 0 4.4) (layer "F.Fab") (width 0.1) (tstamp 432f9622-430c-49e9-807d-664669a24ca4))
(fp_line (start 6.95 3.7) (end 7.45 3.7) (layer "F.Fab") (width 0.1) (tstamp a7af4066-e336-4357-8b7e-b1a252b83db8))
(fp_line (start 0 -1.2) (end -7.55 -1.2) (layer "F.Fab") (width 0.1) (tstamp b24ff98d-9760-4deb-bc24-051bd8163479))
(fp_line (start -7.55 -1.2) (end -7.55 3.4) (layer "F.Fab") (width 0.1) (tstamp b5acda3b-ae9d-4818-af46-029bbd299b85))
(fp_line (start 7.55 3.4) (end 6.95 3.4) (layer "F.Fab") (width 0.1) (tstamp c4106e2f-aadd-40a9-b5cb-8eda8fee9f06))
(fp_line (start -7.55 3.4) (end -6.95 3.4) (layer "F.Fab") (width 0.1) (tstamp ca0466fd-de85-41c8-ac95-a075aa123542))
(fp_line (start -6.95 3.7) (end -7.45 3.7) (layer "F.Fab") (width 0.1) (tstamp cf68a671-6af6-4596-b126-0caf486a2067))
(fp_line (start -7.45 3.7) (end -7.45 4.4) (layer "F.Fab") (width 0.1) (tstamp d049811d-012f-44e4-9897-96e83ffea36d))
(fp_line (start 7.45 3.7) (end 7.45 4.4) (layer "F.Fab") (width 0.1) (tstamp e647c8fd-d7ec-4e41-8ba0-a524672d0509))
(fp_line (start 0 -1.2) (end 7.55 -1.2) (layer "F.Fab") (width 0.1) (tstamp e73b2b8e-6851-435d-909b-d4300f37d2b1))
(fp_line (start -5.75 -0.492893) (end -5.25 -1.2) (layer "F.Fab") (width 0.1) (tstamp e9c893ed-8067-473b-a5a2-0d2bdd90a639))
(fp_line (start 6.95 3.4) (end 6.95 3.7) (layer "F.Fab") (width 0.1) (tstamp ef167df3-10d1-4639-b667-54a44454cb01))
(pad "1" smd rect locked (at -5.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "+5V") (tstamp f2d71532-e42c-42c4-ab82-ba984e2494e8))
(pad "2" smd rect locked (at -5.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp 8d6419e4-4af0-4251-b05e-de12ce96744a))
(pad "3" smd rect locked (at -4.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (tstamp 6b4820a1-34d7-45e4-bc02-040ce9adb6e1))
(pad "4" smd rect locked (at -4.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SDA(DSP)") (tstamp 6279546b-f160-4dd1-b67c-6bfc6c077f55))
(pad "5" smd rect locked (at -3.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "SCL(DSP)") (tstamp 4f285a67-434a-49bc-81d8-9c22771e0db1))
(pad "6" smd rect locked (at -3.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "JB0(SPK)") (tstamp b0a66a02-4115-4a9d-a336-ea62d6341f08))
(pad "7" smd rect locked (at -2.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "JB1(SPK)") (tstamp f1e80898-8f0e-41f8-90a2-4980f6b132d7))
(pad "8" smd rect locked (at -2.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "JA0(ROT-SW)") (tstamp 3315afc2-4126-4a4b-ae5a-abc980b9b30d))
(pad "9" smd rect locked (at -1.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "DT(ROT)") (tstamp 03ab7be2-9428-48ec-85fa-c1800bc4d918))
(pad "10" smd rect locked (at -1.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "CLK(ROT)") (tstamp f4800b24-5a47-4ec9-90e9-dbaae9c2783d))
(pad "11" smd rect locked (at -0.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "SW1_1") (tstamp 3127d3a3-b303-4798-86b8-210abb5c2e3b))
(pad "12" smd rect locked (at -0.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "SW1_2") (tstamp 5bbd5dba-3878-46dd-bf8c-3a533265c979))
(pad "13" smd rect locked (at 0.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "SW1_3") (tstamp 6bc0d0ba-a5b7-438a-bf29-541ab5b45c53))
(pad "14" smd rect locked (at 0.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "SW2_1") (tstamp 883c6351-3513-472a-aaa2-52514eb3f19a))
(pad "15" smd rect locked (at 1.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "SW2_2") (tstamp d14e5b22-9067-45e1-9131-8dd992440c66))
(pad "16" smd rect locked (at 1.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "SW2_3") (tstamp c75d4af0-f170-47eb-b5ab-b5569d6e6309))
(pad "17" smd rect locked (at 2.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "SW3_1") (tstamp cadfba63-0eea-462f-b330-6b07c566d28f))
(pad "18" smd rect locked (at 2.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "SW3_2") (tstamp 30245193-26ef-4caa-9f86-ae4eaccb6b98))
(pad "19" smd rect locked (at 3.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "SW3_3") (tstamp 7ea680d2-113c-4863-a38e-923b9b608d07))
(pad "20" smd rect locked (at 3.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "GotekBTN1") (tstamp 8a36ee86-97ca-4250-aba0-478f6540b0da))
(pad "21" smd rect locked (at 4.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "GotekBTN2") (tstamp 517d8ea6-39bc-4854-b153-5e399bc0eac4))
(pad "22" smd rect locked (at 4.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "GotekLED") (tstamp 9846d472-1163-4a83-9038-3b185ed66655))
(pad "23" smd rect locked (at 5.25 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(J1-Pad23)") (tstamp 47946b9e-e44f-425c-991f-763b949590bd))
(pad "24" smd rect locked (at 5.75 -1.85 180) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(J1-Pad24)") (tstamp 282bbe70-5c88-45c0-98f1-5775ef51d30e))
(pad "MP" smd rect locked (at -7.65 1.4 180) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3810ef8-9097-449a-b79e-1bef5e0ef6f6))
(pad "MP" smd rect locked (at 7.65 1.4 180) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c9b466c6-4384-4a80-8aa0-50d9b2fa1778))
(model "${KISYS3DMOD}/Connector_FFC-FPC.3dshapes/Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x12_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-0000607f9a52)
(at 163.9062 87.757 90)
(descr "Through hole straight pin header, 2x12, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x12 2.54mm double row")
(path "/00000000-0000-0000-0000-0000607f5a5e")
(attr through_hole)
(fp_text reference "J2" (at 1.27 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ce1b904-e29b-47ee-9dea-92ed145590eb)
)
(fp_text value "Conn_01x24" (at 1.27 30.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92fd76a7-cca2-4a8d-bb3c-7893e60f30b4)
)
(fp_text user "${REFERENCE}" (at 1.27 13.97) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2aec5807-efb5-47f3-803c-b9e102ec3b8e)
)
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 148c99d8-add4-43b2-88c3-d0c51c653a81))
(fp_line (start -1.33 29.27) (end 3.87 29.27) (layer "F.SilkS") (width 0.12) (tstamp 60c7bdfe-45b5-4b87-97f6-13bb77105381))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7ac65368-5cd4-480e-98d7-ffded31bd717))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a0810f4f-b090-4840-8b15-6d2bd0c8e475))
(fp_line (start 3.87 -1.33) (end 3.87 29.27) (layer "F.SilkS") (width 0.12) (tstamp a6a9956f-4e0f-4ca8-b127-32b5f7463d7a))
(fp_line (start -1.33 1.27) (end -1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp a6e205ca-85ff-4b38-a680-2a8803bcb5d9))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ce61e73e-b39b-4a4a-9f95-4ed37fba9451))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d179153a-a7b3-475a-ac65-ff7bb0ae9124))
(fp_line (start -1.8 -1.8) (end -1.8 29.75) (layer "F.CrtYd") (width 0.05) (tstamp 098d4763-e2f2-4d80-a0f5-561f62339a5b))
(fp_line (start -1.8 29.75) (end 4.35 29.75) (layer "F.CrtYd") (width 0.05) (tstamp 0e613cf3-d337-4375-8fdc-2737f8e4a252))
(fp_line (start 4.35 29.75) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp afd4820b-b3c7-4e50-845c-04162590e615))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d445d584-c134-4939-9eae-265f51331b18))
(fp_line (start 3.81 29.21) (end -1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp 8e6f6a52-ac10-4701-b66c-5abaa269a5eb))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9b5e76d0-5e5f-4042-8d7b-4a03f76239b7))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp a605c033-b4b3-48b5-9c07-134a5f905228))
(fp_line (start 3.81 -1.27) (end 3.81 29.21) (layer "F.Fab") (width 0.1) (tstamp b8c0b560-739b-4f52-bd0d-8b755d73f416))
(fp_line (start -1.27 29.21) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp d626ed90-5ade-4641-8f36-8e64741896ed))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(J2-Pad1)") (tstamp 28b53f2d-311e-457c-9765-be80dfcbe941))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "GotekLED") (tstamp 3683f5a3-10bc-4cfc-96d8-a89a4cff6c6c))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "GotekBTN2") (tstamp a9519bfa-48e7-4d19-9233-61583e208bac))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "GotekBTN1") (tstamp 787796f8-e331-43b8-8123-f57bc0c9dd16))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "SW3_3") (tstamp 1bb3a2f1-98ac-4189-973f-2475da868c07))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "SW3_2") (tstamp fe7eb975-4ac3-465a-b6c8-e5042b00ba80))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "SW3_1") (tstamp 157bf9da-f17e-4029-a6cd-1aa9b0309ad8))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "SW2_3") (tstamp f43553e5-a5ad-4f16-ae69-d41f092655de))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "SW2_2") (tstamp 8cb53419-50ea-4ba7-88bc-43bf20df5b98))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "SW2_1") (tstamp d083d8bd-a402-432e-92c7-6a691adeaf99))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "SW1_3") (tstamp c7491a70-d93f-4e8d-be90-14721a2ed13a))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "SW1_2") (tstamp a980e89f-5b1d-4832-9ef8-852b32630f2e))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "SW1_1") (tstamp ae4db3c0-8e56-4356-9e37-a5859fa0abb1))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "CLK(ROT)") (tstamp 5a8248de-db47-4256-9a33-bf6ad6cee876))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "DT(ROT)") (tstamp 28c65f45-9752-4a1f-874c-0805125043a6))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "JA0(ROT-SW)") (tstamp 47b5a1ca-9230-43f8-bf41-4a9ca9b3ced0))
(pad "17" thru_hole oval locked (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "JB1(SPK)") (tstamp f57ae995-25e4-439a-9a39-06d01748efe2))
(pad "18" thru_hole oval locked (at 2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "JB0(SPK)") (tstamp 53e27d6c-ae0c-47b2-a2b0-2d88c68bd2be))
(pad "19" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "SDA(DSP)") (tstamp 7e5dc531-0713-46ab-bb19-0962e293877b))
(pad "20" thru_hole oval locked (at 2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "SCL(DSP)") (tstamp 31f19081-3356-40cb-868b-bf318ca7ad55))
(pad "21" thru_hole oval locked (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp e9dd014a-3c56-4e81-a335-0f09bebce5b0))
(pad "22" thru_hole oval locked (at 2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp e6f6efc6-aa8d-4f7f-a235-d58964788c02))
(pad "23" thru_hole oval locked (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "+3V3") (tstamp ad941816-4d54-4f5d-ab03-4dda24f8231a))
(pad "24" thru_hole oval locked (at 2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "+5V") (tstamp 00e5e337-4249-445e-90e3-3e03a7563bca))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x12_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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00006080673a)
(at 185.4962 69.342 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00006080ddb0")
(attr through_hole)
(fp_text reference "R1" (at 6.096 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 611bebc6-f006-4ca4-a463-33f97aae109c)
)
(fp_text value "R-OptionalPullup-SCL" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9dcc65ae-1eb4-4409-9530-fd0b427d3722)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8589f83-11a8-4439-97a2-7a2e043f4d1e)
)
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0a5e9f51-4f6f-4544-9df5-fa9f84a527d0))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 4e63f435-c53b-446f-9dec-def8d9896049))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 6b9bdf1f-9197-42cb-9eed-9218b90c6d7a))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b8888b45-c86f-496c-af8d-d661d338241d))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp cb6b63b6-5db8-4d3d-afbd-511f88244f24))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp d656087e-d194-44ee-8bab-98219cb06b01))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 122d63bb-b894-48cc-9670-59259038596f))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5541b654-673e-4ca9-89ed-68bc2be117b4))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5a5d96e2-97b2-4f67-a3ab-68a7782cc48a))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7af79c69-1c5b-4fe4-9e4f-23a1d90b9a76))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 02ee5ade-bde1-4ec8-9e48-562efc89f10f))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 030aba1f-0731-461c-aa4b-2436bb821929))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 09db1a4d-e9f5-4592-90ff-962d7e3104b7))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 3265082a-c614-4cd9-a25d-119b2a9c642c))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp dbb6561f-f84b-4112-acd5-400ac032d659))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp ef242f09-de3b-47cd-9be7-b968fcc4e380))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "+5V") (tstamp 2d12b120-ed48-4f40-85de-76cd381eb260))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "SCL(DSP)") (tstamp e448f7c5-3fb8-4119-99d3-8ab8cdf43110))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000060806751)
(at 188.8122 69.342 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00006080e696")
(attr through_hole)
(fp_text reference "R2" (at 6.35 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5dcac2a-88bb-4d55-b340-84cc12a41ffc)
)
(fp_text value "R-OptionalPullup-SDA" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fe100d0-c5ab-41c1-b22c-022b33ca0708)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d509ebba-7d7e-4ad9-aacc-d944537c6283)
)
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0e01fa03-f921-4f19-8916-2a9c9bbb5682))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 15cd2b22-f7b0-4a9b-95a6-413a5137813f))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 38cd53b4-10a1-4c6e-91d3-06d4c736454f))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3fdd71a7-8937-4838-b687-f1b06092e6f9))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp a41a5cd2-fa8a-4025-b4d4-8af4a4957e9f))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp d07613a4-2e50-4acd-ae69-aa89b676b837))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 41055288-0a46-4742-8ae0-08e6e051843e))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 850d6d27-a8ef-4aa7-a8b8-a3155c884da6))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8e446cc0-2c93-477d-a748-ac5bf14be75e))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9474818d-bd7b-4a4f-95d6-26438290b0a7))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 2dd9c3aa-259d-4363-b2d5-55e2763c0206))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3260cc40-e829-4c1d-a947-beeaebeb158b))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3d5894be-027a-43b8-b8b5-7e79b19f1b84))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 66b2d4b9-eeb6-4774-8b30-ee0335f6a878))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp ee7e1e74-7908-47c4-8b1c-3f04c4784e85))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp f0403b32-36d6-435b-ae02-c49f32ffb84d))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "+5V") (tstamp 27e23304-84d6-4232-8b9c-cac6500056e3))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "SDA(DSP)") (tstamp 2df521ba-9edc-4c41-bd3d-d8a2a44531b9))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-0000608067f2)
(at 185.4962 74.422 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path "/00000000-0000-0000-0000-000060813fae")
(attr smd)
(fp_text reference "R3" (at -1.016 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb2a50f8-cc75-467f-aa68-d92961801fbb)
)
(fp_text value "R-OptionalPullup-SCL" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89a8e304-64c9-4dbf-ad9d-564defeb326b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2d4043b5-1b63-48c3-b946-7d44ab0277a7)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 40e08f8f-9cf0-4200-8ca8-5c4e21a91535))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp f65dd808-2bd7-42b6-9fa4-76f86756ede8))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5254daba-9218-47d1-9f3e-5e376252b71c))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 77487bc4-8bc5-48d8-a520-8deca1545df5))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 94a2c38f-3423-4d84-ad01-7c8d041742eb))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9923b445-71cb-452a-834e-83e6c0c3b31e))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 0717c616-0490-42a0-a052-91609ca64c73))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0aa4ecc3-bb97-42ba-b269-8e651d20caae))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 70f2b58b-8481-45a4-ada0-b41677ca864c))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 89742284-9544-4ada-91c8-53767571bd5e))
(pad "1" smd roundrect locked (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 12 "+5V") (tstamp 2cde4a90-7557-4c54-bf28-1154971a5038))
(pad "2" smd roundrect locked (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 6 "SCL(DSP)") (tstamp 1fb96ada-431e-4a09-9a1f-587e0458b35d))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000060806864)
(at 188.7982 74.422 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path "/00000000-0000-0000-0000-000060814118")
(attr smd)
(fp_text reference "R4" (at -1.016 -2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 824593ab-f25b-43b3-8a50-c07e1949b6c2)
)
(fp_text value "R-OptionalPullup-SDA" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 025ed44b-4009-4edc-9148-5f21e4af0983)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9ecbbfbb-f759-4074-a40e-958007c90e1c)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 2507a7ee-a6ae-4e7d-a20b-649265c21582))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 2de51f3d-8e7e-4ff3-8d51-1f19ead15a32))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4514ddc0-ecbd-4d32-ba8f-837b0940a4b2))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4f3d3173-2f95-4de4-af25-ca8f9494bf6a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b18336ea-6813-4cb8-8504-fc72f5265ec9))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cee72aa6-8989-4343-862d-ae2ec9656675))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 379e06fe-99ae-4961-ac01-635cb15571a0))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 3d3b7148-dee9-4cfa-8d5d-2c15f98a91b6))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp be8f5b40-e530-4e70-bc98-8d73b4f34142))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp e9d71a59-826e-48dd-9a5f-082d4f774d4a))
(pad "1" smd roundrect locked (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 12 "+5V") (tstamp f32234a5-5368-4595-b02d-a3f9e590d873))
(pad "2" smd roundrect locked (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 7 "SDA(DSP)") (tstamp 3036d4c3-aa68-46fa-87d5-ae62cde4a987))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_FFC-FPC:Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal" (layer "F.Cu")
(tedit 5D24667B) (tstamp 00000000-0000-0000-0000-000060811add)
(at 116.332 90.17)
(descr "Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator")
(tags "connector Hirose FH12 horizontal")
(path "/00000000-0000-0000-0000-00006085e0e5")
(attr smd)
(fp_text reference "J3" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e65792c3-5eb9-4a36-b567-25b5b5dadeb8)
)
(fp_text value "Conn_01x24" (at 0 5.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6e681e1-0e5d-4870-be57-2713983c6e70)
)
(fp_text user "${REFERENCE}" (at 0 3.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6a5dec1-365b-42f8-8da0-7536da845716)
)
(fp_line (start -6.16 -1.3) (end -7.65 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 3779f9d7-5a53-4c15-8a19-31e82b03ac68))
(fp_line (start -7.65 2.76) (end -7.65 4.5) (layer "F.SilkS") (width 0.12) (tstamp 483fb325-b634-4cff-aee0-2cd5a4f4fda3))
(fp_line (start 6.16 -1.3) (end 7.65 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 6c8bf641-90fc-4f9b-81e5-cc78e838e241))
(fp_line (start -6.16 -1.3) (end -6.16 -2.5) (layer "F.SilkS") (width 0.12) (tstamp 74e69c98-eea9-4076-8e3e-c698a4262874))
(fp_line (start -7.65 -1.3) (end -7.65 0.04) (layer "F.SilkS") (width 0.12) (tstamp ae783f59-f5f3-449f-a1d3-a223c2c3754b))
(fp_line (start 7.65 4.5) (end 7.65 2.76) (layer "F.SilkS") (width 0.12) (tstamp d03aa4ed-cfa0-43da-a220-be8ad05b71b6))
(fp_line (start 7.65 -1.3) (end 7.65 0.04) (layer "F.SilkS") (width 0.12) (tstamp dded1367-7a5d-41e1-ad33-6522da0ec368))
(fp_line (start -7.65 4.5) (end 7.65 4.5) (layer "F.SilkS") (width 0.12) (tstamp f3b52775-b194-4435-9552-0a2908ef48db))
(fp_line (start 9.05 4.9) (end 9.05 -3) (layer "F.CrtYd") (width 0.05) (tstamp 064abf90-e3c1-48eb-b9f3-da816952ff97))
(fp_line (start -9.05 4.9) (end 9.05 4.9) (layer "F.CrtYd") (width 0.05) (tstamp 379e2acb-0a08-47be-b04e-4d0235d5badc))
(fp_line (start -9.05 -3) (end -9.05 4.9) (layer "F.CrtYd") (width 0.05) (tstamp 922ff3d6-38d9-4457-a2c1-ec972b020662))
(fp_line (start 9.05 -3) (end -9.05 -3) (layer "F.CrtYd") (width 0.05) (tstamp ae0794fe-cbf8-44e7-b58f-2f9e5ff5f44f))
(fp_line (start 6.95 3.4) (end 6.95 3.7) (layer "F.Fab") (width 0.1) (tstamp 12536d10-4353-4eec-a3ce-2d97bdcd5974))
(fp_line (start 7.55 3.4) (end 6.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 19d1a617-aac2-4b6c-8763-6c7039b76a51))
(fp_line (start 0 -1.2) (end 7.55 -1.2) (layer "F.Fab") (width 0.1) (tstamp 22d838e7-0259-4911-b215-27cab0cbaf36))
(fp_line (start -7.45 3.7) (end -7.45 4.4) (layer "F.Fab") (width 0.1) (tstamp 265edd3e-e016-4a1c-8fc6-589a2f3c722e))
(fp_line (start -6.95 3.7) (end -7.45 3.7) (layer "F.Fab") (width 0.1) (tstamp 324d1a2a-8b46-4d53-9de5-026f59602f0c))
(fp_line (start -7.55 3.4) (end -6.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 3508bddf-cf59-4adc-aa24-62d29abaa44d))
(fp_line (start 7.45 4.4) (end 0 4.4) (layer "F.Fab") (width 0.1) (tstamp 38c8c9d6-2676-4f16-8185-79f4833f3b98))
(fp_line (start -5.75 -0.492893) (end -5.25 -1.2) (layer "F.Fab") (width 0.1) (tstamp 485d8fb7-90c8-488c-9002-66aacdf2f751))
(fp_line (start 0 -1.2) (end -7.55 -1.2) (layer "F.Fab") (width 0.1) (tstamp 6a30e80e-e3e0-4b97-b752-1f3aa3bc176c))
(fp_line (start 6.95 3.7) (end 7.45 3.7) (layer "F.Fab") (width 0.1) (tstamp 6be25ab0-9f78-4e4f-8834-d3401de89070))
(fp_line (start -6.25 -1.2) (end -5.75 -0.492893) (layer "F.Fab") (width 0.1) (tstamp ac588eb3-ff70-4f0b-96d8-5354f55c7f4b))
(fp_line (start -6.95 3.4) (end -6.95 3.7) (layer "F.Fab") (width 0.1) (tstamp b8e00dc6-7886-4450-9266-5b9faa164b13))
(fp_line (start -7.45 4.4) (end 0 4.4) (layer "F.Fab") (width 0.1) (tstamp d26203e4-0f2d-4f91-b094-99218772cdfb))
(fp_line (start -7.55 -1.2) (end -7.55 3.4) (layer "F.Fab") (width 0.1) (tstamp e7dd20e4-0dba-447e-a880-db6ec98b08ad))
(fp_line (start 7.45 3.7) (end 7.45 4.4) (layer "F.Fab") (width 0.1) (tstamp e9c6d303-4cb1-407e-9a35-914953197f61))
(fp_line (start 7.55 -1.2) (end 7.55 3.4) (layer "F.Fab") (width 0.1) (tstamp f56b87af-550a-4f57-8e69-5be996c590da))
(pad "1" smd rect locked (at -5.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(J3-Pad1)") (tstamp be2bd05b-e526-46f2-8927-39f1b6582e95))
(pad "2" smd rect locked (at -5.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(J3-Pad2)") (tstamp bf9f1909-01c6-41f1-9692-d01a4448294e))
(pad "3" smd rect locked (at -4.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "GotekLED") (tstamp d2378308-cb34-46d3-bd62-0b1337ca8d3c))
(pad "4" smd rect locked (at -4.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "GotekBTN2") (tstamp f0e81b4f-0831-4c1b-9d48-687a353f51fe))
(pad "5" smd rect locked (at -3.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "GotekBTN1") (tstamp 84aff1e1-7204-46a2-9ea4-443c438ec364))
(pad "6" smd rect locked (at -3.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "SW3_3") (tstamp d800253b-3269-4695-b174-b55fdf3b1113))
(pad "7" smd rect locked (at -2.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "SW3_2") (tstamp 23947ea9-b383-4a1c-b6fb-0699c8385c7a))
(pad "8" smd rect locked (at -2.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "SW3_1") (tstamp be8e749f-89d7-4577-a656-81058c960d15))
(pad "9" smd rect locked (at -1.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "SW2_3") (tstamp f042c144-9d94-48b4-8618-fa832619f9bc))
(pad "10" smd rect locked (at -1.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "SW2_2") (tstamp d2fb5f58-e20e-4a03-ba00-3e62ca8709a6))
(pad "11" smd rect locked (at -0.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "SW2_1") (tstamp f60404ae-8e1c-4c3e-b0c5-9b2b7a11149a))
(pad "12" smd rect locked (at -0.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "SW1_3") (tstamp 3dd7bae9-e417-4019-89cf-1edaf584c7e4))
(pad "13" smd rect locked (at 0.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "SW1_2") (tstamp 2a45a921-7a08-465b-a4fb-b229043b6767))
(pad "14" smd rect locked (at 0.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "SW1_1") (tstamp 75ba43bc-72e7-4854-a853-2e5191515661))
(pad "15" smd rect locked (at 1.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "CLK(ROT)") (tstamp 8bea4d7e-605d-4b5f-9306-6bc13334169b))
(pad "16" smd rect locked (at 1.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "DT(ROT)") (tstamp 9e2ecc8b-aff1-477f-9145-8632252e17e7))
(pad "17" smd rect locked (at 2.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "JA0(ROT-SW)") (tstamp 4181d3db-5ff1-412f-8b1c-a2540c155a21))
(pad "18" smd rect locked (at 2.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "JB1(SPK)") (tstamp 410b23c0-1d50-41f7-9458-f42511ed54e5))
(pad "19" smd rect locked (at 3.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "JB0(SPK)") (tstamp 1d05840c-e500-4fc1-85d6-eb4ee7e08460))
(pad "20" smd rect locked (at 3.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "SCL(DSP)") (tstamp fe5b79c9-473e-48f8-bd40-608f4c40026b))
(pad "21" smd rect locked (at 4.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SDA(DSP)") (tstamp 2fdb4d46-9424-4519-a5e1-d233bbf7ad58))
(pad "22" smd rect locked (at 4.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (tstamp 9d2f0cad-13a4-4049-98dd-48baa05fd337))
(pad "23" smd rect locked (at 5.25 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp 16d3ec42-cf73-494e-8fa0-9fe50ffa5d7c))
(pad "24" smd rect locked (at 5.75 -1.85) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "+5V") (tstamp dd5f6564-8dce-4b2b-9c21-bbfdf8081913))
(pad "MP" smd rect locked (at -7.65 1.4) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 39f3fd95-d4e1-4329-a643-2ccc5396b4c0))
(pad "MP" smd rect locked (at 7.65 1.4) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ec7d3185-8f9e-42f4-b45c-05181543bff1))
(model "${KISYS3DMOD}/Connector_FFC-FPC.3dshapes/Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Rotary_Encoder:RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles" (layer "F.Cu")
(tedit 5A64F967) (tstamp 00000000-0000-0000-0000-000060813f58)
(at 121.666 67.31)
(descr "Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF")
(tags "rotary encoder")
(path "/00000000-0000-0000-0000-0000608c6a64")
(attr through_hole)
(fp_text reference "ROT1A1" (at 2.8 -4.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc387224-c964-47f3-bf1d-7685e3780d22)
)
(fp_text value "Rotary_Encoder_Switch" (at 7.5 10.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbeb2a39-ba8c-4655-a241-9f3f46489f3f)
)
(fp_text user "${REFERENCE}" (at 11.5 6.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65c7b441-5b4d-4980-ab1d-41c8beb9358b)
)
(fp_line (start 0 -1.3) (end -0.3 -1.6) (layer "F.SilkS") (width 0.12) (tstamp 0449a605-ec29-4ea6-8e38-0ff064b4ff62))
(fp_line (start 7 2.5) (end 8 2.5) (layer "F.SilkS") (width 0.12) (tstamp 0eebfaad-864f-479c-b80b-94d972e0d653))
(fp_line (start -0.3 -1.6) (end 0.3 -1.6) (layer "F.SilkS") (width 0.12) (tstamp 147580e6-db83-4407-a58d-4ffb66b58a89))
(fp_line (start 0.8 8.8) (end 0.8 6) (layer "F.SilkS") (width 0.12) (tstamp 2838a2eb-e28c-4574-bd84-e11400395bcf))
(fp_line (start 7.5 2) (end 7.5 3) (layer "F.SilkS") (width 0.12) (tstamp 6c3371dd-0411-43cc-bf60-9c0fb7a88884))
(fp_line (start 0.8 -3.8) (end 0.8 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 8205692d-a65f-4568-884e-afa2cb1677a1))
(fp_line (start 5.7 8.8) (end 0.8 8.8) (layer "F.SilkS") (width 0.12) (tstamp 87302f2b-70ee-4535-8055-2544af11806b))
(fp_line (start 14.2 -3.8) (end 14.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 980e38d3-fb90-4562-97a3-cad96a1a57b0))
(fp_line (start 9.3 -3.8) (end 14.2 -3.8) (layer "F.SilkS") (width 0.12) (tstamp 985c1fb6-189c-41ac-9611-725f9a4cc55d))
(fp_line (start 5.6 -3.8) (end 0.8 -3.8) (layer "F.SilkS") (width 0.12) (tstamp a8453bc2-8b0f-4338-952f-f8073b16d932))
(fp_line (start 14.2 8.8) (end 9.3 8.8) (layer "F.SilkS") (width 0.12) (tstamp b435be8d-6de0-47c1-9247-3b46b0686cfb))
(fp_line (start 14.2 6.2) (end 14.2 8.8) (layer "F.SilkS") (width 0.12) (tstamp d64006da-e654-40b5-87bb-430c14af0f91))
(fp_line (start 0.3 -1.6) (end 0 -1.3) (layer "F.SilkS") (width 0.12) (tstamp e6784c14-ca48-4834-9e79-d4e77725ac1b))
(fp_line (start 14.2 1.2) (end 14.2 3.8) (layer "F.SilkS") (width 0.12) (tstamp f984a362-ecf5-4559-a733-efd602edd32c))
(fp_circle (center 7.5 2.5) (end 10.5 2.5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 992090f8-3fd8-41a1-819e-3150717c5d3b))
(fp_line (start -1.5 -5) (end -1.5 10) (layer "F.CrtYd") (width 0.05) (tstamp 58b3ad9e-ba77-41c9-aa97-73376c512f4c))
(fp_line (start -1.5 -5) (end 16 -5) (layer "F.CrtYd") (width 0.05) (tstamp 74d36572-2050-4cc3-bb53-1c6f37415d97))
(fp_line (start 16 10) (end 16 -5) (layer "F.CrtYd") (width 0.05) (tstamp a80e42a6-47ef-4e3e-b4ad-8718e1208b28))
(fp_line (start 16 10) (end -1.5 10) (layer "F.CrtYd") (width 0.05) (tstamp ee420134-ed5e-4b9c-92f5-b3eb45ec7129))
(fp_line (start 0.9 8.7) (end 0.9 -2.6) (layer "F.Fab") (width 0.12) (tstamp 07529697-3f18-4e31-954c-b512e3426b33))
(fp_line (start 1.9 -3.7) (end 14.1 -3.7) (layer "F.Fab") (width 0.12) (tstamp 0c9b8ea0-d1f4-483d-93a0-85a6c337a3ff))
(fp_line (start 7.5 -0.5) (end 7.5 5.5) (layer "F.Fab") (width 0.12) (tstamp 18e8298e-0d82-4793-895f-6b17f34f20d2))
(fp_line (start 4.5 2.5) (end 10.5 2.5) (layer "F.Fab") (width 0.12) (tstamp 4a110a5f-2cf7-49c7-af49-9dcc3d03defc))
(fp_line (start 14.1 8.7) (end 0.9 8.7) (layer "F.Fab") (width 0.12) (tstamp 7306bb63-ac96-4c2a-beb5-1a56c33a0bf2))
(fp_line (start 14.1 -3.7) (end 14.1 8.7) (layer "F.Fab") (width 0.12) (tstamp c0923eae-4e42-4333-8751-2574e064b7e6))
(fp_line (start 0.9 -2.6) (end 1.9 -3.7) (layer "F.Fab") (width 0.12) (tstamp ec9b8064-ff7e-4e54-8cb3-85ff3b531c23))
(fp_circle (center 7.5 2.5) (end 10.5 2.5) (layer "F.Fab") (width 0.12) (fill none) (tstamp 0d4bac3f-69a5-4bc6-96e6-84709bdedf26))
(pad "A" thru_hole rect locked (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 5 "DT(ROT)") (tstamp 7c922a63-f2b0-4811-9ed9-4801418fb74e))
(pad "B" thru_hole circle locked (at 0 5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 4 "CLK(ROT)") (tstamp 68cecd42-1925-4f4f-9bc7-eeaf38faf884))
(pad "C" thru_hole circle locked (at 0 2.5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp 262df338-229d-437e-b513-313bec39cc79))
(pad "MP" thru_hole circle locked (at 7.5 8.1) (size 2.8 2.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp b2f08371-0aa6-4ca5-9073-c3c5f582cff4))
(pad "MP" thru_hole circle locked (at 7.5 -3.1) (size 2.8 2.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp b5eed47b-42ed-4e85-a2b0-f583655fe24b))
(pad "S1" thru_hole circle locked (at 14.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp 0ca8c0ea-b9b1-4b4f-8d4e-2aa6dede8a2e))
(pad "S2" thru_hole circle locked (at 14.5 5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 "JA0(ROT-SW)") (tstamp f2872ca7-a55e-40dc-80dc-638d616feb6c))
(model "${KISYS3DMOD}/Rotary_Encoder.3dshapes/RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "OLED:128x64OLED" (layer "F.Cu")
(tedit 5CF23EAC) (tstamp 00000000-0000-0000-0000-000060819e18)
(at 104.013 70.993)
(path "/00000000-0000-0000-0000-0000608de7bf")
(attr through_hole)
(fp_text reference "DSP1" (at 0 0.254) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c90193b-a8ed-4db2-a8da-611fed9c6d1c)
)
(fp_text value "SSD1306" (at -7.747 -7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1855354-9883-4947-9951-e33a80753ff5)
)
(fp_line (start 13.462 -9.017) (end 13.208 -9.005) (layer "F.SilkS") (width 0.12) (tstamp 366fa140-94e4-4bdd-ad2b-fbbbbb5471b5))
(fp_line (start 10.122 7.595) (end 13.462 7.62) (layer "F.SilkS") (width 0.12) (tstamp 37b251f4-41a6-429d-a5f8-4e02e352e6c4))
(fp_line (start -4.699 -11.811) (end 5.08 -11.811) (layer "F.SilkS") (width 0.12) (tstamp 38618cc2-2f0c-42e2-9379-6aec94cef3b6))
(fp_line (start -4.699 -11.811) (end -4.699 -9.398) (layer "F.SilkS") (width 0.12) (tstamp 4697c0de-5548-458e-8df7-00f5e2facca8))
(fp_line (start -12.978 -9.005) (end 10.122 -9.005) (layer "F.SilkS") (width 0.12) (tstamp 48488033-74d5-41b7-933c-6191ba1d808f))
(fp_line (start -12.978 7.595) (end -12.978 -9.005) (layer "F.SilkS") (width 0.12) (tstamp 4b0a255a-8f22-4835-a863-531439d6b8ab))
(fp_line (start -13.4 -12.3) (end 14 -12.3) (layer "F.SilkS") (width 0.12) (tstamp 6756acbc-d4af-40b4-859d-9f93d04cb554))
(fp_line (start 10.122 -9.005) (end 13.208 -9.005) (layer "F.SilkS") (width 0.12) (tstamp 6ce64f3b-f971-4383-af9b-e7d8be5094d3))
(fp_line (start 5.08 -9.398) (end -4.699 -9.398) (layer "F.SilkS") (width 0.12) (tstamp 8e875b02-3fd7-4d8c-9096-7ca997d5d409))
(fp_line (start -13.4 15) (end -13.4 -12.3) (layer "F.SilkS") (width 0.12) (tstamp 97282ce3-6d28-4118-8c12-7d60c9ee2e7e))
(fp_line (start 5.08 -11.811) (end 5.08 -9.398) (layer "F.SilkS") (width 0.12) (tstamp bab9283c-ea1d-4f1d-b488-101f3581a2f1))
(fp_line (start 14 -12.3) (end 14 15) (layer "F.SilkS") (width 0.12) (tstamp bc774b53-7ea6-41bd-979f-e799d7420d56))
(fp_line (start 13.462 7.62) (end 13.462 -9.017) (layer "F.SilkS") (width 0.12) (tstamp e79a02e9-672d-452d-8746-7b2db8b57aab))
(fp_line (start 14 15) (end -13.4 15) (layer "F.SilkS") (width 0.12) (tstamp e837e8b4-8cc1-42c4-b05a-b689fe6dc31e))
(fp_line (start 10.122 7.595) (end -12.978 7.595) (layer "F.SilkS") (width 0.12) (tstamp ffe33ce5-dc2f-4465-a440-f06a8d329c5a))
(pad "1" thru_hole oval locked (at -3.62 -10.6 90) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 26 "Net-(DSP1-Pad1)") (tstamp 0045f635-9573-4d0c-adb1-a38090f02860))
(pad "2" thru_hole oval locked (at -1.08 -10.6 90) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(DSP1-Pad2)") (tstamp b991c055-4689-4ad2-aae3-7b0d85899df3))
(pad "3" thru_hole oval locked (at 1.46 -10.6 90) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 6 "SCL(DSP)") (tstamp 35cebfaa-412b-4e2e-b329-f29d6ca9ade9))
(pad "4" thru_hole oval locked (at 4 -10.6 90) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "SDA(DSP)") (tstamp fb9ee834-9753-4be3-a7ca-222b5cca99b8))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00006081aa49)
(at 140.97 64.77)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(path "/00000000-0000-0000-0000-0000608f523a")
(attr through_hole)
(fp_text reference "ROT1B1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac1db09b-0e66-4513-84d6-fc797967244b)
)
(fp_text value "Conn_01x05" (at 0 12.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a87102b-0716-4109-96a7-8dd9607d4662)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b227de3d-f940-4d5c-8dd8-79e9582f735c)
)
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 11320c80-9171-43c7-8bf9-5048176ffa03))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 20324fa4-431f-465e-944f-12e14e8207b1))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8b933fa9-8a2b-4d54-9b89-341fccf1f196))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp dc49b8a3-d69f-47b2-96a4-3eb030542b31))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e42ec018-6778-4988-a80c-e2a8626bb6cd))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f9fafb56-9c30-4825-9368-95a601f1c39b))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 193c09ea-8768-4b12-a1f7-79eb55cf3a5c))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 2a938f6f-9c0b-4589-9de3-38b57c83bb6e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2b14ff76-f8df-45f0-bf0f-0a1b586155f9))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 74ae72d1-a520-4288-9d21-d5ced3d4e8e5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 013ee31e-d4b5-438f-a8cd-3db6177894b3))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 09432133-fd2e-48cd-a4d4-3da03555f6d8))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 72592562-6aef-461b-a892-aa3326c5b2e7))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c9429d9d-b5d2-4401-809e-79108ea42237))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d05b886c-a29c-40d7-a213-84b8e3a20fbb))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "CLK(ROT)") (tstamp bc9c85ad-1269-4565-99da-8e15d75274e0))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "DT(ROT)") (tstamp 106dc735-0f55-4b15-9265-c4882d204913))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "JA0(ROT-SW)") (tstamp f65517fd-83b2-4ec8-b842-f8e14d6e9471))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "+3V3") (tstamp 7e6a3e91-adb9-45e9-8d2d-2b996744fd1e))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp f855ff3f-f9d0-4fc2-ba64-d2a3e0fbe81b))
(model "${KISYS3DMOD}/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 "Buzzer_Beeper:Buzzer_12x9.5RM7.6" (layer "F.Cu")
(tedit 5A030281) (tstamp 00000000-0000-0000-0000-00006081b171)
(at 134.62 82.296 -90)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags "buzzer")
(path "/00000000-0000-0000-0000-000060913ea5")
(attr through_hole)
(fp_text reference "SPK1" (at 3.8 -7.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37f56bf3-bd53-46b6-852a-3d7d422f1070)
)
(fp_text value "Speaker" (at 3.8 7.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ae03c9f-39d9-498f-9f6f-460edbe3e703)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 052416fb-0bd0-4ff6-a320-8aa9a856bfe4)
)
(fp_text user "${REFERENCE}" (at 3.8 -4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 855922ab-f297-43bf-8aa8-afbe74e3029d)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da200264-6b12-4948-b75c-ec11bde09491)
)
(fp_circle (center 3.8 0) (end 9.9 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 272792f9-c444-4940-9854-8a1b0b362b5c))
(fp_circle (center 3.8 0) (end 10.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c3c320ab-42ed-4727-af48-1c8618e66c84))
(fp_circle (center 3.8 0) (end 4.8 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 56494db1-a301-44e6-95ac-8f77ced4c6b2))
(fp_circle (center 3.8 0) (end 9.8 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e222d6c8-0980-460b-928d-c9897fa3904c))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 9 "JB0(SPK)") (tstamp 174e3b95-fc2c-46f4-b540-9a01354e06a0))
(pad "2" thru_hole circle locked (at 7.6 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 8 "JB1(SPK)") (tstamp ee85a8a6-076d-4220-8c77-3649bbf4cfb9))
(model "${KISYS3DMOD}/Buzzer_Beeper.3dshapes/Buzzer_12x9.5RM7.6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 00000000-0000-0000-0000-000060844a83)
(at 76.2 60.96 -90)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(path "/00000000-0000-0000-0000-000060849d99")
(attr through_hole)
(fp_text reference "SW1" (at 1.4 -3.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c97336b6-4b7d-4e4a-b321-d0e74ce8e31e)
)
(fp_text value "SW_SPDT" (at 1.7 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12b680ce-2d9d-4bb0-b2c0-730b403a5e2c)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 5497c0a8-c7cd-434c-a0b4-5b487c403393)
)
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp 05589169-71d3-4b81-8a29-b519b7dc7e30))
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp 85ce9a99-e10d-4e68-83c1-66b9401e1ad5))
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp 9bf6bdde-86df-40aa-93ba-2db399a07e19))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 15efc2cc-77b7-4aad-b55b-bbf320976ec1))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 8efc7301-4011-4234-8c4a-5b22bcbdda35))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp c0142687-1bc7-4d6b-8ae3-70d9bcebedd0))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp c2c0b906-994c-47af-9515-647c3bda33f6))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp 4f40c9a6-65fc-4097-836d-e595b76351ac))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 502fecc4-6581-4516-ad63-df885dc33522))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 5843c981-b1af-4f78-b55f-13113898f637))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 8a3c9b39-0e8e-4c98-81e5-600146996724))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp b11e6f76-ad68-4384-94be-e533581af95e))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp bf7e91a1-a982-40dd-a4df-f98b4033774b))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp fc3624d9-bd55-49ab-840c-fb1f1419df19))
(pad "" thru_hole oval locked (at 6.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp b48866b0-bc25-44d9-ae28-9ec03db36b23))
(pad "" thru_hole oval locked (at -2.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp f7c4d336-f8da-438f-83bd-f724a4b39a58))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 24 "SW1_1") (tstamp 31f91b38-c0d0-4630-af88-8e1af9370caa))
(pad "2" thru_hole oval locked (at 2 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 23 "SW1_2") (tstamp a1ea2683-0b2a-4384-99c8-a10524a9b176))
(pad "3" thru_hole oval locked (at 4 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 22 "SW1_3") (tstamp 8a0b672f-5935-432f-b87d-6d906da39cc2))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 00000000-0000-0000-0000-000060844a9b)
(at 76.2 74.168 -90)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(path "/00000000-0000-0000-0000-00006084a881")
(attr through_hole)
(fp_text reference "SW2" (at 1.4 -3.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f68f2760-8849-4dac-8a4d-1ece30ef5114)
)
(fp_text value "SW_SPDT" (at 1.7 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8aa0a32-e456-40c1-92a1-31d9a6eb1ec9)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 45a3fb88-6830-45c7-9444-a35f801739e7)
)
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp 263d236e-e71c-4cf1-8c93-f16ebc2b4dee))
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp b3834c0b-81a2-47b8-8bd7-f3d1db57bd86))
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp dc84dd26-67ea-4c22-b585-6b3c30731839))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 2c6bd1f3-836a-4894-bd22-37fa6a36fb3c))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5030f8fa-5d4e-4386-a2e7-8f80c52c4e33))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp a7fd737c-4805-4e6e-a9bd-bb823eb63873))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp e6b9d0c6-8975-4814-973b-ac048c0aadf8))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 016b4cec-9966-43e6-9193-745d623bfd52))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp 10a46ba4-a21f-4c79-a10d-e08d34647e9d))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp 15ec2c8f-1115-44ca-b89f-0862a65baa06))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 6e4351c2-3623-439f-8fa1-864c17b095fc))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp aac800bb-04ef-4afd-82b9-8bd60c87fa02))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp ed2f7d12-757c-4a4e-91a9-5992f65a72bc))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp f4a7fca5-eb36-4695-8562-3020a072e34e))
(pad "" thru_hole oval locked (at -2.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 071b8366-d930-4c9f-8e18-4c3f5ac87a64))
(pad "" thru_hole oval locked (at 6.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp d418608b-664e-482f-83a2-4e7344d03627))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "SW2_1") (tstamp 4e8b526d-db8c-40be-90df-6bbc8acfeb85))
(pad "2" thru_hole oval locked (at 2 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 20 "SW2_2") (tstamp 69828de2-dec1-4212-8c3a-02025eea6751))
(pad "3" thru_hole oval locked (at 4 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 19 "SW2_3") (tstamp 161fb3be-04ba-4598-8fd2-966dcfe0d0f0))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 00000000-0000-0000-0000-000060844ab3)
(at 76.2 87.63 -90)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(path "/00000000-0000-0000-0000-00006084b3f7")
(attr through_hole)
(fp_text reference "SW3" (at 1.4 -3.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dba94bee-6f4d-4470-a12b-cdbec5970123)
)
(fp_text value "SW_SPDT" (at 1.7 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdc0ebe4-788b-4db1-81df-d509d2c252a2)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp db9bd123-018a-4a44-9b4e-f0ea1d82c934)
)
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp 15d7cd97-da17-4222-b004-6d20902938a9))
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp 32dc3360-d788-4c82-b2cc-65d46f68e366))
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp 9cb75822-c254-487d-a1a6-fc43d2ea53a9))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 1bf66b91-9f7d-4fe2-b3bf-30e9427447ca))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 44d17946-3447-42b9-b80f-ca574cfb1e40))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 597a3e28-6ae8-43fd-93fa-cc53ccf4d425))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp e0d253c9-e07b-4052-8536-b1a1662cf365))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 365cbb74-3cd0-4e8b-9517-9e552df58016))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp 8605b370-abc0-4728-afe3-39c31469df23))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp 8e0b0609-6d2c-4880-a0e9-91c271ab7b43))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 96cf19fb-30c6-4569-a6e9-2c755fe7c688))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 9dec8c5c-a0cf-4e6b-a5ad-d316e96dabae))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp ac9e57d2-ed8e-4bb9-8278-64f451a67530))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp c4a5b17e-b755-44d0-a44a-ee0c5dfc3c7f))
(pad "" thru_hole oval locked (at -2.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 12203a39-ae7f-46e9-9091-c30bb802f2b3))
(pad "" thru_hole oval locked (at 6.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 95a486ac-55f2-4855-8959-a2e270c49c36))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 18 "SW3_1") (tstamp f9ccbe1c-5b00-4ab8-9ca2-d549d2c4b95e))
(pad "2" thru_hole oval locked (at 2 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 17 "SW3_2") (tstamp ed06edfa-ec38-4be1-93cc-4f434d4c669c))
(pad "3" thru_hole oval locked (at 4 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 16 "SW3_3") (tstamp 526623a9-9892-4ea9-945d-5f353e5f8f77))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm_Pad" (layer "F.Cu")
(tedit 60844546) (tstamp 00000000-0000-0000-0000-000060845044)
(at 85.09 60.198)
(descr "Mounting Hole 3.5mm")
(tags "mounting hole 3.5mm")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb2c44a9-f3f5-4ccc-ac95-cfe599b4f3d4)
)
(fp_text value "MountingHole_3.5mm_Pad" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b6d7199-ac15-4548-bce8-5290e7f33d4a)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21f58488-21db-4d95-a59b-f11209f005b2)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 61d86dae-df28-4bfc-9450-94d2b8717fe1))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0e2727de-bf53-4770-93a6-dd756d64a39e))
(pad "1" thru_hole circle locked (at 0 0) (size 5 5) (drill 2.6) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp 31c6f7fb-6a4f-4c84-8af2-b5680221e802))
)
(footprint "MountingHole:MountingHole_3.5mm_Pad" (layer "F.Cu")
(tedit 60844540) (tstamp 00000000-0000-0000-0000-00006084507a)
(at 148.59 60.06084)
(descr "Mounting Hole 3.5mm")
(tags "mounting hole 3.5mm")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bfcce24-7cbf-4f9f-9fad-952692101c04)
)
(fp_text value "MountingHole_3.5mm_Pad" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75388b2e-489e-4b75-857f-0b13f3f885f5)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fa291d4-6a26-47fe-9956-6adc9098d42a)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 77b61165-16a9-4ade-a136-fe771765659f))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b898fe16-eddd-4883-99d8-ee15b2501e27))
(pad "1" thru_hole circle locked (at 0 0) (size 5 5) (drill 2.6) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp 6e7e05e7-c09e-4f08-af52-153777c22ba2))
)
(footprint "MountingHole:MountingHole_3.5mm_Pad" (layer "F.Cu")
(tedit 60844217) (tstamp 00000000-0000-0000-0000-000060845088)
(at 85.09 91.44)
(descr "Mounting Hole 3.5mm")
(tags "mounting hole 3.5mm")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59db3ea3-a4a5-4601-ac12-c8d0dff9e838)
)
(fp_text value "MountingHole_3.5mm_Pad" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7ead504-7c60-4f34-a23a-360d8c8455be)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8db686bd-fbbc-4bb6-ba78-fc8e91a5471e)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 67af5b36-3bf5-44c5-82f0-f7dc719742b3))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9151c7f1-d9b1-4d80-a166-ff426155176d))
(pad "1" thru_hole circle locked (at 0 0) (size 5 5) (drill 2.6) (layers *.Cu *.Mask)
(net 10 "GND") (tstamp 81a1bb61-edb5-4145-bc46-ecbb253fba4b))
)
(footprint "MountingHole:MountingHole_3.5mm_Pad" (layer "F.Cu")
(tedit 60844552) (tstamp 00000000-0000-0000-0000-000060845096)
(at 148.59 92.202)
(descr "Mounting Hole 3.5mm")
(tags "mounting hole 3.5mm")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1fddbe4-d0fa-42d7-9bb7-d0adda299f82)
)
(fp_text value "MountingHole_3.5mm_Pad" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5b13ed7-8450-48c8-9a2a-536bb03e36f3)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3008126-921e-49f4-8772-fdc1919ee928)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 06594114-36ed-432c-8136-25018889bacb))