-
Notifications
You must be signed in to change notification settings - Fork 9
/
IOBoard.kicad_pcb
2212 lines (2192 loc) · 199 KB
/
IOBoard.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 20190605) (host pcbnew "(5.1.0-1558-g0ba0c1724)")
(general
(thickness 1.6)
(drawings 18)
(tracks 277)
(modules 12)
(nets 34)
)
(page "A4")
(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.1524)
(user_trace_width 0.1524)
(user_trace_width 0.2032)
(user_trace_width 0.254)
(user_trace_width 0.3048)
(user_trace_width 0.4064)
(user_trace_width 0.508)
(user_trace_width 0.762)
(user_trace_width 1.016)
(trace_clearance 0.1524)
(zone_clearance 0.2032)
(zone_45_only no)
(trace_min 0.1524)
(via_size 0.45)
(via_drill 0.2)
(via_min_size 0.45)
(via_min_drill 0.2)
(user_via 0.45 0.2)
(user_via 0.65 0.25)
(user_via 0.85 0.3)
(uvia_size 0.45)
(uvia_drill 0.2)
(uvias_allowed no)
(uvia_min_size 0.45)
(uvia_min_drill 0.2)
(max_error 0.005)
(defaults
(edge_clearance 0.2)
(edge_cuts_line_width 0.05)
(courtyard_line_width 0.05)
(copper_line_width 0.2)
(copper_text_dims (size 1.5 1.5) (thickness 0.3) keep_upright)
(silk_line_width 0.12)
(silk_text_dims (size 1 1) (thickness 0.15) keep_upright)
(other_layers_line_width 0.1)
(other_layers_text_dims (size 1 1) (thickness 0.15) keep_upright)
)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(grid_origin 62 115)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/"))
)
(net 0 "")
(net 1 "/IOE_6")
(net 2 "/IOE_5")
(net 3 "/IOE_4")
(net 4 "/IOE_3")
(net 5 "/IOE_2")
(net 6 "/IOE_1")
(net 7 "/IOE_0")
(net 8 "/ENC_B")
(net 9 "/BTN_IN")
(net 10 "/ENC_A")
(net 11 "/IOA_6")
(net 12 "/IOA_3")
(net 13 "/BTN_ENC")
(net 14 "/~LCD_CS")
(net 15 "/LCD_D4")
(net 16 "/LCD_D5")
(net 17 "/LCD_D6")
(net 18 "/LCD_D7")
(net 19 "GND")
(net 20 "/5V")
(net 21 "/MISO_IN")
(net 22 "/SPI2_SCK")
(net 23 "/ENC_EN1")
(net 24 "/ENC_EN2")
(net 25 "/SPI2_MOSI")
(net 26 "/SPI2_MISO")
(net 27 "Net-(JP1-Pad2)")
(net 28 "Net-(JP2-Pad2)")
(net 29 "Net-(JP3-Pad2)")
(net 30 "/IOA_8")
(net 31 "/IOA_7")
(net 32 "/IOA_15")
(net 33 "/LCD_EN")
(net_class "Default" "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.45)
(uvia_drill 0.2)
(add_net "/5V")
(add_net "/BTN_ENC")
(add_net "/BTN_IN")
(add_net "/ENC_A")
(add_net "/ENC_B")
(add_net "/ENC_EN1")
(add_net "/ENC_EN2")
(add_net "/IOA_15")
(add_net "/IOA_3")
(add_net "/IOA_6")
(add_net "/IOA_7")
(add_net "/IOA_8")
(add_net "/IOE_0")
(add_net "/IOE_1")
(add_net "/IOE_2")
(add_net "/IOE_3")
(add_net "/IOE_4")
(add_net "/IOE_5")
(add_net "/IOE_6")
(add_net "/LCD_D4")
(add_net "/LCD_D5")
(add_net "/LCD_D6")
(add_net "/LCD_D7")
(add_net "/LCD_EN")
(add_net "/MISO_IN")
(add_net "/SPI2_MISO")
(add_net "/SPI2_MOSI")
(add_net "/SPI2_SCK")
(add_net "/~LCD_CS")
(add_net "GND")
(add_net "Net-(JP1-Pad2)")
(add_net "Net-(JP2-Pad2)")
(add_net "Net-(JP3-Pad2)")
)
(module "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 5D7E7270)
(at 103.8592 93.5624 270)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/5D7E36F0")
(fp_text reference "JP4" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "JP_LCD_EN" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user "%R" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "/IOA_15"))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/LCD_EN"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/~LCD_CS"))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (layer "F.Cu") (tedit 59DE0611) (tstamp 5D6A4021)
(at 78.7654 90.3986 90)
(descr "Through hole straight IDC box header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole IDC box header THT 2x05 2.54mm double row")
(path "/5D6A8F7E")
(fp_text reference "J4" (at 1.27 -6.604 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "LCD_EXP2" (at 1.27 16.764 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.655 -5.6) (end -1.115 -5.6) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.655 -5.6) (end -3.655 -3.06) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.405 -5.35) (end 5.945 -5.35) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.405 15.51) (end -3.405 -5.35) (layer "F.SilkS") (width 0.12))
(fp_line (start 5.945 15.51) (end -3.405 15.51) (layer "F.SilkS") (width 0.12))
(fp_line (start 5.945 -5.35) (end 5.945 15.51) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.41 -5.35) (end 5.95 -5.35) (layer "F.CrtYd") (width 0.05))
(fp_line (start -3.41 15.51) (end -3.41 -5.35) (layer "F.CrtYd") (width 0.05))
(fp_line (start 5.95 15.51) (end -3.41 15.51) (layer "F.CrtYd") (width 0.05))
(fp_line (start 5.95 -5.35) (end 5.95 15.51) (layer "F.CrtYd") (width 0.05))
(fp_line (start -3.155 15.26) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start -3.155 -5.1) (end -2.605 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 15.26) (end 5.145 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end 5.145 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 14.7) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 15.26) (end -3.155 15.26) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 -4.56) (end -2.605 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end -3.155 -5.1) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 7.33) (end -3.155 7.33) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 2.83) (end -3.155 2.83) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 7.33) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 -4.56) (end -2.605 2.83) (layer "F.Fab") (width 0.1))
(fp_line (start -3.155 -5.1) (end -3.155 15.26) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 -4.56) (end 5.145 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end 5.695 15.26) (layer "F.Fab") (width 0.1))
(fp_text user "%R" (at 1.27 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "10" thru_hole oval (at 2.54 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 21 "/MISO_IN"))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 22 "/SPI2_SCK"))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 23 "/ENC_EN1"))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 24 "/ENC_EN2"))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 25 "/SPI2_MOSI"))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 4 "/IOE_3"))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 "/IOE_6"))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 19 "GND"))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask))
(model "${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (layer "F.Cu") (tedit 59DE0611) (tstamp 5D6A3FF8)
(at 78.8416 101.524 90)
(descr "Through hole straight IDC box header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole IDC box header THT 2x05 2.54mm double row")
(path "/5D6A8471")
(fp_text reference "J3" (at 1.27 -6.604 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "LCD_EXP1" (at 1.27 16.764 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.655 -5.6) (end -1.115 -5.6) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.655 -5.6) (end -3.655 -3.06) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.405 -5.35) (end 5.945 -5.35) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.405 15.51) (end -3.405 -5.35) (layer "F.SilkS") (width 0.12))
(fp_line (start 5.945 15.51) (end -3.405 15.51) (layer "F.SilkS") (width 0.12))
(fp_line (start 5.945 -5.35) (end 5.945 15.51) (layer "F.SilkS") (width 0.12))
(fp_line (start -3.41 -5.35) (end 5.95 -5.35) (layer "F.CrtYd") (width 0.05))
(fp_line (start -3.41 15.51) (end -3.41 -5.35) (layer "F.CrtYd") (width 0.05))
(fp_line (start 5.95 15.51) (end -3.41 15.51) (layer "F.CrtYd") (width 0.05))
(fp_line (start 5.95 -5.35) (end 5.95 15.51) (layer "F.CrtYd") (width 0.05))
(fp_line (start -3.155 15.26) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start -3.155 -5.1) (end -2.605 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 15.26) (end 5.145 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end 5.145 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 14.7) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 15.26) (end -3.155 15.26) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 -4.56) (end -2.605 -4.56) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end -3.155 -5.1) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 7.33) (end -3.155 7.33) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 2.83) (end -3.155 2.83) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 7.33) (end -2.605 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start -2.605 -4.56) (end -2.605 2.83) (layer "F.Fab") (width 0.1))
(fp_line (start -3.155 -5.1) (end -3.155 15.26) (layer "F.Fab") (width 0.1))
(fp_line (start 5.145 -4.56) (end 5.145 14.7) (layer "F.Fab") (width 0.1))
(fp_line (start 5.695 -5.1) (end 5.695 15.26) (layer "F.Fab") (width 0.1))
(fp_text user "%R" (at 1.27 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "10" thru_hole oval (at 2.54 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 "/IOE_5"))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 13 "/BTN_ENC"))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 33 "/LCD_EN"))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 3 "/IOE_4"))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 15 "/LCD_D4"))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 16 "/LCD_D5"))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "/LCD_D6"))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 18 "/LCD_D7"))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 19 "GND"))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 20 "/5V"))
(model "${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Resistor_SMD:R_Array_Convex_4x0603" (layer "F.Cu") (tedit 58E0A8B2) (tstamp 5D6A40D4)
(at 109.946 94.596)
(descr "Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf)")
(tags "resistor array")
(path "/5D6BDFE6")
(attr smd)
(fp_text reference "RN2" (at 0 -2.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "4x10k" (at 0 2.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.55 1.85) (end -1.55 1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.55 1.85) (end 1.55 -1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.55 -1.85) (end -1.55 1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.55 -1.85) (end 1.55 -1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start 0.5 -1.68) (end -0.5 -1.68) (layer "F.SilkS") (width 0.12))
(fp_line (start 0.5 1.68) (end -0.5 1.68) (layer "F.SilkS") (width 0.12))
(fp_line (start -0.8 1.6) (end -0.8 -1.6) (layer "F.Fab") (width 0.1))
(fp_line (start 0.8 1.6) (end -0.8 1.6) (layer "F.Fab") (width 0.1))
(fp_line (start 0.8 -1.6) (end 0.8 1.6) (layer "F.Fab") (width 0.1))
(fp_line (start -0.8 -1.6) (end 0.8 -1.6) (layer "F.Fab") (width 0.1))
(fp_text user "%R" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(pad "5" smd rect (at 0.9 1.2) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "/IOA_8"))
(pad "6" smd rect (at 0.9 0.4) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/IOA_7"))
(pad "8" smd rect (at 0.9 -1.2) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/IOA_3"))
(pad "7" smd rect (at 0.9 -0.4) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/IOA_6"))
(pad "4" smd rect (at -0.9 1.2) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/LCD_D7"))
(pad "2" smd rect (at -0.9 -0.4) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/LCD_D5"))
(pad "3" smd rect (at -0.9 0.4) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/LCD_D6"))
(pad "1" smd rect (at -0.9 -1.2) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/LCD_D4"))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_Array_Convex_4x0603.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Resistor_SMD:R_Array_Convex_4x0603" (layer "F.Cu") (tedit 58E0A8B2) (tstamp 5D6A513D)
(at 103.046 109.158 270)
(descr "Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf)")
(tags "resistor array")
(path "/5D6B40EB")
(attr smd)
(fp_text reference "RN1" (at 0 -2.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "4x10k" (at 0 2.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.55 1.85) (end -1.55 1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.55 1.85) (end 1.55 -1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.55 -1.85) (end -1.55 1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.55 -1.85) (end 1.55 -1.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start 0.5 -1.68) (end -0.5 -1.68) (layer "F.SilkS") (width 0.12))
(fp_line (start 0.5 1.68) (end -0.5 1.68) (layer "F.SilkS") (width 0.12))
(fp_line (start -0.8 1.6) (end -0.8 -1.6) (layer "F.Fab") (width 0.1))
(fp_line (start 0.8 1.6) (end -0.8 1.6) (layer "F.Fab") (width 0.1))
(fp_line (start 0.8 -1.6) (end 0.8 1.6) (layer "F.Fab") (width 0.1))
(fp_line (start -0.8 -1.6) (end 0.8 -1.6) (layer "F.Fab") (width 0.1))
(fp_text user "%R" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(pad "5" smd rect (at 0.9 1.2 270) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/SPI2_MISO"))
(pad "6" smd rect (at 0.9 0.4 270) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(JP3-Pad2)"))
(pad "8" smd rect (at 0.9 -1.2 270) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(JP1-Pad2)"))
(pad "7" smd rect (at 0.9 -0.4 270) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "Net-(JP2-Pad2)"))
(pad "4" smd rect (at -0.9 1.2 270) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/MISO_IN"))
(pad "2" smd rect (at -0.9 -0.4 270) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/ENC_EN2"))
(pad "3" smd rect (at -0.9 0.4 270) (size 0.8 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/ENC_EN1"))
(pad "1" smd rect (at -0.9 -1.2 270) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/BTN_ENC"))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_Array_Convex_4x0603.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 5D6A40A6)
(at 103.861 97.2312 270)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/5D6BA462")
(fp_text reference "JP3" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "JP_ENC_A" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user "%R" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/IOE_2"))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "Net-(JP3-Pad2)"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/ENC_A"))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 5D6A408F)
(at 103.861 104.597 270)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/5D6B97A8")
(fp_text reference "JP2" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "JP_ENC_B" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user "%R" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/IOE_1"))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "Net-(JP2-Pad2)"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/ENC_B"))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 5D6A4078)
(at 103.861 100.914 270)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/5D6B7506")
(fp_text reference "JP1" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "JP_BTN_IN" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user "%R" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/IOE_0"))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "Net-(JP1-Pad2)"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/BTN_IN"))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" locked (layer "B.Cu") (tedit 5A19A42B) (tstamp 5D6A4061)
(at 64.516 89.154 180)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(path "/5D6A5662")
(fp_text reference "J6" (at -1.27 2.77) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "EXP4" (at -1.27 -12.93) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "%R" (at -1.27 -5.08 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.34 -11.9) (end -4.34 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 -11.9) (end -4.34 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 1.8) (end 1.76 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start -4.34 1.8) (end 1.76 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 0 1.33) (end 1.33 1.33) (layer "B.SilkS") (width 0.12))
(fp_line (start 1.33 1.33) (end 1.33 0) (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 -1.27) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 -11.49) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 1.33) (end -3.87 -11.49) (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 -3.81 -11.43) (end -3.81 1.27) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 -11.43) (end -3.81 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 0.27) (end 1.27 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 0.27 1.27) (end 1.27 0.27) (layer "B.Fab") (width 0.1))
(fp_line (start -3.81 1.27) (end 0.27 1.27) (layer "B.Fab") (width 0.1))
(pad "10" thru_hole oval (at -2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/5V"))
(pad "9" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND"))
(pad "8" thru_hole oval (at -2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "7" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "6" thru_hole oval (at -2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "5" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "4" thru_hole oval (at -2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "3" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" locked (layer "B.Cu") (tedit 5A19A42B) (tstamp 5D6A4041)
(at 66.3575 111.442 270)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(path "/5D6A37F4")
(fp_text reference "J5" (at -1.27 2.77 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "EXP3" (at -1.27 -12.93 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "%R" (at -1.27 -5.08 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.34 -11.9) (end -4.34 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 -11.9) (end -4.34 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 1.8) (end 1.76 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start -4.34 1.8) (end 1.76 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 0 1.33) (end 1.33 1.33) (layer "B.SilkS") (width 0.12))
(fp_line (start 1.33 1.33) (end 1.33 0) (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 -1.27) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 -11.49) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 1.33) (end -3.87 -11.49) (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 -3.81 -11.43) (end -3.81 1.27) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 -11.43) (end -3.81 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 0.27) (end 1.27 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 0.27 1.27) (end 1.27 0.27) (layer "B.Fab") (width 0.1))
(fp_line (start -3.81 1.27) (end 0.27 1.27) (layer "B.Fab") (width 0.1))
(pad "10" thru_hole oval (at -2.54 -10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/5V"))
(pad "9" thru_hole oval (at 0 -10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND"))
(pad "8" thru_hole oval (at -2.54 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/~LCD_CS"))
(pad "7" thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "6" thru_hole oval (at -2.54 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/SPI2_SCK"))
(pad "5" thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "4" thru_hole oval (at -2.54 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/SPI2_MOSI"))
(pad "3" thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "2" thru_hole oval (at -2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/SPI2_MISO"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" locked (layer "B.Cu") (tedit 5A19A42B) (tstamp 5D6A3FCF)
(at 109.156 99.2505 180)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(path "/5D6A4853")
(fp_text reference "J2" (at -1.27 2.77) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "EXP2" (at -1.27 -12.93) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "%R" (at -1.27 -5.08 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.34 -11.9) (end -4.34 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 -11.9) (end -4.34 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 1.8) (end 1.76 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start -4.34 1.8) (end 1.76 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 0 1.33) (end 1.33 1.33) (layer "B.SilkS") (width 0.12))
(fp_line (start 1.33 1.33) (end 1.33 0) (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 -1.27) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 -11.49) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 1.33) (end -3.87 -11.49) (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 -3.81 -11.43) (end -3.81 1.27) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 -11.43) (end -3.81 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 0.27) (end 1.27 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 0.27 1.27) (end 1.27 0.27) (layer "B.Fab") (width 0.1))
(fp_line (start -3.81 1.27) (end 0.27 1.27) (layer "B.Fab") (width 0.1))
(pad "10" thru_hole oval (at -2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/ENC_B"))
(pad "9" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/BTN_IN"))
(pad "8" thru_hole oval (at -2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/ENC_A"))
(pad "7" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "/IOA_15"))
(pad "6" thru_hole oval (at -2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "/IOA_8"))
(pad "5" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/IOA_7"))
(pad "4" thru_hole oval (at -2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/IOA_6"))
(pad "3" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/IOA_3"))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" locked (layer "B.Cu") (tedit 5A19A42B) (tstamp 5D6A3FAF)
(at 87.5665 111.442 270)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(path "/5D6A2DFB")
(fp_text reference "J1" (at -1.27 2.77 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "EXP1" (at -1.27 -12.93 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "%R" (at -1.27 -5.08 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.34 -11.9) (end -4.34 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 -11.9) (end -4.34 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start 1.76 1.8) (end 1.76 -11.9) (layer "B.CrtYd") (width 0.05))
(fp_line (start -4.34 1.8) (end 1.76 1.8) (layer "B.CrtYd") (width 0.05))
(fp_line (start 0 1.33) (end 1.33 1.33) (layer "B.SilkS") (width 0.12))
(fp_line (start 1.33 1.33) (end 1.33 0) (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 -1.27) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 -11.49) (end 1.33 -11.49) (layer "B.SilkS") (width 0.12))
(fp_line (start -3.87 1.33) (end -3.87 -11.49) (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 -3.81 -11.43) (end -3.81 1.27) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 -11.43) (end -3.81 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 1.27 0.27) (end 1.27 -11.43) (layer "B.Fab") (width 0.1))
(fp_line (start 0.27 1.27) (end 1.27 0.27) (layer "B.Fab") (width 0.1))
(fp_line (start -3.81 1.27) (end 0.27 1.27) (layer "B.Fab") (width 0.1))
(pad "10" thru_hole oval (at -2.54 -10.16 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))
(pad "8" thru_hole oval (at -2.54 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad "7" thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/IOE_6"))
(pad "6" thru_hole oval (at -2.54 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/IOE_5"))
(pad "5" thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/IOE_4"))
(pad "4" thru_hole oval (at -2.54 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/IOE_3"))
(pad "3" thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/IOE_2"))
(pad "2" thru_hole oval (at -2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/IOE_1"))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/IOE_0"))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl"
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "LCD_EN" (at 106.3992 92.5464 90) (layer "F.SilkS") (tstamp 5D7E73E5)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "BTN_IN" (at 106.3992 101.3348 90) (layer "F.SilkS") (tstamp 5D6A572B)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "ENC_B" (at 106.45 105.856 90) (layer "F.SilkS") (tstamp 5D6A572B)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "ENC_A" (at 106.3992 97.2708 90) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "(c) iQury.us\nSept 2019" (at 104.7228 87.9744) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "rev 4" (at 105 86) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "LCD_IO" (at 99 86) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "R1-2|R3+" (at 101.2684 90.8192) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "EXP1" (at 72 101 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "EXP2" (at 72 90 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_arc (start 64 84) (end 64 82) (angle -90) (layer "Edge.Cuts") (width 0.05))
(gr_arc (start 64 113) (end 62 113) (angle -90) (layer "Edge.Cuts") (width 0.05))
(gr_arc (start 113 113) (end 113 115) (angle -90) (layer "Edge.Cuts") (width 0.05))
(gr_arc (start 113 84) (end 115 84) (angle -90) (layer "Edge.Cuts") (width 0.05))
(gr_line (start 62 84) (end 62 113) (layer "Edge.Cuts") (width 0.05))
(gr_line (start 113 82) (end 64 82) (layer "Edge.Cuts") (width 0.05))
(gr_line (start 115 113) (end 115 84) (layer "Edge.Cuts") (width 0.05))
(gr_line (start 64 115) (end 113 115) (layer "Edge.Cuts") (width 0.05))
(segment (start 76.82785 105.64705) (end 80.0354 102.4395) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 76.82785 105.64705) (end 76.82785 106.05165) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 76.82785 106.05165) (end 73.9775 108.902) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 99.7042 90.3006) (end 99.7042 90.4098) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 99.7042 90.4098) (end 102.8568 93.5624) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 102.8568 93.5624) (end 103.8592 93.5624) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 95.8245 86.4209) (end 99.7042 90.3006) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 102.699 97.0225) (end 100.78705 95.11055) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 100.78705 95.11055) (end 100.32735 95.11055) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 100.32735 95.11055) (end 98.7792 93.5624) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 110.846 94.196) (end 111.4749 94.196) (width 0.1524) (layer "F.Cu") (net 11))
(segment (start 111.4749 94.196) (end 112.7776 95.4987) (width 0.1524) (layer "F.Cu") (net 11))
(segment (start 112.7776 100.7089) (end 111.696 101.7905) (width 0.1524) (layer "F.Cu") (net 11))
(segment (start 112.7776 95.4987) (end 112.7776 100.7089) (width 0.1524) (layer "F.Cu") (net 11))
(segment (start 107.94555 107.25605) (end 104.9399 104.2504) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 107.94555 107.25605) (end 107.94555 108.20005) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 107.94555 108.20005) (end 109.156 109.4105) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 107.89565 104.66435) (end 104.9542 101.7229) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 107.89565 105.61015) (end 109.156 106.8705) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 107.89565 104.66435) (end 107.89565 105.61015) (width 0.1524) (layer "B.Cu") (net 32))
(segment (start 111.0331 96.5965) (end 110.5862 97.0434) (width 0.1524) (layer "B.Cu") (net 30))
(segment (start 110.5862 97.0434) (end 110.5862 103.2207) (width 0.1524) (layer "B.Cu") (net 30))
(segment (start 110.5862 103.2207) (end 111.696 104.3305) (width 0.1524) (layer "B.Cu") (net 30))
(segment (start 110.6171 104.2169) (end 110.6171 105.7916) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 108.6114 103.0605) (end 109.4607 103.0605) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 110.6171 105.7916) (end 111.696 106.8705) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 109.4607 103.0605) (end 110.6171 104.2169) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 103.861 98.3101) (end 108.6114 103.0605) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 103.861 97.2312) (end 103.861 98.3101) (width 0.1524) (layer "B.Cu") (net 10))
(segment (start 103.861 104.597) (end 104.9399 104.597) (width 0.1524) (layer "F.Cu") (net 8))
(segment (start 104.9399 104.597) (end 108.6745 108.3316) (width 0.1524) (layer "F.Cu") (net 8))
(segment (start 108.6745 108.3316) (end 110.6171 108.3316) (width 0.1524) (layer "F.Cu") (net 8))
(segment (start 110.6171 108.3316) (end 111.696 109.4105) (width 0.1524) (layer "F.Cu") (net 8))
(segment (start 91.7043 107.1573) (end 91.7043 107.9598) (width 0.1524) (layer "F.Cu") (net 2))
(segment (start 91.7043 107.9598) (end 92.6465 108.902) (width 0.1524) (layer "F.Cu") (net 2))
(segment (start 93.6363 103.8312) (end 90.34395 107.12355) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 90.34395 107.12355) (end 89.34495 107.12355) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 89.34495 107.12355) (end 87.5665 108.902) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 82.7596 108.7066) (end 86.574 112.521) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 94.1075 112.521) (end 95.1865 111.442) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 81.3054 96.9266) (end 82.7596 98.3808) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 86.574 112.521) (end 94.1075 112.521) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 82.7596 98.3808) (end 82.7596 108.7066) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 81.3054 90.3986) (end 81.3054 96.9266) (width 0.1524) (layer "B.Cu") (net 1))
(segment (start 98.781 100.914) (end 98.781 102.1916) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 93.9445 106.0629) (end 91.567899 108.439501) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 98.781 102.1916) (end 94.9097 106.0629) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 94.9097 106.0629) (end 93.9445 106.0629) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 91.567899 108.439501) (end 91.567899 109.036931) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 91.567899 109.036931) (end 90.241431 110.363399) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 90.241431 110.363399) (end 89.647501 110.363399) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 89.647501 110.363399) (end 88.5689 111.442) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 88.5689 111.442) (end 87.5665 111.442) (width 0.1524) (layer "B.Cu") (net 7))
(segment (start 99.8922 101.8009) (end 93.9496 107.7435) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 92.7601 110.3631) (end 91.1854 110.3631) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 93.9496 107.7435) (end 93.9496 109.1736) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 99.8922 99.4213) (end 99.8922 101.8009) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 98.781 98.3101) (end 99.8922 99.4213) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 98.781 97.2312) (end 98.781 98.3101) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 93.9496 109.1736) (end 92.7601 110.3631) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 91.1854 110.3631) (end 90.1065 111.442) (width 0.1524) (layer "B.Cu") (net 5))
(segment (start 79.9342 107.0134) (end 76.9667 109.9809) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 87.1433 92.1807) (end 86.1199 92.1807) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 86.1199 92.1807) (end 79.9342 98.3664) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 79.9342 98.3664) (end 79.9342 107.0134) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 88.9254 90.3986) (end 87.1433 92.1807) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 76.9667 109.9809) (end 72.5164 109.9809) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 72.5164 109.9809) (end 71.4375 108.902) (width 0.1524) (layer "F.Cu") (net 22))
(segment (start 67.7672 106.6928) (end 65.977 104.9026) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 67.7672 106.6928) (end 67.7672 107.7717) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 67.7672 107.7717) (end 68.8975 108.902) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 86.4921 112.5513) (end 84.2653 110.3245) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 67.78 110.3245) (end 66.3575 108.902) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 99.9816 112.5513) (end 86.4921 112.5513) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 101.846 110.6869) (end 99.9816 112.5513) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 84.2653 110.3245) (end 67.78 110.3245) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 101.846 110.058) (end 101.846 110.6869) (width 0.1524) (layer "F.Cu") (net 26))
(segment (start 91.4066 92.4783) (end 86.60065 97.28425) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 86.60065 97.28425) (end 85.62135 97.28425) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 85.62135 97.28425) (end 83.9216 98.984) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 91.7043 102.666) (end 90.08035 101.04205) (width 0.1524) (layer "B.Cu") (net 2))
(segment (start 90.08035 101.04205) (end 90.08035 100.06275) (width 0.1524) (layer "B.Cu") (net 2))
(segment (start 90.08035 100.06275) (end 89.0016 98.984) (width 0.1524) (layer "B.Cu") (net 2))
(segment (start 106.817 95.796) (end 94.0016 95.796) (width 0.1524) (layer "F.Cu") (net 16))
(segment (start 89.3911 100.4065) (end 85.0391 100.4065) (width 0.1524) (layer "F.Cu") (net 16))
(segment (start 85.0391 100.4065) (end 83.9216 101.524) (width 0.1524) (layer "F.Cu") (net 16))
(segment (start 108.417 94.196) (end 106.817 95.796) (width 0.1524) (layer "F.Cu") (net 16))
(segment (start 94.0016 95.796) (end 89.3911 100.4065) (width 0.1524) (layer "F.Cu") (net 16))
(segment (start 109.046 94.196) (end 108.417 94.196) (width 0.1524) (layer "F.Cu") (net 16))
(via (at 87.738674 97.065423) (size 0.45) (drill 0.2) (layers "F.Cu" "B.Cu") (net 19))
(segment (start 89.02735 97.37415) (end 91.6067 94.7948) (width 0.1524) (layer "F.Cu") (net 33))
(segment (start 88.07145 97.37415) (end 86.4616 98.984) (width 0.1524) (layer "F.Cu") (net 33))
(segment (start 89.02735 97.37415) (end 88.07145 97.37415) (width 0.1524) (layer "F.Cu") (net 33))
(segment (start 75.3733 97.8914) (end 81.21435 92.05035) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 81.21435 92.05035) (end 82.19365 92.05035) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 82.19365 92.05035) (end 83.8454 90.3986) (width 0.1524) (layer "F.Cu") (net 25))
(segment (start 111.3913 103.0605) (end 111.9967 103.0605) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 109.046 96.1984) (end 108.0771 97.1673) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 108.0771 97.1673) (end 108.0771 104.8392) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 87.956366 91.7987) (end 87.269556 92.485511) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 109.046 95.796) (end 109.046 96.1984) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 110.2277 91.7987) (end 87.956366 91.7987) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 80.2703 100.4127) (end 80.518001 100.660401) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 108.6474 105.4095) (end 109.6517 105.4095) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 87.269556 92.485511) (end 86.296789 92.485511) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 110.617 104.4442) (end 110.617 103.8348) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 108.0771 104.8392) (end 108.6474 105.4095) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 111.9967 103.0605) (end 113.1254 101.9318) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 86.296789 92.485511) (end 80.2703 98.512) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 113.1254 101.9318) (end 113.1254 94.6964) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 80.518001 100.660401) (end 81.3816 101.524) (width 0.1524) (layer "F.Cu") (net 18))
(via (at 87.399682 92.920056) (size 0.45) (drill 0.2) (layers "F.Cu" "B.Cu") (net 19))
(segment (start 80.2703 98.512) (end 80.2703 100.4127) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 113.1254 94.6964) (end 110.2277 91.7987) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 110.617 103.8348) (end 111.3913 103.0605) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 109.6517 105.4095) (end 110.617 104.4442) (width 0.1524) (layer "F.Cu") (net 18))
(segment (start 96.0455 95.958) (end 90.42335 90.33585) (width 0.1524) (layer "B.Cu") (net 21))
(segment (start 90.42335 89.35655) (end 88.9254 87.8586) (width 0.1524) (layer "B.Cu") (net 21))
(segment (start 90.42335 90.33585) (end 90.42335 89.35655) (width 0.1524) (layer "B.Cu") (net 21))
(segment (start 101.7814 107.1206) (end 100.1974 105.5366) (width 0.1524) (layer "B.Cu") (net 23))
(segment (start 100.1974 105.5366) (end 100.1974 97.0735) (width 0.1524) (layer "B.Cu") (net 23))
(segment (start 100.1974 97.0735) (end 89.85 86.7261) (width 0.1524) (layer "B.Cu") (net 23))
(segment (start 89.85 86.7261) (end 87.5179 86.7261) (width 0.1524) (layer "B.Cu") (net 23))
(segment (start 87.5179 86.7261) (end 86.3854 87.8586) (width 0.1524) (layer "B.Cu") (net 23))
(segment (start 94.9408 104.6686) (end 94.9408 101.9093) (width 0.1524) (layer "B.Cu") (net 24))
(segment (start 94.9408 101.9093) (end 84.9876 91.9561) (width 0.1524) (layer "B.Cu") (net 24))
(segment (start 84.9876 91.9561) (end 84.9876 89.0008) (width 0.1524) (layer "B.Cu") (net 24))
(segment (start 84.9876 89.0008) (end 83.8454 87.8586) (width 0.1524) (layer "B.Cu") (net 24))
(segment (start 85.1916 94.8229) (end 82.5754 92.2067) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 85.1916 102.9082) (end 85.1916 94.8229) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 82.5754 92.2067) (end 82.5754 89.1286) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 90.1065 107.8231) (end 85.1916 102.9082) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 90.1065 108.902) (end 90.1065 107.8231) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 82.5754 89.1286) (end 81.3054 87.8586) (width 0.1524) (layer "B.Cu") (net 4))
(segment (start 91.7043 107.1573) (end 91.7043 102.666) (width 0.1524) (layer "B.Cu") (net 2))
(via (at 91.7043 107.1573) (size 0.45) (layers "F.Cu" "B.Cu") (net 2))
(segment (start 97.7021 104.597) (end 96.9363 103.8312) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 96.9363 103.8312) (end 93.6363 103.8312) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 98.781 104.597) (end 97.7021 104.597) (width 0.1524) (layer "F.Cu") (net 6))
(segment (start 103.861 100.914) (end 103.861 101.9929) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 104.9399 104.2504) (end 104.9399 103.0718) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 104.9399 103.0718) (end 103.861 101.9929) (width 0.1524) (layer "B.Cu") (net 9))
(segment (start 102.1423 105.9743) (end 101.0978 105.9743) (width 0.1524) (layer "F.Cu") (net 13))
(segment (start 101.0978 105.9743) (end 100.051 104.9275) (width 0.1524) (layer "F.Cu") (net 13))
(segment (start 100.051 104.9275) (end 100.051 104.3188) (width 0.1524) (layer "F.Cu") (net 13))
(segment (start 100.051 104.3188) (end 97.2562 101.524) (width 0.1524) (layer "F.Cu") (net 13))
(segment (start 97.2562 101.524) (end 89.0016 101.524) (width 0.1524) (layer "F.Cu") (net 13))
(segment (start 80.0354 102.4395) (end 80.0354 87.5805) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 80.0354 87.5805) (end 81.195 86.4209) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 81.195 86.4209) (end 95.8245 86.4209) (width 0.1524) (layer "B.Cu") (net 14))
(segment (start 109.046 93.396) (end 108.4171 93.396) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 108.4171 93.396) (end 107.4994 92.4783) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 107.4994 92.4783) (end 91.4066 92.4783) (width 0.1524) (layer "F.Cu") (net 15))
(segment (start 67.056 99.314) (end 76.6316 99.314) (width 0.762) (layer "F.Cu") (net 20))
(segment (start 76.6316 99.314) (end 78.8416 101.524) (width 0.762) (layer "F.Cu") (net 20))
(segment (start 76.5175 108.902) (end 76.5175 102.222) (width 0.762) (layer "F.Cu") (net 20))
(segment (start 76.5175 102.222) (end 77.216 101.524) (width 0.762) (layer "F.Cu") (net 20))
(segment (start 77.216 101.524) (end 78.8416 101.524) (width 0.762) (layer "F.Cu") (net 20))
(segment (start 96.0455 104.2851) (end 96.0455 95.958) (width 0.1524) (layer "B.Cu") (net 21))
(segment (start 99.3895 107.6291) (end 96.0455 104.2851) (width 0.1524) (layer "F.Cu") (net 21))
(via (at 96.0455 104.2851) (size 0.45) (layers "F.Cu" "B.Cu") (net 21))
(segment (start 102.646 108.258) (end 102.646 107.6291) (width 0.1524) (layer "F.Cu") (net 23))
(segment (start 102.646 107.6291) (end 102.2899 107.6291) (width 0.1524) (layer "F.Cu") (net 23))
(segment (start 102.2899 107.6291) (end 101.7814 107.1206) (width 0.1524) (layer "F.Cu") (net 23))
(via (at 101.7814 107.1206) (size 0.45) (layers "F.Cu" "B.Cu") (net 23))
(segment (start 103.446 108.258) (end 103.446 108.8869) (width 0.1524) (layer "F.Cu") (net 24))
(segment (start 103.446 108.8869) (end 99.6457 108.8869) (width 0.1524) (layer "F.Cu") (net 24))