-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcl0ck_display.kicad_pcb-bak
1959 lines (1934 loc) · 162 KB
/
cl0ck_display.kicad_pcb-bak
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.2+dfsg1-1)
(general
(thickness 1.6)
(drawings 11)
(tracks 488)
(zones 0)
(modules 16)
(nets 42)
)
(page A3)
(title_block
(title cl0ck_display_PCB)
(date 2018-06-18)
(rev 1)
)
(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.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 6.4 6.4)
(pad_drill 3.2)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x00030_80000001)
(usegerberextensions false)
(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 true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Fab/"))
)
(net 0 "")
(net 1 DIG_03)
(net 2 DIG_01)
(net 3 DIG_02)
(net 4 DIG_00)
(net 5 DIG_07)
(net 6 DIG_05)
(net 7 DIG_06)
(net 8 DIG_04)
(net 9 DIG_11)
(net 10 DIG_09)
(net 11 DIG_10)
(net 12 DIG_08)
(net 13 DIG_15)
(net 14 DIG_13)
(net 15 DIG_14)
(net 16 DIG_12)
(net 17 VCC)
(net 18 GND)
(net 19 MOSI)
(net 20 LOAD_SEGS)
(net 21 SCK)
(net 22 "Net-(DRIVER_1-Pad18)")
(net 23 "Net-(DRIVER_1-Pad24)")
(net 24 "Net-(DRIVER_2-Pad18)")
(net 25 "Net-(DRIVER_2-Pad24)")
(net 26 "SEG_E(1)")
(net 27 "SEG_D(1)")
(net 28 "SEG_DP(1)")
(net 29 "SEG_C(1)")
(net 30 "SEG_G(1)")
(net 31 "SEG_A(1)")
(net 32 "SEG_B(1)")
(net 33 "SEG_F(1)")
(net 34 "SEG_E(2)")
(net 35 "SEG_D(2)")
(net 36 "SEG_DP(2)")
(net 37 "SEG_C(2)")
(net 38 "SEG_G(2)")
(net 39 "SEG_A(2)")
(net 40 "SEG_B(2)")
(net 41 "SEG_F(2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net DIG_00)
(add_net DIG_01)
(add_net DIG_02)
(add_net DIG_03)
(add_net DIG_04)
(add_net DIG_05)
(add_net DIG_06)
(add_net DIG_07)
(add_net DIG_08)
(add_net DIG_09)
(add_net DIG_10)
(add_net DIG_11)
(add_net DIG_12)
(add_net DIG_13)
(add_net DIG_14)
(add_net DIG_15)
(add_net GND)
(add_net LOAD_SEGS)
(add_net MOSI)
(add_net "Net-(DRIVER_1-Pad18)")
(add_net "Net-(DRIVER_1-Pad24)")
(add_net "Net-(DRIVER_2-Pad18)")
(add_net "Net-(DRIVER_2-Pad24)")
(add_net SCK)
(add_net "SEG_A(1)")
(add_net "SEG_A(2)")
(add_net "SEG_B(1)")
(add_net "SEG_B(2)")
(add_net "SEG_C(1)")
(add_net "SEG_C(2)")
(add_net "SEG_D(1)")
(add_net "SEG_D(2)")
(add_net "SEG_DP(1)")
(add_net "SEG_DP(2)")
(add_net "SEG_E(1)")
(add_net "SEG_E(2)")
(add_net "SEG_F(1)")
(add_net "SEG_F(2)")
(add_net "SEG_G(1)")
(add_net "SEG_G(2)")
(add_net VCC)
)
(module Mounting_Holes:MountingHole_3.2mm_M3_Pad (layer F.Cu) (tedit 5D7C8C4B) (tstamp 5B27871C)
(at 56 148)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(fp_text reference REF** (at 0 -4.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_Pad (at 0 4.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.45 0) (layer F.CrtYd) (width 0.05))
(pad "" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask))
)
(module cl0ck_display:4x7-SEG (layer F.Cu) (tedit 5B273EE7) (tstamp 5B274097)
(at 89.8 151.4)
(descr "4x7-segments, 14 mm, Kingbright CA56-12 and CC56-12 displays")
(tags "7-segments display")
(path /5B260EF9)
(fp_text reference 7-SEG_1 (at -23.95 -0.28) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 00-03 (at -14.88 -0.28) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8.8.8.8 (at 7.62 -11) (layer F.SilkS)
(effects (font (size 12 13) (thickness 0.15) italic))
)
(fp_line (start -29.45 1.85) (end 42.06 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 1.85) (end 42.06 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 -23.85) (end -29.45 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -29.45 -23.85) (end -29.45 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -28.45 0.85) (end 41.06 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start -28.45 -22.85) (end -28.45 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 -22.85) (end -28.45 -22.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 0.85) (end 41.06 -22.85) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
(net 26 "SEG_E(1)"))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 27 "SEG_D(1)"))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 28 "SEG_DP(1)"))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 29 "SEG_C(1)"))
(pad 5 thru_hole circle (at 10.16 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 30 "SEG_G(1)"))
(pad 6 thru_hole circle (at 12.7 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 1 DIG_03))
(pad 9 thru_hole circle (at 7.62 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 2 DIG_01))
(pad 8 thru_hole circle (at 10.16 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 3 DIG_02))
(pad 12 thru_hole circle (at 0 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 4 DIG_00))
(pad 11 thru_hole circle (at 2.54 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 31 "SEG_A(1)"))
(pad 7 thru_hole circle (at 12.7 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 32 "SEG_B(1)"))
(pad 10 thru_hole circle (at 5.08 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 33 "SEG_F(1)"))
(model Displays_7-Segment.3dshapes/Cx56-12.wrl
(offset (xyz 6.45159990310669 7.619999885559082 0.9999979849815369))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module cl0ck_display:4x7-SEG (layer F.Cu) (tedit 5B273EE7) (tstamp 5B2740A8)
(at 161.4 151.4)
(descr "4x7-segments, 14 mm, Kingbright CA56-12 and CC56-12 displays")
(tags "7-segments display")
(path /5B2610B6)
(fp_text reference 7-SEG_2 (at -23.95 -0.28) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 04-07 (at -14.88 -0.28) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8.8.8.8 (at 7.62 -11) (layer F.SilkS)
(effects (font (size 12 13) (thickness 0.15) italic))
)
(fp_line (start -29.45 1.85) (end 42.06 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 1.85) (end 42.06 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 -23.85) (end -29.45 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -29.45 -23.85) (end -29.45 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -28.45 0.85) (end 41.06 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start -28.45 -22.85) (end -28.45 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 -22.85) (end -28.45 -22.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 0.85) (end 41.06 -22.85) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
(net 26 "SEG_E(1)"))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 27 "SEG_D(1)"))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 28 "SEG_DP(1)"))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 29 "SEG_C(1)"))
(pad 5 thru_hole circle (at 10.16 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 30 "SEG_G(1)"))
(pad 6 thru_hole circle (at 12.7 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 5 DIG_07))
(pad 9 thru_hole circle (at 7.62 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 6 DIG_05))
(pad 8 thru_hole circle (at 10.16 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 DIG_06))
(pad 12 thru_hole circle (at 0 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 8 DIG_04))
(pad 11 thru_hole circle (at 2.54 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 31 "SEG_A(1)"))
(pad 7 thru_hole circle (at 12.7 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 32 "SEG_B(1)"))
(pad 10 thru_hole circle (at 5.08 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 33 "SEG_F(1)"))
(model Displays_7-Segment.3dshapes/Cx56-12.wrl
(offset (xyz 6.45159990310669 7.619999885559082 0.9999979849815369))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module cl0ck_display:4x7-SEG (layer F.Cu) (tedit 5B273EE7) (tstamp 5B2740B9)
(at 233 151.4)
(descr "4x7-segments, 14 mm, Kingbright CA56-12 and CC56-12 displays")
(tags "7-segments display")
(path /5B26111F)
(fp_text reference 7-SEG_3 (at -23.95 -0.28) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 08-11 (at -14.88 -0.28) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8.8.8.8 (at 7.62 -11) (layer F.SilkS)
(effects (font (size 12 13) (thickness 0.15) italic))
)
(fp_line (start -29.45 1.85) (end 42.06 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 1.85) (end 42.06 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 -23.85) (end -29.45 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -29.45 -23.85) (end -29.45 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -28.45 0.85) (end 41.06 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start -28.45 -22.85) (end -28.45 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 -22.85) (end -28.45 -22.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 0.85) (end 41.06 -22.85) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
(net 34 "SEG_E(2)"))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 35 "SEG_D(2)"))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 36 "SEG_DP(2)"))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 37 "SEG_C(2)"))
(pad 5 thru_hole circle (at 10.16 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 38 "SEG_G(2)"))
(pad 6 thru_hole circle (at 12.7 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 9 DIG_11))
(pad 9 thru_hole circle (at 7.62 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 10 DIG_09))
(pad 8 thru_hole circle (at 10.16 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 11 DIG_10))
(pad 12 thru_hole circle (at 0 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 12 DIG_08))
(pad 11 thru_hole circle (at 2.54 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 39 "SEG_A(2)"))
(pad 7 thru_hole circle (at 12.7 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 40 "SEG_B(2)"))
(pad 10 thru_hole circle (at 5.08 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 41 "SEG_F(2)"))
(model Displays_7-Segment.3dshapes/Cx56-12.wrl
(offset (xyz 6.45159990310669 7.619999885559082 0.9999979849815369))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module cl0ck_display:4x7-SEG (layer F.Cu) (tedit 5B273EE7) (tstamp 5B2740CA)
(at 304.6 151.4)
(descr "4x7-segments, 14 mm, Kingbright CA56-12 and CC56-12 displays")
(tags "7-segments display")
(path /5B261195)
(fp_text reference 7-SEG_4 (at -23.95 -0.28) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 12-15 (at -14.88 -0.28) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8.8.8.8 (at 7.62 -11) (layer F.SilkS)
(effects (font (size 12 13) (thickness 0.15) italic))
)
(fp_line (start -29.45 1.85) (end 42.06 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 1.85) (end 42.06 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 42.06 -23.85) (end -29.45 -23.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -29.45 -23.85) (end -29.45 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -28.45 0.85) (end 41.06 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start -28.45 -22.85) (end -28.45 0.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 -22.85) (end -28.45 -22.85) (layer F.SilkS) (width 0.15))
(fp_line (start 41.06 0.85) (end 41.06 -22.85) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
(net 34 "SEG_E(2)"))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 35 "SEG_D(2)"))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 36 "SEG_DP(2)"))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 37 "SEG_C(2)"))
(pad 5 thru_hole circle (at 10.16 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 38 "SEG_G(2)"))
(pad 6 thru_hole circle (at 12.7 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 13 DIG_15))
(pad 9 thru_hole circle (at 7.62 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 14 DIG_13))
(pad 8 thru_hole circle (at 10.16 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 DIG_14))
(pad 12 thru_hole circle (at 0 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 16 DIG_12))
(pad 11 thru_hole circle (at 2.54 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 39 "SEG_A(2)"))
(pad 7 thru_hole circle (at 12.7 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 40 "SEG_B(2)"))
(pad 10 thru_hole circle (at 5.08 -22) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 41 "SEG_F(2)"))
(model Displays_7-Segment.3dshapes/Cx56-12.wrl
(offset (xyz 6.45159990310669 7.619999885559082 0.9999979849815369))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer B.Cu) (tedit 5B278FA5) (tstamp 5B2740D0)
(at 129.4 149 180)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /5B2643A4)
(attr smd)
(fp_text reference C1 (at 0 -1.6 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1.0uF (at 0.8 1.4 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.15))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.15))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end -1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.45 0.75) (end 1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.35 0.6) (end 0.35 0.6) (layer B.SilkS) (width 0.15))
(fp_line (start 0.35 -0.6) (end -0.35 -0.6) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 180) (size 0.8 0.75) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 2 smd rect (at 0.75 0 180) (size 0.8 0.75) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer B.Cu) (tedit 5B278F9A) (tstamp 5B2740D6)
(at 272.6 149 180)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /5B266651)
(attr smd)
(fp_text reference C2 (at 0 -1.6 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1.0uF (at 0.6 1.4 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.15))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.15))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end -1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.45 0.75) (end 1.45 -0.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.35 0.6) (end 0.35 0.6) (layer B.SilkS) (width 0.15))
(fp_line (start 0.35 -0.6) (end -0.35 -0.6) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 180) (size 0.8 0.75) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 2 smd rect (at 0.75 0 180) (size 0.8 0.75) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SOIC:SOIC-24W_7.5x15.4mm_Pitch1.27mm (layer B.Cu) (tedit 5B28894F) (tstamp 5B2740F2)
(at 132 141 270)
(descr "24-Lead Plastic Small Outline (SO) - Wide, 7.50 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SOIC 1.27")
(path /5B273921)
(attr smd)
(fp_text reference DRIVER_1 (at 0 0) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value MAX-7219 (at 0 -8.8 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.75 7.7) (end 3.75 7.7) (layer B.Fab) (width 0.15))
(fp_line (start 3.75 7.7) (end 3.75 -7.7) (layer B.Fab) (width 0.15))
(fp_line (start 3.75 -7.7) (end -3.75 -7.7) (layer B.Fab) (width 0.15))
(fp_line (start -3.75 -7.7) (end -3.75 6.7) (layer B.Fab) (width 0.15))
(fp_line (start -3.75 6.7) (end -2.75 7.7) (layer B.Fab) (width 0.15))
(fp_line (start -5.95 8.05) (end -5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.95 8.05) (end 5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.95 8.05) (end 5.95 8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.95 -8.05) (end 5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.875 7.875) (end -3.875 7.6) (layer B.SilkS) (width 0.15))
(fp_line (start 3.875 7.875) (end 3.875 7.51) (layer B.SilkS) (width 0.15))
(fp_line (start 3.875 -7.875) (end 3.875 -7.51) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 -7.875) (end -3.875 -7.51) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 7.875) (end 3.875 7.875) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 -7.875) (end 3.875 -7.875) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 7.6) (end -5.7 7.6) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -4.7 6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 19 MOSI))
(pad 2 smd rect (at -4.7 5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 4 DIG_00))
(pad 3 smd rect (at -4.7 4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 8 DIG_04))
(pad 4 smd rect (at -4.7 3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(pad 5 smd rect (at -4.7 1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 7 DIG_06))
(pad 6 smd rect (at -4.7 0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 3 DIG_02))
(pad 7 smd rect (at -4.7 -0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 1 DIG_03))
(pad 8 smd rect (at -4.7 -1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 5 DIG_07))
(pad 9 smd rect (at -4.7 -3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(pad 10 smd rect (at -4.7 -4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 6 DIG_05))
(pad 11 smd rect (at -4.7 -5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 2 DIG_01))
(pad 12 smd rect (at -4.7 -6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 20 LOAD_SEGS))
(pad 13 smd rect (at 4.7 -6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 21 SCK))
(pad 14 smd rect (at 4.7 -5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 31 "SEG_A(1)"))
(pad 15 smd rect (at 4.7 -4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 33 "SEG_F(1)"))
(pad 16 smd rect (at 4.7 -3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 32 "SEG_B(1)"))
(pad 17 smd rect (at 4.7 -1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 30 "SEG_G(1)"))
(pad 18 smd rect (at 4.7 -0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 22 "Net-(DRIVER_1-Pad18)"))
(pad 19 smd rect (at 4.7 0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 20 smd rect (at 4.7 1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 29 "SEG_C(1)"))
(pad 21 smd rect (at 4.7 3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 26 "SEG_E(1)"))
(pad 22 smd rect (at 4.7 4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 28 "SEG_DP(1)"))
(pad 23 smd rect (at 4.7 5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 27 "SEG_D(1)"))
(pad 24 smd rect (at 4.7 6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 23 "Net-(DRIVER_1-Pad24)"))
(model Housings_SOIC.3dshapes/SOIC-24_7.5x15.4mm_Pitch1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SOIC:SOIC-24W_7.5x15.4mm_Pitch1.27mm (layer B.Cu) (tedit 5B288963) (tstamp 5B27410E)
(at 275.2 141 270)
(descr "24-Lead Plastic Small Outline (SO) - Wide, 7.50 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SOIC 1.27")
(path /5B273A06)
(attr smd)
(fp_text reference DRIVER_2 (at 0 0) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value MAX-7219 (at 0 -8.8 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.75 7.7) (end 3.75 7.7) (layer B.Fab) (width 0.15))
(fp_line (start 3.75 7.7) (end 3.75 -7.7) (layer B.Fab) (width 0.15))
(fp_line (start 3.75 -7.7) (end -3.75 -7.7) (layer B.Fab) (width 0.15))
(fp_line (start -3.75 -7.7) (end -3.75 6.7) (layer B.Fab) (width 0.15))
(fp_line (start -3.75 6.7) (end -2.75 7.7) (layer B.Fab) (width 0.15))
(fp_line (start -5.95 8.05) (end -5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.95 8.05) (end 5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.95 8.05) (end 5.95 8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.95 -8.05) (end 5.95 -8.05) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.875 7.875) (end -3.875 7.6) (layer B.SilkS) (width 0.15))
(fp_line (start 3.875 7.875) (end 3.875 7.51) (layer B.SilkS) (width 0.15))
(fp_line (start 3.875 -7.875) (end 3.875 -7.51) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 -7.875) (end -3.875 -7.51) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 7.875) (end 3.875 7.875) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 -7.875) (end 3.875 -7.875) (layer B.SilkS) (width 0.15))
(fp_line (start -3.875 7.6) (end -5.7 7.6) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -4.7 6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 23 "Net-(DRIVER_1-Pad24)"))
(pad 2 smd rect (at -4.7 5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 12 DIG_08))
(pad 3 smd rect (at -4.7 4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 16 DIG_12))
(pad 4 smd rect (at -4.7 3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(pad 5 smd rect (at -4.7 1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 15 DIG_14))
(pad 6 smd rect (at -4.7 0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 11 DIG_10))
(pad 7 smd rect (at -4.7 -0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 9 DIG_11))
(pad 8 smd rect (at -4.7 -1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 13 DIG_15))
(pad 9 smd rect (at -4.7 -3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 18 GND))
(pad 10 smd rect (at -4.7 -4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 14 DIG_13))
(pad 11 smd rect (at -4.7 -5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 10 DIG_09))
(pad 12 smd rect (at -4.7 -6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 20 LOAD_SEGS))
(pad 13 smd rect (at 4.7 -6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 21 SCK))
(pad 14 smd rect (at 4.7 -5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 39 "SEG_A(2)"))
(pad 15 smd rect (at 4.7 -4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 41 "SEG_F(2)"))
(pad 16 smd rect (at 4.7 -3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 40 "SEG_B(2)"))
(pad 17 smd rect (at 4.7 -1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 38 "SEG_G(2)"))
(pad 18 smd rect (at 4.7 -0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 24 "Net-(DRIVER_2-Pad18)"))
(pad 19 smd rect (at 4.7 0.635 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 20 smd rect (at 4.7 1.905 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 37 "SEG_C(2)"))
(pad 21 smd rect (at 4.7 3.175 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 34 "SEG_E(2)"))
(pad 22 smd rect (at 4.7 4.445 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 36 "SEG_DP(2)"))
(pad 23 smd rect (at 4.7 5.715 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 35 "SEG_D(2)"))
(pad 24 smd rect (at 4.7 6.985 270) (size 2 0.6) (layers B.Cu B.Paste B.Mask)
(net 25 "Net-(DRIVER_2-Pad24)"))
(model Housings_SOIC.3dshapes/SOIC-24_7.5x15.4mm_Pitch1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x03 (layer B.Cu) (tedit 5B288C1D) (tstamp 5B274115)
(at 203.5 140.5 180)
(descr "Through hole pin header")
(tags "pin header")
(path /5B2768CE)
(fp_text reference P1 (at -2.7 -2.6 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_01X03 (at 0 3.1 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.75 1.75) (end -1.75 -6.85) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 1.75) (end 1.75 -6.85) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 1.75 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -6.85) (end 1.75 -6.85) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 -6.35) (layer B.SilkS) (width 0.15))
(fp_line (start -1.27 -6.35) (end 1.27 -6.35) (layer B.SilkS) (width 0.15))
(fp_line (start 1.27 -6.35) (end 1.27 -1.27) (layer B.SilkS) (width 0.15))
(fp_line (start 1.55 1.55) (end 1.55 0) (layer B.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 1.55) (layer B.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 1.55 1.55) (layer B.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 19 MOSI))
(pad 2 thru_hole oval (at 0 -2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 20 LOAD_SEGS))
(pad 3 thru_hole oval (at 0 -5.08 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 21 SCK))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(offset (xyz 0 -2.539999961853027 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer B.Cu) (tedit 5B288C18) (tstamp 5B27411B)
(at 203.5 135.5 180)
(descr "Through hole pin header")
(tags "pin header")
(path /5B276921)
(fp_text reference P2 (at -2.7 -0.9 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_01X02 (at 0 3.1 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.27 -1.27) (end 1.27 -3.81) (layer B.SilkS) (width 0.15))
(fp_line (start 1.55 1.55) (end 1.55 0) (layer B.SilkS) (width 0.15))
(fp_line (start -1.75 1.75) (end -1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 1.75) (end 1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 1.75 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.3) (end 1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 1.55) (layer B.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 1.55 1.55) (layer B.SilkS) (width 0.15))
(fp_line (start -1.27 -1.27) (end -1.27 -3.81) (layer B.SilkS) (width 0.15))
(fp_line (start -1.27 -3.81) (end 1.27 -3.81) (layer B.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 180) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole oval (at 0 -2.54 180) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 17 VCC))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(offset (xyz 0 -1.269999980926514 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_SMD:R_0603 (layer B.Cu) (tedit 5B278FA3) (tstamp 5B274121)
(at 132.6 149)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /5B25F133)
(attr smd)
(fp_text reference R1 (at 0 1.6) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 24.5k (at 0.8 -1.4) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end -1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.3 0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.675) (end -0.5 -0.675) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 0.675) (end 0.5 0.675) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 2 smd rect (at 0.75 0) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
(net 22 "Net-(DRIVER_1-Pad18)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer B.Cu) (tedit 5B278F96) (tstamp 5B274127)
(at 275.9 149)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /5B266694)
(attr smd)
(fp_text reference R2 (at 0.1 1.6) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 24.5k (at 0.7 -1.4) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end -1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.3 0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.675) (end -0.5 -0.675) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 0.675) (end 0.5 0.675) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
(net 17 VCC))
(pad 2 smd rect (at 0.75 0) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
(net 24 "Net-(DRIVER_2-Pad18)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mounting_Holes:MountingHole_3.2mm_M3_Pad (layer F.Cu) (tedit 5D7C8C69) (tstamp 5B278719)
(at 351 148)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(fp_text reference REF** (at 0 -4.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_Pad (at 0 4.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.45 0) (layer F.CrtYd) (width 0.05))
(pad "" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_Pad (layer F.Cu) (tedit 5D7C8C63) (tstamp 5B27871A)
(at 351 133)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(fp_text reference REF** (at 0 -4.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_Pad (at 0 4.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.45 0) (layer F.CrtYd) (width 0.05))
(pad "" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_Pad (layer F.Cu) (tedit 5D7C8C55) (tstamp 5B27871B)
(at 56 133)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(fp_text reference REF** (at 0 -4.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_Pad (at 0 4.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.45 0) (layer F.CrtYd) (width 0.05))
(pad "" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask))
)
(gr_circle (center 268.2 137.8) (end 268.2 138) (layer B.SilkS) (width 0.2))
(gr_circle (center 125 138) (end 125.2 138.2) (layer B.SilkS) (width 0.2))
(gr_text SCK (at 200.2 145.6) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text LOAD (at 199.8 143) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text DIN (at 200.4 140.4) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text VCC (at 200.2 138) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text GND (at 200.2 135.4) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_line (start 357 127) (end 50 127) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 357 154) (end 357 127) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 50 154) (end 357 154) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 50 127) (end 50 154) (angle 90) (layer Edge.Cuts) (width 0.1))
(segment (start 132.635 136.3) (end 132.635 132.035) (width 0.25) (layer B.Cu) (net 1))
(segment (start 103.4 149.8) (end 102.5 150.7) (width 0.25) (layer B.Cu) (net 1) (tstamp 5B275293))
(segment (start 103.4 132) (end 103.4 149.8) (width 0.25) (layer B.Cu) (net 1) (tstamp 5B275292))
(via (at 103.4 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 106 132) (end 103.4 132) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B275280))
(segment (start 132.6 132) (end 106 132) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B27527F))
(via (at 132.6 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 132.635 132.035) (end 132.6 132) (width 0.25) (layer B.Cu) (net 1) (tstamp 5B27526C))
(segment (start 102.5 150.7) (end 102.5 151.4) (width 0.25) (layer B.Cu) (net 1) (tstamp 5B2752A8))
(segment (start 137.715 136.3) (end 137.715 131.315) (width 0.25) (layer B.Cu) (net 2))
(segment (start 97.42 131.02) (end 97.42 129.4) (width 0.25) (layer B.Cu) (net 2) (tstamp 5B27532B))
(segment (start 97.6 131.2) (end 97.42 131.02) (width 0.25) (layer B.Cu) (net 2) (tstamp 5B27532A))
(via (at 97.6 131.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 98.2 131.2) (end 97.6 131.2) (width 0.25) (layer F.Cu) (net 2) (tstamp 5B275317))
(segment (start 111 131.2) (end 98.2 131.2) (width 0.25) (layer F.Cu) (net 2) (tstamp 5B27530F))
(segment (start 128.6 131.2) (end 111 131.2) (width 0.25) (layer F.Cu) (net 2) (tstamp 5B27530E))
(segment (start 137.6 131.2) (end 128.6 131.2) (width 0.25) (layer F.Cu) (net 2) (tstamp 5B27530D))
(via (at 137.6 131.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 137.715 131.315) (end 137.6 131.2) (width 0.25) (layer B.Cu) (net 2) (tstamp 5B275307))
(segment (start 131.365 136.3) (end 131.365 132.835) (width 0.25) (layer B.Cu) (net 3))
(segment (start 99.96 132.76) (end 99.96 129.4) (width 0.25) (layer B.Cu) (net 3) (tstamp 5B275267))
(segment (start 100 132.8) (end 99.96 132.76) (width 0.25) (layer B.Cu) (net 3) (tstamp 5B275266))
(via (at 100 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 107.4 132.8) (end 100 132.8) (width 0.25) (layer F.Cu) (net 3) (tstamp 5B27525B))
(segment (start 123.6 132.8) (end 107.4 132.8) (width 0.25) (layer F.Cu) (net 3) (tstamp 5B27525A))
(segment (start 131.4 132.8) (end 123.6 132.8) (width 0.25) (layer F.Cu) (net 3) (tstamp 5B275259))
(via (at 131.4 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 131.365 132.835) (end 131.4 132.8) (width 0.25) (layer B.Cu) (net 3) (tstamp 5B275253))
(segment (start 126.285 136.3) (end 126.285 134.485) (width 0.25) (layer B.Cu) (net 4))
(segment (start 89.8 134.4) (end 89.8 129.4) (width 0.25) (layer B.Cu) (net 4) (tstamp 5B2751FF))
(via (at 89.8 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 91.4 134.4) (end 89.8 134.4) (width 0.25) (layer F.Cu) (net 4) (tstamp 5B2751F4))
(segment (start 108 134.4) (end 91.4 134.4) (width 0.25) (layer F.Cu) (net 4) (tstamp 5B2751EC))
(segment (start 126.2 134.4) (end 108 134.4) (width 0.25) (layer F.Cu) (net 4) (tstamp 5B2751EB))
(via (at 126.2 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 126.285 134.485) (end 126.2 134.4) (width 0.25) (layer B.Cu) (net 4) (tstamp 5B2751E1))
(segment (start 133.905 136.3) (end 133.905 132.895) (width 0.25) (layer B.Cu) (net 5))
(segment (start 173.2 149.8) (end 174.1 150.7) (width 0.25) (layer B.Cu) (net 5) (tstamp 5B2752C5) (status 20))
(segment (start 173.2 132.8) (end 173.2 149.8) (width 0.25) (layer B.Cu) (net 5) (tstamp 5B2752C4))
(via (at 173.2 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 173 132.8) (end 173.2 132.8) (width 0.25) (layer F.Cu) (net 5) (tstamp 5B2752B7))
(segment (start 146.4 132.8) (end 173 132.8) (width 0.25) (layer F.Cu) (net 5) (tstamp 5B2752B6))
(segment (start 134 132.8) (end 146.4 132.8) (width 0.25) (layer F.Cu) (net 5) (tstamp 5B2752B5))
(via (at 134 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 133.905 132.895) (end 134 132.8) (width 0.25) (layer B.Cu) (net 5) (tstamp 5B2752AE))
(segment (start 174.1 150.7) (end 174.1 151.4) (width 0.25) (layer B.Cu) (net 5) (tstamp 5B2752CD) (status 30))
(segment (start 136.445 136.3) (end 136.445 132.155) (width 0.25) (layer B.Cu) (net 6))
(segment (start 169.02 131.98) (end 169.02 129.4) (width 0.25) (layer B.Cu) (net 6) (tstamp 5B2752FB) (status 20))
(segment (start 169 132) (end 169.02 131.98) (width 0.25) (layer B.Cu) (net 6) (tstamp 5B2752FA))
(via (at 169 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 6))
(segment (start 168.6 132) (end 169 132) (width 0.25) (layer F.Cu) (net 6) (tstamp 5B2752EF))
(segment (start 146.2 132) (end 168.6 132) (width 0.25) (layer F.Cu) (net 6) (tstamp 5B2752EE))
(segment (start 136.6 132) (end 146.2 132) (width 0.25) (layer F.Cu) (net 6) (tstamp 5B2752ED))
(via (at 136.6 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 6))
(segment (start 136.445 132.155) (end 136.6 132) (width 0.25) (layer B.Cu) (net 6) (tstamp 5B2752E7))
(segment (start 169.02 129.88) (end 169.02 129.4) (width 0.25) (layer B.Cu) (net 6) (tstamp 5B274373) (status 30))
(segment (start 130.095 136.3) (end 130.095 133.705) (width 0.25) (layer B.Cu) (net 7))
(segment (start 171.56 133.44) (end 171.56 129.4) (width 0.25) (layer B.Cu) (net 7) (tstamp 5B275250) (status 20))
(segment (start 171.4 133.6) (end 171.56 133.44) (width 0.25) (layer B.Cu) (net 7) (tstamp 5B27524F))
(via (at 171.4 133.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
(segment (start 169.4 133.6) (end 171.4 133.6) (width 0.25) (layer F.Cu) (net 7) (tstamp 5B275246))
(segment (start 150.2 133.6) (end 169.4 133.6) (width 0.25) (layer F.Cu) (net 7) (tstamp 5B275245))
(segment (start 130.2 133.6) (end 150.2 133.6) (width 0.25) (layer F.Cu) (net 7) (tstamp 5B275244))
(via (at 130.2 133.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
(segment (start 130.095 133.705) (end 130.2 133.6) (width 0.25) (layer B.Cu) (net 7) (tstamp 5B275233))
(segment (start 127.555 136.3) (end 127.555 134.445) (width 0.25) (layer B.Cu) (net 8))
(segment (start 161.4 134.4) (end 161.4 129.4) (width 0.25) (layer B.Cu) (net 8) (tstamp 5B275221) (status 20))
(via (at 161.4 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 8))
(segment (start 155.2 134.4) (end 161.4 134.4) (width 0.25) (layer F.Cu) (net 8) (tstamp 5B275212))
(segment (start 133 134.4) (end 155.2 134.4) (width 0.25) (layer F.Cu) (net 8) (tstamp 5B275211))
(segment (start 127.6 134.4) (end 133 134.4) (width 0.25) (layer F.Cu) (net 8) (tstamp 5B275210))
(via (at 127.6 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 8))
(segment (start 127.555 134.445) (end 127.6 134.4) (width 0.25) (layer B.Cu) (net 8) (tstamp 5B275207))
(segment (start 275.835 136.3) (end 275.835 132.035) (width 0.25) (layer B.Cu) (net 9))
(segment (start 246.6 150) (end 245.7 150.9) (width 0.25) (layer B.Cu) (net 9) (tstamp 5B275B02))
(segment (start 246.6 132) (end 246.6 150) (width 0.25) (layer B.Cu) (net 9) (tstamp 5B275B01))
(via (at 246.6 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 9))
(segment (start 249.2 132) (end 246.6 132) (width 0.25) (layer F.Cu) (net 9) (tstamp 5B275AF4))
(segment (start 263.6 132) (end 249.2 132) (width 0.25) (layer F.Cu) (net 9) (tstamp 5B275AF2))
(segment (start 275.8 132) (end 263.6 132) (width 0.25) (layer F.Cu) (net 9) (tstamp 5B275AF1))
(via (at 275.8 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 9))
(segment (start 275.835 132.035) (end 275.8 132) (width 0.25) (layer B.Cu) (net 9) (tstamp 5B275AE8))
(segment (start 245.7 150.9) (end 245.7 151.4) (width 0.25) (layer B.Cu) (net 9) (tstamp 5B275B14))
(segment (start 280.915 136.3) (end 280.915 131.315) (width 0.25) (layer B.Cu) (net 10))
(segment (start 240.62 131.02) (end 240.62 129.4) (width 0.25) (layer B.Cu) (net 10) (tstamp 5B275B67))
(segment (start 240.8 131.2) (end 240.62 131.02) (width 0.25) (layer B.Cu) (net 10) (tstamp 5B275B66))
(via (at 240.8 131.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 246 131.2) (end 240.8 131.2) (width 0.25) (layer F.Cu) (net 10) (tstamp 5B275B5B))
(segment (start 266.8 131.2) (end 246 131.2) (width 0.25) (layer F.Cu) (net 10) (tstamp 5B275B5A))
(segment (start 280.8 131.2) (end 266.8 131.2) (width 0.25) (layer F.Cu) (net 10) (tstamp 5B275B59))
(via (at 280.8 131.2) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 280.915 131.315) (end 280.8 131.2) (width 0.25) (layer B.Cu) (net 10) (tstamp 5B275B54))
(segment (start 274.565 136.3) (end 274.565 132.965) (width 0.25) (layer B.Cu) (net 11))
(segment (start 243.16 132.76) (end 243.16 129.4) (width 0.25) (layer B.Cu) (net 11) (tstamp 5B275AE5))
(segment (start 243.2 132.8) (end 243.16 132.76) (width 0.25) (layer B.Cu) (net 11) (tstamp 5B275AE4))
(via (at 243.2 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 11))
(segment (start 246.4 132.8) (end 243.2 132.8) (width 0.25) (layer F.Cu) (net 11) (tstamp 5B275AD8))
(segment (start 261.8 132.8) (end 246.4 132.8) (width 0.25) (layer F.Cu) (net 11) (tstamp 5B275AD3))
(segment (start 274.4 132.8) (end 261.8 132.8) (width 0.25) (layer F.Cu) (net 11) (tstamp 5B275AD2))
(via (at 274.4 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 11))
(segment (start 274.565 132.965) (end 274.4 132.8) (width 0.25) (layer B.Cu) (net 11) (tstamp 5B275ACA))
(segment (start 269.485 136.3) (end 269.485 134.485) (width 0.25) (layer B.Cu) (net 12))
(segment (start 233 134.4) (end 233 129.4) (width 0.25) (layer B.Cu) (net 12) (tstamp 5B275A83))
(via (at 233 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 266 134.4) (end 233 134.4) (width 0.25) (layer F.Cu) (net 12) (tstamp 5B275A75))
(segment (start 269.4 134.4) (end 266 134.4) (width 0.25) (layer F.Cu) (net 12) (tstamp 5B275A74))
(via (at 269.4 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 269.485 134.485) (end 269.4 134.4) (width 0.25) (layer B.Cu) (net 12) (tstamp 5B275A69))
(segment (start 277.105 136.3) (end 277.105 132.895) (width 0.25) (layer B.Cu) (net 13))
(segment (start 316.4 150) (end 317.3 150.9) (width 0.25) (layer B.Cu) (net 13) (tstamp 5B275B37))
(segment (start 316.4 145.8) (end 316.4 150) (width 0.25) (layer B.Cu) (net 13) (tstamp 5B275B36))
(segment (start 316.4 132.8) (end 316.4 145.8) (width 0.25) (layer B.Cu) (net 13) (tstamp 5B275B35))
(via (at 316.4 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 309.2 132.8) (end 316.4 132.8) (width 0.25) (layer F.Cu) (net 13) (tstamp 5B275B22))
(segment (start 285.4 132.8) (end 309.2 132.8) (width 0.25) (layer F.Cu) (net 13) (tstamp 5B275B21))
(segment (start 277.2 132.8) (end 285.4 132.8) (width 0.25) (layer F.Cu) (net 13) (tstamp 5B275B20))
(via (at 277.2 132.8) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 277.105 132.895) (end 277.2 132.8) (width 0.25) (layer B.Cu) (net 13) (tstamp 5B275B1B))
(segment (start 317.3 150.9) (end 317.3 151.4) (width 0.25) (layer B.Cu) (net 13) (tstamp 5B275B3D))
(segment (start 279.645 136.3) (end 279.645 132.155) (width 0.25) (layer B.Cu) (net 14))
(segment (start 312.22 131.98) (end 312.22 129.4) (width 0.25) (layer B.Cu) (net 14) (tstamp 5B275B51))
(segment (start 312.2 132) (end 312.22 131.98) (width 0.25) (layer B.Cu) (net 14) (tstamp 5B275B50))
(via (at 312.2 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 290.6 132) (end 312.2 132) (width 0.25) (layer F.Cu) (net 14) (tstamp 5B275B48))
(segment (start 279.8 132) (end 290.6 132) (width 0.25) (layer F.Cu) (net 14) (tstamp 5B275B47))
(via (at 279.8 132) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 279.645 132.155) (end 279.8 132) (width 0.25) (layer B.Cu) (net 14) (tstamp 5B275B42))
(segment (start 273.295 136.3) (end 273.295 133.705) (width 0.25) (layer B.Cu) (net 15))
(segment (start 314.76 133.44) (end 314.76 129.4) (width 0.25) (layer B.Cu) (net 15) (tstamp 5B275AC7))
(segment (start 314.6 133.6) (end 314.76 133.44) (width 0.25) (layer B.Cu) (net 15) (tstamp 5B275AC6))
(via (at 314.6 133.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 15))
(segment (start 312.4 133.6) (end 314.6 133.6) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B275ABB))
(segment (start 292.8 133.6) (end 312.4 133.6) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B275AB8))
(segment (start 277.4 133.6) (end 292.8 133.6) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B275AB7))
(segment (start 273.4 133.6) (end 277.4 133.6) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B275AB6))
(via (at 273.4 133.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 15))
(segment (start 273.295 133.705) (end 273.4 133.6) (width 0.25) (layer B.Cu) (net 15) (tstamp 5B275AB0))
(segment (start 270.755 136.3) (end 270.755 134.445) (width 0.25) (layer B.Cu) (net 16))
(segment (start 304.6 134.4) (end 304.6 129.4) (width 0.25) (layer B.Cu) (net 16) (tstamp 5B275A97))
(via (at 304.6 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 301.4 134.4) (end 304.6 134.4) (width 0.25) (layer F.Cu) (net 16) (tstamp 5B275A8F))
(segment (start 283.4 134.4) (end 301.4 134.4) (width 0.25) (layer F.Cu) (net 16) (tstamp 5B275A8C))
(segment (start 270.8 134.4) (end 283.4 134.4) (width 0.25) (layer F.Cu) (net 16) (tstamp 5B275A8B))
(via (at 270.8 134.4) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 270.755 134.445) (end 270.8 134.4) (width 0.25) (layer B.Cu) (net 16) (tstamp 5B275A87))
(segment (start 203.5 138.04) (end 206.96 138.04) (width 0.25) (layer B.Cu) (net 17))
(segment (start 274.6 148.8) (end 274.565 148.8) (width 0.25) (layer B.Cu) (net 17) (tstamp 5B29644D))
(segment (start 274.6 151.2) (end 274.6 148.8) (width 0.25) (layer B.Cu) (net 17) (tstamp 5B29644B))
(segment (start 265.4 151.2) (end 274.6 151.2) (width 0.25) (layer B.Cu) (net 17) (tstamp 5B29644A))