-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathPi1541io.kicad_pcb
executable file
·4345 lines (4278 loc) · 329 KB
/
Pi1541io.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 20171130) (host pcbnew "(5.0.0)")
(general
(thickness 1.6)
(drawings 120)
(tracks 615)
(zones 0)
(modules 57)
(nets 42)
)
(page A4)
(title_block
(title "Pi1541 IO Adapter")
(date 2018-11-01)
(rev 5)
(company hackup.net)
(comment 1 https://github.com/hackup/Pi1541io)
(comment 3 "Creative Commons Attribution-ShareAlike 4.0 International License")
(comment 4 "This work is licensed under a")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.2)
(trace_clearance 0.2)
(zone_clearance 0.4)
(zone_45_only no)
(trace_min 0.1524)
(segment_width 0.1)
(edge_width 0.1)
(via_size 0.8)
(via_drill 0.5)
(via_min_size 0.8)
(via_min_drill 0.5)
(uvia_size 0.5)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.5)
(uvia_min_drill 0.1)
(pcb_text_width 0.2)
(pcb_text_size 1 1)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.7 1.7)
(pad_drill 1)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.25)
(aux_axis_origin 106.147 115.202)
(grid_origin 106.147 115.202)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.150000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/"))
)
(net 0 "")
(net 1 +3V3)
(net 2 +5V)
(net 3 GND)
(net 4 /GPIO5)
(net 5 "/GPIO4(GCLK)")
(net 6 "/GPIO27(GEN2)")
(net 7 "/GPIO22(GEN3)")
(net 8 "/GPIO23(GEN4)")
(net 9 "/GPIO13(PWM1)")
(net 10 /GPIO16)
(net 11 ATN)
(net 12 RESET)
(net 13 CLK)
(net 14 DATA)
(net 15 "Net-(D1-Pad2)")
(net 16 "Net-(D2-Pad2)")
(net 17 SRQ)
(net 18 RESET_IN)
(net 19 DATA_IN)
(net 20 DATA_BD)
(net 21 CLK_IN)
(net 22 CLK_BD)
(net 23 ATN_BD)
(net 24 ATN_IN)
(net 25 SRQ_BD)
(net 26 RESET_3V)
(net 27 DATA_3V)
(net 28 CLK_3V)
(net 29 ATN_3V)
(net 30 SRQ_3V)
(net 31 SRQ_IN)
(net 32 "Net-(J4-Pad1)")
(net 33 I2C1_SCL)
(net 34 "Net-(J10-Pad2)")
(net 35 I2C0_SDA)
(net 36 I2C0_SCL)
(net 37 "Net-(J11-Pad2)")
(net 38 "Net-(J12-Pad3)")
(net 39 "Net-(J12-Pad4)")
(net 40 "Net-(J13-Pad1)")
(net 41 "Net-(J16-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.2)
(via_dia 0.8)
(via_drill 0.5)
(uvia_dia 0.5)
(uvia_drill 0.1)
(add_net "/GPIO13(PWM1)")
(add_net /GPIO16)
(add_net "/GPIO22(GEN3)")
(add_net "/GPIO23(GEN4)")
(add_net "/GPIO27(GEN2)")
(add_net "/GPIO4(GCLK)")
(add_net /GPIO5)
(add_net ATN)
(add_net ATN_3V)
(add_net ATN_BD)
(add_net ATN_IN)
(add_net CLK)
(add_net CLK_3V)
(add_net CLK_BD)
(add_net CLK_IN)
(add_net DATA)
(add_net DATA_3V)
(add_net DATA_BD)
(add_net DATA_IN)
(add_net I2C0_SCL)
(add_net I2C0_SDA)
(add_net I2C1_SCL)
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(J10-Pad2)")
(add_net "Net-(J11-Pad2)")
(add_net "Net-(J16-Pad2)")
(add_net "Net-(J4-Pad1)")
(add_net RESET)
(add_net RESET_3V)
(add_net RESET_IN)
(add_net SRQ)
(add_net SRQ_3V)
(add_net SRQ_BD)
(add_net SRQ_IN)
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.5)
(via_dia 1)
(via_drill 0.7)
(uvia_dia 0.5)
(uvia_drill 0.1)
(add_net +3V3)
(add_net +5V)
(add_net GND)
(add_net "Net-(J12-Pad3)")
(add_net "Net-(J12-Pad4)")
(add_net "Net-(J13-Pad1)")
)
(module Pin_Headers:Pin_Header_Straight_2x01_Pitch2.54mm (layer F.Cu) (tedit 5BB73853) (tstamp 5BCD4C52)
(at 168.885 71.133 90)
(descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x01 2.54mm double row")
(path /5BB91903)
(fp_text reference SW7 (at 1.27 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SPKR_EN (at 1.27 -2.413 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 1.27) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end 4.35 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 1.8) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "Net-(J4-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/GPIO13(PWM1)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_2x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "hackup:Piezo Speaker 1407" (layer F.Cu) (tedit 5BB72C7C) (tstamp 5BD233A7)
(at 160.757 77.483 270)
(path /5AF31714)
(fp_text reference LS1 (at 0 -3.81) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Spkr (at 0 2.794 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 7 0) (layer F.SilkS) (width 0.15))
(fp_arc (start 0 0) (end 0.999999 -0.999999) (angle -270) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -3.81 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "Net-(J4-Pad1)"))
(pad 2 thru_hole rect (at 3.81 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5BB73822) (tstamp 5BCD342A)
(at 160.757 78.753)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /5AF4251E)
(fp_text reference J4 (at 1.905 0.254 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ExtSpkr (at 0 2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "Net-(J4-Pad1)"))
)
(module Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm (layer F.Cu) (tedit 5B3F830D) (tstamp 5B1F3A96)
(at 142.469 89.548 270)
(descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x04 2.54mm single row")
(path /5B16BA02)
(fp_text reference J12 (at 0 -2.33 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value I2C (at 2.286 3.81 unlocked) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 -1.34) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 8.95) (end 1.33 -1.34) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.33 -1.34) (end -1.33 -1.34) (layer F.SilkS) (width 0.12))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "Net-(J10-Pad2)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "Net-(J11-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "Net-(J12-Pad3)"))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(J12-Pad4)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x04_Pitch2.54mm.wrl
(offset (xyz 0 -3.809999942779541 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B3F7F86) (tstamp 5B48757D)
(at 132.817 92.596 90)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B409F64)
(attr smd)
(fp_text reference J13 (at -1.7 0) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SDA (at 1.8 0) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 1.27 90) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 40 "Net-(J13-Pad1)"))
(pad 2 smd rect (at 0 0 90) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 38 "Net-(J12-Pad3)"))
(pad 3 smd rect (at 0 -1.27 90) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 3 GND))
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B3F7F6E) (tstamp 5B48758C)
(at 132.817 95.644 270)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B413348)
(attr smd)
(fp_text reference J14 (at -1.7 0 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SDA (at 1.8 0 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 3 smd rect (at 0 -1.27 270) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 3 GND))
(pad 2 smd rect (at 0 0 270) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 39 "Net-(J12-Pad4)"))
(pad 1 smd rect (at 0 1.27 270) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 40 "Net-(J13-Pad1)"))
)
(module Socket_Strips:Socket_Strip_Straight_2x20_Pitch2.54mm (layer B.Cu) (tedit 58CD544A) (tstamp 5AF31BE7)
(at 114.517 63.972 270)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double rows")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(path /59AD464A)
(fp_text reference P1 (at 2.208 -0.012 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Conn_02x20_Odd_Even (at -1.27 -50.59 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.81 1.27) (end -3.81 -49.53) (layer B.Fab) (width 0.1))
(fp_line (start -3.81 -49.53) (end 1.27 -49.53) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -49.53) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -3.81 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.33 -1.27) (end 1.33 -49.59) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -49.59) (end -3.87 -49.59) (layer B.SilkS) (width 0.12))
(fp_line (start -3.87 -49.59) (end -3.87 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -3.87 1.33) (end -1.27 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 1.33) (end -1.27 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 0) (end 1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 1.33) (end 0.06 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -4.35 1.8) (end -4.35 -50.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.35 -50.05) (end 1.8 -50.05) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -50.05) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end -4.35 1.8) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at -1.27 2.33 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole oval (at -2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 3 thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 ATN_BD))
(pad 4 thru_hole oval (at -2.54 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 5 thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 I2C1_SCL))
(pad 6 thru_hole oval (at -2.54 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 7 thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/GPIO4(GCLK)"))
(pad 8 thru_hole oval (at -2.54 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 9 thru_hole oval (at 0 -10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 10 thru_hole oval (at -2.54 -10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 11 thru_hole oval (at 0 -12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 CLK_BD))
(pad 12 thru_hole oval (at -2.54 -12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 DATA_BD))
(pad 13 thru_hole oval (at 0 -15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/GPIO27(GEN2)"))
(pad 14 thru_hole oval (at -2.54 -15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 15 thru_hole oval (at 0 -17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/GPIO22(GEN3)"))
(pad 16 thru_hole oval (at -2.54 -17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/GPIO23(GEN4)"))
(pad 17 thru_hole oval (at 0 -20.32 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 18 thru_hole oval (at -2.54 -20.32 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 ATN_IN))
(pad 19 thru_hole oval (at 0 -22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 20 thru_hole oval (at -2.54 -22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 21 thru_hole oval (at 0 -25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 22 thru_hole oval (at -2.54 -25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 DATA_IN))
(pad 23 thru_hole oval (at 0 -27.94 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 24 thru_hole oval (at -2.54 -27.94 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 25 thru_hole oval (at 0 -30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 26 thru_hole oval (at -2.54 -30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 27 thru_hole oval (at 0 -33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 I2C0_SDA))
(pad 28 thru_hole oval (at -2.54 -33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 I2C0_SCL))
(pad 29 thru_hole oval (at 0 -35.56 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 /GPIO5))
(pad 30 thru_hole oval (at -2.54 -35.56 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 31 thru_hole oval (at 0 -38.1 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 32 thru_hole oval (at -2.54 -38.1 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 33 thru_hole oval (at 0 -40.64 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/GPIO13(PWM1)"))
(pad 34 thru_hole oval (at -2.54 -40.64 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 35 thru_hole oval (at 0 -43.18 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 SRQ_BD))
(pad 36 thru_hole oval (at -2.54 -43.18 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /GPIO16))
(pad 37 thru_hole oval (at 0 -45.72 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 CLK_IN))
(pad 38 thru_hole oval (at -2.54 -45.72 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 RESET_IN))
(pad 39 thru_hole oval (at 0 -48.26 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 40 thru_hole oval (at -2.54 -48.26 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 SRQ_IN))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_2x20_Pitch2.54mm.wrl
(offset (xyz -1.269999980926514 -24.12999963760376 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B06A2A1) (tstamp 5B186837)
(at 127.229 70.752)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B072C85)
(attr smd)
(fp_text reference J8 (at -1.397 1.27) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(fp_text value GS3 (at 1.8 0 -90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 23 ATN_BD))
(pad 2 smd rect (at 0 0) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 29 ATN_3V))
(pad 3 smd rect (at 0 -1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 24 ATN_IN))
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B06A257) (tstamp 5B186861)
(at 131.039 70.752)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B072BE3)
(attr smd)
(fp_text reference J7 (at -1.397 1.27) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(fp_text value GS3 (at 1.8 0 -90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 3 smd rect (at 0 -1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 21 CLK_IN))
(pad 2 smd rect (at 0 0) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 28 CLK_3V))
(pad 1 smd rect (at 0 1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 22 CLK_BD))
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B06A259) (tstamp 5B1868B5)
(at 136.119 70.752)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B072B62)
(attr smd)
(fp_text reference J6 (at -1.397 1.27) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(fp_text value GS3 (at 1.8 0 -90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 3 smd rect (at 0 -1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 19 DATA_IN))
(pad 2 smd rect (at 0 0) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 27 DATA_3V))
(pad 1 smd rect (at 0 1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 20 DATA_BD))
)
(module Connectors:GS3 (layer B.Cu) (tedit 5B06A25D) (tstamp 5B18688B)
(at 139.929 70.752)
(descr "3-pin solder bridge")
(tags "solder bridge")
(path /5B06E6C4)
(attr smd)
(fp_text reference J5 (at -1.397 1.27) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(fp_text value GS3 (at 1.8 0 -90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.15 2.15) (end 1.15 2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 2.15) (end 1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.15 -2.15) (end -1.15 -2.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 -2.15) (end -1.15 2.15) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 33 I2C1_SCL))
(pad 2 smd rect (at 0 0) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 26 RESET_3V))
(pad 3 smd rect (at 0 -1.27) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 18 RESET_IN))
)
(module hackup:LevelShifterModule4CH (layer F.Cu) (tedit 5B069C8E) (tstamp 5B1868F0)
(at 132.309 79.642 270)
(path /5AF39D90)
(fp_text reference U1 (at 0 -10.16 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LevelShifter (at 0 -9.271 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user HV (at 7.112 -2.54 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user HV4 (at 7.366 5.08 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user HV3 (at 7.366 2.54 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user HV2 (at 7.366 -5.08 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user HV1 (at 7.366 -7.62 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user LV4 (at -7.366 5.08 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user LV3 (at -7.366 2.54 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user GND (at 7.366 0 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user GND (at -7.366 0 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user LV (at -7.112 -2.54 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user LV2 (at -7.366 -5.08 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_text user LV1 (at -7.366 -7.62 270 unlocked) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.11)))
)
(fp_line (start -6.096 6.096) (end -6.096 -8.636) (layer F.SilkS) (width 0.15))
(fp_line (start 6.096 6.096) (end -6.096 6.096) (layer F.SilkS) (width 0.15))
(fp_line (start 6.096 -8.636) (end 6.096 6.096) (layer F.SilkS) (width 0.15))
(fp_line (start -6.096 -8.636) (end 6.096 -8.636) (layer F.SilkS) (width 0.15))
(pad 12 thru_hole circle (at 5.08 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 RESET))
(pad 11 thru_hole circle (at 5.08 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 DATA))
(pad 10 thru_hole circle (at 5.08 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 9 thru_hole circle (at 5.08 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 8 thru_hole circle (at 5.08 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 CLK))
(pad 7 thru_hole circle (at 5.08 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 ATN))
(pad 6 thru_hole circle (at -5.08 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 ATN_3V))
(pad 5 thru_hole circle (at -5.08 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 CLK_3V))
(pad 4 thru_hole circle (at -5.08 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 3 thru_hole circle (at -5.08 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at -5.08 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 DATA_3V))
(pad 1 thru_hole circle (at -5.08 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 RESET_3V))
)
(module Buttons_Switches_THT:SW_PUSH_6mm (layer F.Cu) (tedit 5BDB1DF4) (tstamp 5BC4712D)
(at 156.947 97.168 90)
(descr https://www.omron.com/ecb/products/pdf/en-b3f.pdf)
(tags "tact sw push 6mm")
(path /5B08095A)
(fp_text reference SW6 (at 3.25 2.54 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Reset (at 3.296 -1.982 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.25 2.25 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.75 6) (end 8 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 6) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.25) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer F.SilkS) (width 0.12))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -1) (end 1 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer F.SilkS) (width 0.12))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 0 4.5 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 12 RESET))
(pad 2 thru_hole circle (at 6.5 4.5 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 GND))
(pad 1 thru_hole circle (at 6.5 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 12 RESET))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm.wrl
(offset (xyz 0.1269999980926514 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B069CC1) (tstamp 5B0F4C64)
(at 136.373 97.422)
(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")
(path /5B08412D)
(fp_text reference R3 (at -2.286 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 3.937 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 DATA))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B069D5A) (tstamp 5B0F4C7A)
(at 136.373 94.374)
(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")
(path /5B084030)
(fp_text reference R4 (at -2.286 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 3.937 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 CLK))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 +5V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_D3.0mm (layer F.Cu) (tedit 5AF30282) (tstamp 5AF31B48)
(at 156.185 105.55 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(path /5AFC1792)
(fp_text reference D1 (at 3.81 -1.905 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PWR (at 1.27 2.794 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end -0.23 -1.16619) (angle 284.3) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end -0.29 -1.235516) (angle 108.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -0.29 1.235516) (angle -108.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 0.229039 -1.08) (angle 87.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 0.229039 1.08) (angle -87.9) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.27 0) (end 2.77 0) (layer F.Fab) (width 0.1))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer F.Fab) (width 0.1))
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer F.SilkS) (width 0.12))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer F.SilkS) (width 0.12))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 3 GND))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B069DA9) (tstamp 5AFD8ECD)
(at 136.3716 103.452)
(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")
(path /5AFC1B93)
(fp_text reference R1 (at -2.2846 0.066 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220 (at 3.81 0 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(D1-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 +3V3))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Buttons_Switches_THT:SW_Tactile_SPST_Angled_PTS645Vx83-2LFS (layer F.Cu) (tedit 592CAFEF) (tstamp 5AF31AAD)
(at 140.691 112.662 180)
(descr "tactile switch SPST right angle, PTS645VL83-2 LFS")
(tags "tactile switch SPST angled PTS645VL83-2 LFS C&K Button")
(path /5AFA0D3D)
(fp_text reference SW3 (at 2.159 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 2.25 5.38988 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.5 -8.35) (end 0.5 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 4 -8.35) (end 4 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -8.35) (end 4 -8.35) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.25 1.68 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.09 0.97) (end -1.09 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start 5.7 4.2) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.2 4.2) (layer F.Fab) (width 0.1))
(fp_line (start -1.2 0.86) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start 6 4.2) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -2.8) (end 7.05 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 -2.8) (end 7.05 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 4.45) (end -2.5 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 4.45) (end -2.5 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.61 -2.7) (end 6.11 -2.7) (layer F.SilkS) (width 0.12))
(fp_line (start 6.11 -2.7) (end 6.11 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 4.31) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 -2.7) (end -1.61 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -2.59) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.5 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 5.7 4.2) (end 6 4.2) (layer F.Fab) (width 0.1))
(fp_line (start -1.2 4.2) (end -1.2 0.86) (layer F.Fab) (width 0.1))
(fp_line (start 5.59 0.97) (end 5.59 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.09 3.8) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 3.8) (end -1.61 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.05 0.97) (end 5.59 0.97) (layer F.SilkS) (width 0.12))
(fp_line (start 5.59 3.8) (end 5.59 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.59 4.31) (end 6.11 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 6.11 3.8) (end 6.11 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.09 0.97) (end -0.55 0.97) (layer F.SilkS) (width 0.12))
(fp_line (start 0.55 0.97) (end 3.95 0.97) (layer F.SilkS) (width 0.12))
(pad "" thru_hole circle (at 5.76 2.49 180) (size 2.1 2.1) (drill 1.3) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 4.5 0 180) (size 1.75 1.75) (drill 0.99) (layers *.Cu *.Mask)
(net 8 "/GPIO23(GEN4)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.75 1.75) (drill 0.99) (layers *.Cu *.Mask)
(net 3 GND))
(pad "" thru_hole circle (at -1.25 2.49 180) (size 2.1 2.1) (drill 1.3) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx83-2LFS.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Buttons_Switches_THT:SW_Tactile_SPST_Angled_PTS645Vx83-2LFS (layer F.Cu) (tedit 592CAFEF) (tstamp 5AF319AB)
(at 120.371 112.662 180)
(descr "tactile switch SPST right angle, PTS645VL83-2 LFS")
(tags "tactile switch SPST angled PTS645VL83-2 LFS C&K Button")
(path /5AF94967)
(fp_text reference SW1 (at 2.159 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 2.25 5.38988 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.55 0.97) (end 3.95 0.97) (layer F.SilkS) (width 0.12))
(fp_line (start -1.09 0.97) (end -0.55 0.97) (layer F.SilkS) (width 0.12))
(fp_line (start 6.11 3.8) (end 6.11 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.59 4.31) (end 6.11 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.59 3.8) (end 5.59 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.05 0.97) (end 5.59 0.97) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 3.8) (end -1.61 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.09 3.8) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.59 0.97) (end 5.59 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.2 4.2) (end -1.2 0.86) (layer F.Fab) (width 0.1))
(fp_line (start 5.7 4.2) (end 6 4.2) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.5 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -2.59) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.61 -2.7) (end -1.61 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 4.31) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 6.11 -2.7) (end 6.11 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 -2.7) (end 6.11 -2.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 4.45) (end -2.5 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 4.45) (end -2.5 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 -2.8) (end 7.05 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -2.8) (end 7.05 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 6 4.2) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.2 0.86) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.2 4.2) (layer F.Fab) (width 0.1))
(fp_line (start 5.7 4.2) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.09 0.97) (end -1.09 1.2) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 2.25 1.68 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.5 -8.35) (end 4 -8.35) (layer F.Fab) (width 0.1))
(fp_line (start 4 -8.35) (end 4 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -8.35) (end 0.5 -2.59) (layer F.Fab) (width 0.1))
(pad "" thru_hole circle (at -1.25 2.49 180) (size 2.1 2.1) (drill 1.3) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 0 180) (size 1.75 1.75) (drill 0.99) (layers *.Cu *.Mask)
(net 3 GND))
(pad 2 thru_hole circle (at 4.5 0 180) (size 1.75 1.75) (drill 0.99) (layers *.Cu *.Mask)
(net 6 "/GPIO27(GEN2)"))
(pad "" thru_hole circle (at 5.76 2.49 180) (size 2.1 2.1) (drill 1.3) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx83-2LFS.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Buttons_Switches_THT:SW_Tactile_SPST_Angled_PTS645Vx83-2LFS (layer F.Cu) (tedit 592CAFEF) (tstamp 5AF3193C)
(at 130.531 112.662 180)
(descr "tactile switch SPST right angle, PTS645VL83-2 LFS")
(tags "tactile switch SPST angled PTS645VL83-2 LFS C&K Button")
(path /5AF94A51)
(fp_text reference SW2 (at 2.159 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 2.25 5.38988 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.5 -8.35) (end 0.5 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 4 -8.35) (end 4 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -8.35) (end 4 -8.35) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.25 1.68 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.09 0.97) (end -1.09 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start 5.7 4.2) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.2 4.2) (layer F.Fab) (width 0.1))
(fp_line (start -1.2 0.86) (end 5.7 0.86) (layer F.Fab) (width 0.1))
(fp_line (start 6 4.2) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -2.8) (end 7.05 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 -2.8) (end 7.05 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.05 4.45) (end -2.5 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 4.45) (end -2.5 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.61 -2.7) (end 6.11 -2.7) (layer F.SilkS) (width 0.12))
(fp_line (start 6.11 -2.7) (end 6.11 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 4.31) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 -2.7) (end -1.61 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -2.59) (end 6 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 4.2) (end -1.5 -2.59) (layer F.Fab) (width 0.1))
(fp_line (start 5.7 4.2) (end 6 4.2) (layer F.Fab) (width 0.1))
(fp_line (start -1.2 4.2) (end -1.2 0.86) (layer F.Fab) (width 0.1))
(fp_line (start 5.59 0.97) (end 5.59 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.09 3.8) (end -1.09 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 3.8) (end -1.61 4.31) (layer F.SilkS) (width 0.12))