-
Notifications
You must be signed in to change notification settings - Fork 2
/
board_full_var2.kicad_pcb
1162 lines (1140 loc) · 75.6 KB
/
board_full_var2.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 4) (host pcbnew 4.0.6-e0-6349~52~ubuntu16.10.1)
(general
(links 46)
(no_connects 2)
(area 143.51 77.99 206.315001 127.030002)
(thickness 1.6)
(drawings 10)
(tracks 179)
(zones 0)
(modules 13)
(nets 33)
)
(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.8)
(trace_clearance 0.5)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 1.6)
(via_drill 0.8)
(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 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(grid_origin 139.7 76.2)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x00020_00000000)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk true)
(subtractmaskfromsilk false)
(outputformat 4)
(mirror true)
(drillshape 2)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 GND)
(net 2 +3V3)
(net 3 "Net-(RGB1-Pad1)")
(net 4 "Net-(RGB1-Pad2)")
(net 5 "Net-(RGB1-Pad3)")
(net 6 +12V)
(net 7 "Net-(RGB2-Pad1)")
(net 8 "Net-(RGB2-Pad2)")
(net 9 "Net-(RGB2-Pad3)")
(net 10 "Net-(U1-Pad2)")
(net 11 "Net-(U1-Pad5)")
(net 12 "Net-(U1-Pad6)")
(net 13 "Net-(U1-Pad7)")
(net 14 "Net-(U1-Pad17)")
(net 15 "Net-(U1-Pad18)")
(net 16 "Net-(U1-Pad19)")
(net 17 "Net-(U1-Pad20)")
(net 18 "Net-(U1-Pad21)")
(net 19 "Net-(U1-Pad22)")
(net 20 "Net-(U2-Pad13)")
(net 21 /SCL)
(net 22 /SDA)
(net 23 /TX)
(net 24 /RX)
(net 25 /RESET)
(net 26 /FLASH)
(net 27 "Net-(R3-Pad1)")
(net 28 "Net-(R2-Pad2)")
(net 29 "Net-(Q1-Pad1)")
(net 30 "Net-(LED_W1-Pad2)")
(net 31 "Net-(LED_W1-Pad3)")
(net 32 "Net-(P_12V1-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.5)
(trace_width 0.8)
(via_dia 1.6)
(via_drill 0.8)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /FLASH)
(add_net /RESET)
(add_net /RX)
(add_net /SCL)
(add_net /SDA)
(add_net /TX)
(add_net "Net-(LED_W1-Pad2)")
(add_net "Net-(LED_W1-Pad3)")
(add_net "Net-(P_12V1-Pad2)")
(add_net "Net-(Q1-Pad1)")
(add_net "Net-(R2-Pad2)")
(add_net "Net-(R3-Pad1)")
(add_net "Net-(RGB1-Pad1)")
(add_net "Net-(RGB1-Pad2)")
(add_net "Net-(RGB1-Pad3)")
(add_net "Net-(RGB2-Pad1)")
(add_net "Net-(RGB2-Pad2)")
(add_net "Net-(RGB2-Pad3)")
(add_net "Net-(U1-Pad17)")
(add_net "Net-(U1-Pad18)")
(add_net "Net-(U1-Pad19)")
(add_net "Net-(U1-Pad2)")
(add_net "Net-(U1-Pad20)")
(add_net "Net-(U1-Pad21)")
(add_net "Net-(U1-Pad22)")
(add_net "Net-(U1-Pad5)")
(add_net "Net-(U1-Pad6)")
(add_net "Net-(U1-Pad7)")
(add_net "Net-(U2-Pad13)")
)
(net_class Supply ""
(clearance 0.5)
(trace_width 1.2)
(via_dia 1)
(via_drill 0.6)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +12V)
(add_net +3V3)
(add_net GND)
)
(module Connectors_Molex:Molex_KK-6410-04_04x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 5895AEF5)
(at 186.69 110.49)
(descr "Connector Headers with Friction Lock, 22-27-2041, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2041")
(path /5895A1CE)
(fp_text reference RGB2 (at 10.16 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X04 (at 3.81 4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 8.99 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 2.98) (end 8.99 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.62 1.98) (end 7.62 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 7.37 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 1.55) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 2.98) (end 7.37 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -3.02) (end 6.82 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -2.4) (end 8.42 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 8.42 -2.4) (end 8.42 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 9.5 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 -3.55) (end 9.5 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 7 "Net-(RGB2-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 8 "Net-(RGB2-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 9 "Net-(RGB2-Pad3)"))
(pad 4 thru_hole oval (at 7.62 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 6 +12V))
)
(module Connectors_Molex:Molex_KK-6410-04_04x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 5895AED1)
(at 186.69 102.87)
(descr "Connector Headers with Friction Lock, 22-27-2041, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2041")
(path /5895A163)
(fp_text reference RGB1 (at 1 -4.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X04 (at 3.81 4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 8.99 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 2.98) (end 8.99 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.62 1.98) (end 7.62 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 7.37 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 1.55) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 2.98) (end 7.37 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -3.02) (end 6.82 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -2.4) (end 8.42 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 8.42 -2.4) (end 8.42 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 9.5 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 -3.55) (end 9.5 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 3 "Net-(RGB1-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 4 "Net-(RGB1-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 5 "Net-(RGB1-Pad3)"))
(pad 4 thru_hole oval (at 7.62 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 6 +12V))
)
(module ESP8266:ESP-12E (layer F.Cu) (tedit 559F8D21) (tstamp 5895AF37)
(at 148.5011 105.0036)
(descr "Module, ESP-8266, ESP-12, 16 pad, SMD")
(tags "Module ESP-8266 ESP8266")
(path /58959AE4)
(fp_text reference U1 (at -2 -2) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ESP-12E (at 8 1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.25 -0.5) (end -2.25 -8.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.25 -8.75) (end 15.25 -8.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.25 -8.75) (end 16.25 -8.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 -8.75) (end 16.25 16) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 16) (end -2.25 16) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.25 16) (end -2.25 -0.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.016 -8.382) (end 14.986 -8.382) (layer F.CrtYd) (width 0.1524))
(fp_line (start 14.986 -8.382) (end 14.986 -0.889) (layer F.CrtYd) (width 0.1524))
(fp_line (start -1.016 -8.382) (end -1.016 -1.016) (layer F.CrtYd) (width 0.1524))
(fp_line (start -1.016 14.859) (end -1.016 15.621) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.016 15.621) (end 14.986 15.621) (layer F.SilkS) (width 0.1524))
(fp_line (start 14.986 15.621) (end 14.986 14.859) (layer F.SilkS) (width 0.1524))
(fp_line (start 14.992 -8.4) (end -1.008 -2.6) (layer F.CrtYd) (width 0.1524))
(fp_line (start -1.008 -8.4) (end 14.992 -2.6) (layer F.CrtYd) (width 0.1524))
(fp_text user "No Copper" (at 6.892 -5.4) (layer F.CrtYd)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.008 -2.6) (end 14.992 -2.6) (layer F.CrtYd) (width 0.1524))
(fp_line (start 15 -8.4) (end 15 15.6) (layer F.Fab) (width 0.05))
(fp_line (start 14.992 15.6) (end -1.008 15.6) (layer F.Fab) (width 0.05))
(fp_line (start -1.008 15.6) (end -1.008 -8.4) (layer F.Fab) (width 0.05))
(fp_line (start -1.008 -8.4) (end 14.992 -8.4) (layer F.Fab) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 25 /RESET))
(pad 2 thru_hole oval (at 0 2) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(U1-Pad2)"))
(pad 3 thru_hole oval (at 0 4) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 2 +3V3))
(pad 4 thru_hole oval (at 0 6) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 29 "Net-(Q1-Pad1)"))
(pad 5 thru_hole oval (at 0 8) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(U1-Pad5)"))
(pad 6 thru_hole oval (at 0 10) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(U1-Pad6)"))
(pad 7 thru_hole oval (at 0 12) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 13 "Net-(U1-Pad7)"))
(pad 8 thru_hole oval (at 0 14) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 2 +3V3))
(pad 9 thru_hole oval (at 14 14) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 10 thru_hole oval (at 14 12) (size 2.5 1.1) (drill 0.65 (offset 0.6 0)) (layers *.Cu *.Mask F.SilkS)
(net 27 "Net-(R3-Pad1)"))
(pad 11 thru_hole oval (at 14 10) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 28 "Net-(R2-Pad2)"))
(pad 12 thru_hole oval (at 14 8) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 26 /FLASH))
(pad 13 thru_hole oval (at 14 6) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 22 /SDA))
(pad 14 thru_hole oval (at 14 4) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 21 /SCL))
(pad 15 thru_hole oval (at 14 2) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 24 /RX))
(pad 16 thru_hole oval (at 14 0) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask F.SilkS)
(net 23 /TX))
(pad 17 smd oval (at 1.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(U1-Pad17)"))
(pad 18 smd oval (at 3.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(U1-Pad18)"))
(pad 19 smd oval (at 5.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 16 "Net-(U1-Pad19)"))
(pad 20 smd oval (at 7.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 17 "Net-(U1-Pad20)"))
(pad 21 smd oval (at 9.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(U1-Pad21)"))
(pad 22 smd oval (at 11.99 15.75 90) (size 2.4 1.1) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(U1-Pad22)"))
(model /home/ian/kicad/libraries/kicad-ESP8266/ESP8266.3dshapes/ESP-12.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3937007874 0.3937007874 0.3937007874))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Molex:Molex_KK-6410-04_04x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 5895AEAD)
(at 167.64 88.9)
(descr "Connector Headers with Friction Lock, 22-27-2041, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2041")
(path /5895A207)
(fp_text reference I2C1 (at -2.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X04 (at 3.81 4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 8.99 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 2.98) (end 8.99 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 8.99 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.62 1.98) (end 7.62 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 7.37 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 1.55) (end 7.62 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 7.37 2.98) (end 7.37 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -3.02) (end 6.82 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -2.4) (end 8.42 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 8.42 -2.4) (end 8.42 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 9.5 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 -3.55) (end 9.5 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.5 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 21 /SCL))
(pad 2 thru_hole oval (at 2.54 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 22 /SDA))
(pad 3 thru_hole oval (at 5.08 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
(pad 4 thru_hole oval (at 7.62 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 2 +3V3))
)
(module Connectors_Molex:Molex_KK-6410-05_05x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 5895AF1D)
(at 152.4 88.9)
(descr "Connector Headers with Friction Lock, 22-27-2051, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2051")
(path /5895A309)
(fp_text reference SERIAL1 (at -2.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X05 (at 5.08 4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 11.53 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 11.53 2.98) (end 11.53 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 11.53 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 10.16 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 1.98) (end 10.16 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 9.91 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 9.91 1.55) (end 10.16 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 9.91 2.98) (end 9.91 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -3.02) (end 6.82 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 6.82 -2.4) (end 8.42 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 8.42 -2.4) (end 8.42 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 9.36 -3.02) (end 9.36 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 9.36 -2.4) (end 10.96 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 10.96 -2.4) (end 10.96 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 12.05 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 12.05 -3.55) (end 12.05 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 12.05 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 25 /RESET))
(pad 2 thru_hole oval (at 2.54 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 5.08 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 26 /FLASH))
(pad 4 thru_hole oval (at 7.62 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 23 /TX))
(pad 5 thru_hole oval (at 10.16 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 24 /RX))
)
(module Housings_DIP:DIP-16_W7.62mm_LongPads (layer F.Cu) (tedit 586281B5) (tstamp 5895AF5A)
(at 175.26 102.87)
(descr "16-lead dip package, row spacing 7.62 mm (300 mils), LongPads")
(tags "DIL DIP PDIP 2.54mm 7.62mm 300mil LongPads")
(path /58959B4F)
(fp_text reference U2 (at 3.81 -2.39) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ULN2003A (at 3.81 20.17) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 3.81 -1.39) (end 2.81 -1.39) (angle -180) (layer F.SilkS) (width 0.12))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.81 -1.39) (end 1.44 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 -1.39) (end 1.44 19.17) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 19.17) (end 6.18 19.17) (layer F.SilkS) (width 0.12))
(fp_line (start 6.18 19.17) (end 6.18 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 6.18 -1.39) (end 4.81 -1.39) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -1.6) (end -1.5 19.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 19.3) (end 9.1 19.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.1 19.3) (end 9.1 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.1 -1.6) (end -1.5 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 /FLASH))
(pad 9 thru_hole oval (at 7.62 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 +12V))
(pad 2 thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(R2-Pad2)"))
(pad 10 thru_hole oval (at 7.62 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(RGB2-Pad3)"))
(pad 3 thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(R3-Pad1)"))
(pad 11 thru_hole oval (at 7.62 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(RGB2-Pad2)"))
(pad 4 thru_hole oval (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "Net-(Q1-Pad1)"))
(pad 12 thru_hole oval (at 7.62 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(RGB2-Pad1)"))
(pad 5 thru_hole oval (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(U1-Pad5)"))
(pad 13 thru_hole oval (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(U2-Pad13)"))
(pad 6 thru_hole oval (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(U1-Pad6)"))
(pad 14 thru_hole oval (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(RGB1-Pad3)"))
(pad 7 thru_hole oval (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(U1-Pad7)"))
(pad 15 thru_hole oval (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(RGB1-Pad2)"))
(pad 8 thru_hole oval (at 0 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 16 thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(RGB1-Pad1)"))
(model Housings_DIP.3dshapes/DIP-16_W7.62mm_LongPads.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5895D765)
(at 147.32 93.98)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5895D479)
(fp_text reference R1 (at 0 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k8 (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 /FLASH))
(model Resistors_ThroughHole.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5895D77B)
(at 179.07 87.63 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5895D765)
(fp_text reference R2 (at 7.62 2.54 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K8 (at 5.08 2.31 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(R2-Pad2)"))
(model Resistors_ThroughHole.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5895D960)
(at 171.45 110.49 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5895D7A1)
(fp_text reference R3 (at 7.62 -2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K8 (at 7.62 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.47 -1.25) (end 4.47 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 4.47 1.25) (end 10.77 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 10.77 1.25) (end 10.77 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 10.77 -1.25) (end 4.47 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 4.47 0) (layer F.Fab) (width 0.1))
(fp_line (start 15.24 0) (end 10.77 0) (layer F.Fab) (width 0.1))
(fp_line (start 4.41 -1.31) (end 4.41 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 4.41 1.31) (end 10.83 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.83 1.31) (end 10.83 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.83 -1.31) (end 4.41 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 4.41 0) (layer F.SilkS) (width 0.12))
(fp_line (start 14.26 0) (end 10.83 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 16.3 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.3 1.6) (end 16.3 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.3 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(R3-Pad1)"))
(pad 2 thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(model Resistors_ThroughHole.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-220_Neutral123_Vertical_LargePads (layer F.Cu) (tedit 0) (tstamp 5896030E)
(at 189.23 120.65 270)
(descr "TO-220, Neutral, Vertical, Large Pads,")
(tags "TO-220, Neutral, Vertical, Large Pads,")
(path /5895F222)
(fp_text reference Q1 (at 3.81 2.54 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Q_NMOS_GDS (at 0 3.81 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.334 -1.905) (end 3.429 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 0.889 -1.905) (end 1.651 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -1.524 -1.905) (end -1.651 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -1.524 -1.905) (end -0.889 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.905) (end -3.556 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 1.778) (end -3.683 1.778) (layer F.SilkS) (width 0.15))
(fp_line (start -1.016 1.905) (end -1.651 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.905) (end 0.889 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 1.778) (end 3.683 1.778) (layer F.SilkS) (width 0.15))
(fp_line (start -1.524 -3.048) (end -1.524 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -3.048) (end 1.524 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 -1.905) (end 5.334 1.778) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 1.778) (end -5.334 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 -3.048) (end 5.334 -1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.905) (end -5.334 -3.048) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -3.048) (end -5.334 -3.048) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -3.048) (end 5.334 -3.048) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole oval (at 0 0) (size 3.50012 1.69926) (drill 1.00076) (layers *.Cu *.Mask)
(net 30 "Net-(LED_W1-Pad2)"))
(pad 1 thru_hole oval (at -2.54 0) (size 3.50012 1.69926) (drill 1.00076) (layers *.Cu *.Mask)
(net 29 "Net-(Q1-Pad1)"))
(pad 3 thru_hole oval (at 2.54 0) (size 3.50012 1.69926) (drill 1.00076) (layers *.Cu *.Mask)
(net 1 GND))
(model TO_SOT_Packages_THT.3dshapes/TO-220_Neutral123_Vertical_LargePads.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Molex:Molex_KK-6410-03_03x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 589604C6)
(at 199.39 121.92 180)
(descr "Connector Headers with Friction Lock, 22-27-2031, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2031")
(path /5895F43D)
(fp_text reference LED_W1 (at 3.81 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 2.54 4.5 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 6.45 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 6.45 2.98) (end 6.45 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.45 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 5.08 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 5.08 1.98) (end 5.08 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 4.83 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.83 1.55) (end 5.08 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 4.83 2.98) (end 4.83 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 7 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 7 -3.55) (end 7 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 180) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 6 +12V))
(pad 2 thru_hole oval (at 2.54 0 180) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 30 "Net-(LED_W1-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0 180) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 31 "Net-(LED_W1-Pad3)"))
)
(module Connectors_Molex:Molex_KK-6410-03_03x2.54mm_Straight (layer F.Cu) (tedit 56C6219D) (tstamp 589604E6)
(at 198.12 101.6)
(descr "Connector Headers with Friction Lock, 22-27-2031, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2031")
(path /5895FADD)
(fp_text reference P_12V1 (at 1 3.81) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 2.54 4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.37 -3.02) (end -1.37 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start -1.37 2.98) (end 6.45 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 6.45 2.98) (end 6.45 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 6.45 -3.02) (end -1.37 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 0 2.98) (end 0 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 5.08 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 5.08 1.98) (end 5.08 2.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1.98) (end 0.25 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.55) (end 4.83 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.83 1.55) (end 5.08 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 2.98) (end 0.25 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start 4.83 2.98) (end 4.83 1.98) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -3.02) (end -0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8 -2.4) (end 0.8 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8 -2.4) (end 0.8 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -3.02) (end 1.74 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 1.74 -2.4) (end 3.34 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 3.34 -2.4) (end 3.34 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -3.02) (end 4.28 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 4.28 -2.4) (end 5.88 -2.4) (layer F.SilkS) (width 0.15))
(fp_line (start 5.88 -2.4) (end 5.88 -3.02) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9 3.5) (end -1.9 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -3.55) (end 7 -3.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 7 -3.55) (end 7 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7 3.5) (end -1.9 3.5) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 6 +12V))
(pad 2 thru_hole oval (at 2.54 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 32 "Net-(P_12V1-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GND))
)
(module ESP8266:DCDC (layer F.Cu) (tedit 5896102F) (tstamp 58961199)
(at 182.88 78.74)
(path /5895C487)
(fp_text reference U3 (at 8.89 5.08) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DCDC (at 8.89 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 19.05) (end -2.54 0) (layer F.CrtYd) (width 0.15))
(fp_line (start 22.86 19.05) (end -2.54 19.05) (layer F.CrtYd) (width 0.15))
(fp_line (start 22.86 0) (end 22.86 19.05) (layer F.CrtYd) (width 0.15))
(fp_line (start -2.54 0) (end 22.86 0) (layer F.CrtYd) (width 0.15))
(pad 3 thru_hole oval (at 0 2.54) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 3 thru_hole oval (at 0 5.08) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 4 thru_hole oval (at 0 16.51) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 4 thru_hole oval (at 0 13.97) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole oval (at 20.32 2.54) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 6 +12V))
(pad 1 thru_hole oval (at 20.32 5.08) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 6 +12V))
(pad 2 thru_hole oval (at 20.32 13.97) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 20.32 16.51) (size 2 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
)
(gr_text RX (at 162.56 85.09) (layer F.SilkS) (tstamp 58974CFA)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text TX (at 160.02 85.09) (layer F.SilkS) (tstamp 58974CF9)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text DTR (at 157.48 85.09) (layer F.SilkS) (tstamp 58974CF8)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text GND (at 154.94 85.09) (layer F.SilkS) (tstamp 58974CF7)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text RTS (at 152.4 85.09) (layer F.SilkS) (tstamp 58974CF6)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text 3V3 (at 175.26 85.09) (layer F.SilkS) (tstamp 589721D0)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text GND (at 172.72 85.09) (layer F.SilkS) (tstamp 589721C0)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text SDA (at 170.18 85.09) (layer F.SilkS) (tstamp 589721B6)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text SCL (at 167.64 85.09) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(gr_text "ESP_LedCtrl\nFull + 1x I2C" (at 189.23 88.9 90) (layer B.Cu)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(segment (start 203.2 97.79) (end 203.2 99.06) (width 1.6) (layer B.Cu) (net 1))
(segment (start 203.2 99.06) (end 203.2 101.6) (width 1.6) (layer B.Cu) (net 1))
(segment (start 203.2 95.25) (end 203.2 99.06) (width 1.2) (layer B.Cu) (net 1))
(segment (start 203.2 92.71) (end 203.2 95.25) (width 1.2) (layer B.Cu) (net 1))
(segment (start 156.21 85.09) (end 154.94 86.36) (width 1.2) (layer B.Cu) (net 1))
(segment (start 154.94 86.36) (end 154.94 88.9) (width 1.2) (layer B.Cu) (net 1))
(segment (start 183.73994 125.73) (end 179.07 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 179.07 125.73) (end 172.58137 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 175.26 120.65) (end 175.26 122.65) (width 1.2) (layer B.Cu) (net 1))
(segment (start 175.26 122.65) (end 178.34 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 178.34 125.73) (end 179.07 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 189.23 123.19) (end 186.27994 123.19) (width 1.2) (layer B.Cu) (net 1))
(segment (start 186.27994 123.19) (end 183.73994 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.58137 125.73) (end 171.45 125.73) (width 1.2) (layer B.Cu) (net 1))
(segment (start 189.23 123.19) (end 191.77 125.73) (width 1.6) (layer B.Cu) (net 1))
(segment (start 203.2 104.1) (end 203.2 101.6) (width 1.6) (layer B.Cu) (net 1))
(segment (start 191.77 125.73) (end 200.66 125.73) (width 1.6) (layer B.Cu) (net 1))
(segment (start 200.66 125.73) (end 203.2 123.19) (width 1.6) (layer B.Cu) (net 1))
(segment (start 203.2 123.19) (end 203.2 104.1) (width 1.6) (layer B.Cu) (net 1))
(segment (start 175.66 120.65) (end 175.26 120.65) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.28001 88.46001) (end 172.28001 87.730148) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.72 88.9) (end 172.28001 88.46001) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.28001 87.730148) (end 169.639862 85.09) (width 1.2) (layer B.Cu) (net 1))
(segment (start 169.639862 85.09) (end 156.21 85.09) (width 1.2) (layer B.Cu) (net 1))
(segment (start 180.68 95.25) (end 175.308686 95.25) (width 1.2) (layer B.Cu) (net 1))
(segment (start 175.308686 95.25) (end 172.72 92.661314) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.72 92.661314) (end 172.72 91.4) (width 1.2) (layer B.Cu) (net 1))
(segment (start 172.72 91.4) (end 172.72 88.9) (width 1.2) (layer B.Cu) (net 1))
(segment (start 182.88 92.71) (end 182.88 94.672) (width 1.2) (layer B.Cu) (net 1))
(segment (start 182.88 94.672) (end 182.302 95.25) (width 1.2) (layer B.Cu) (net 1))
(segment (start 182.302 95.25) (end 180.68 95.25) (width 1.2) (layer B.Cu) (net 1))
(segment (start 180.68 95.25) (end 182.88 95.25) (width 1.2) (layer B.Cu) (net 1))
(segment (start 162.56 118.9536) (end 162.5011 118.9536) (width 1.2) (layer B.Cu) (net 1))
(segment (start 162.5011 119.0036) (end 162.350477 119.0036) (width 0.8) (layer B.Cu) (net 1))
(segment (start 182.88 85.09) (end 182.88 83.82) (width 1.2) (layer B.Cu) (net 2))
(segment (start 180.34 87.63) (end 182.88 85.09) (width 1.2) (layer B.Cu) (net 2))
(segment (start 179.07 87.63) (end 180.34 87.63) (width 1.2) (layer B.Cu) (net 2))
(segment (start 181.61 82.55) (end 182.88 83.82) (width 1.2) (layer B.Cu) (net 2))
(segment (start 181.61 82.55) (end 182.88 81.28) (width 1.2) (layer B.Cu) (net 2))
(segment (start 175.26 82.55) (end 181.61 82.55) (width 1.2) (layer B.Cu) (net 2))
(segment (start 145.45109 92.71) (end 145.45109 89.49891) (width 1.2) (layer B.Cu) (net 2))
(segment (start 145.45109 89.49891) (end 152.4 82.55) (width 1.2) (layer B.Cu) (net 2))
(segment (start 152.4 82.55) (end 175.26 82.55) (width 1.2) (layer B.Cu) (net 2))
(segment (start 175.26 82.55) (end 175.26 88.9) (width 1.2) (layer B.Cu) (net 2))
(segment (start 147.32 93.98) (end 146.72109 93.98) (width 1.2) (layer B.Cu) (net 2))
(segment (start 146.72109 93.98) (end 145.45109 92.71) (width 1.2) (layer B.Cu) (net 2))
(segment (start 145.45109 95.25) (end 145.45109 92.71) (width 1.2) (layer B.Cu) (net 2))
(segment (start 145.45109 117.687056) (end 145.45109 107.95) (width 1.2) (layer B.Cu) (net 2))
(segment (start 145.45109 107.95) (end 145.45109 95.25) (width 1.2) (layer B.Cu) (net 2))
(segment (start 148.5011 109.0036) (end 146.50469 109.0036) (width 1.2) (layer B.Cu) (net 2))
(segment (start 146.50469 109.0036) (end 145.45109 107.95) (width 1.2) (layer B.Cu) (net 2))
(segment (start 148.5011 119.0036) (end 146.767634 119.0036) (width 1.2) (layer B.Cu) (net 2))
(segment (start 146.767634 119.0036) (end 145.45109 117.687056) (width 1.2) (layer B.Cu) (net 2))
(segment (start 182.88 102.87) (end 186.69 102.87) (width 0.8) (layer B.Cu) (net 3))
(segment (start 182.88 105.41) (end 188.79 105.41) (width 0.8) (layer B.Cu) (net 4))
(segment (start 188.79 105.41) (end 189.23 104.97) (width 0.8) (layer B.Cu) (net 4))
(segment (start 189.23 104.97) (end 189.23 102.87) (width 0.8) (layer B.Cu) (net 4))
(segment (start 182.88 107.95) (end 188.79 107.95) (width 0.8) (layer B.Cu) (net 5))
(segment (start 188.79 107.95) (end 191.77 104.97) (width 0.8) (layer B.Cu) (net 5))
(segment (start 191.77 104.97) (end 191.77 102.87) (width 0.8) (layer B.Cu) (net 5))
(segment (start 198.12 101.6) (end 198.12 106.68) (width 1.2) (layer B.Cu) (net 6))
(segment (start 200.66 87.052) (end 200.66 86.122) (width 2) (layer B.Cu) (net 6))
(segment (start 200.66 86.122) (end 202.962 83.82) (width 1.2) (layer B.Cu) (net 6))
(segment (start 202.962 83.82) (end 203.2 83.82) (width 1.2) (layer B.Cu) (net 6))
(segment (start 200.66 87.052) (end 200.66 81.62) (width 2) (layer B.Cu) (net 6))
(segment (start 200.66 81.62) (end 201 81.28) (width 1.6) (layer B.Cu) (net 6))
(segment (start 201 81.28) (end 203.2 81.28) (width 1.2) (layer B.Cu) (net 6))
(segment (start 182.88 120.65) (end 182.332981 120.65) (width 1.2) (layer B.Cu) (net 6))
(segment (start 182.332981 120.65) (end 180.57001 118.887029) (width 0.8) (layer B.Cu) (net 6))
(segment (start 180.57001 118.887029) (end 180.57001 102.092971) (width 0.8) (layer B.Cu) (net 6))
(segment (start 180.57001 102.092971) (end 182.192991 100.46999) (width 0.8) (layer B.Cu) (net 6))
(segment (start 182.192991 100.46999) (end 192.639852 100.46999) (width 0.8) (layer B.Cu) (net 6))
(segment (start 192.639852 100.46999) (end 194.31 102.140138) (width 0.8) (layer B.Cu) (net 6))
(segment (start 194.31 102.140138) (end 194.31 102.87) (width 1.2) (layer B.Cu) (net 6))
(segment (start 198.12 114.3) (end 199.39 115.57) (width 2) (layer B.Cu) (net 6))
(segment (start 199.39 115.57) (end 199.39 121.92) (width 2) (layer B.Cu) (net 6))
(segment (start 194.31 110.49) (end 196.51 110.49) (width 1.6) (layer B.Cu) (net 6))
(segment (start 196.51 110.49) (end 198.12 108.88) (width 1.6) (layer B.Cu) (net 6))
(segment (start 198.12 89.592) (end 198.12 100.33) (width 2) (layer B.Cu) (net 6))
(segment (start 198.12 100.33) (end 198.12 106.68) (width 2) (layer B.Cu) (net 6))
(segment (start 194.31 102.87) (end 196.51 102.87) (width 1.6) (layer B.Cu) (net 6))
(segment (start 196.51 102.87) (end 198.12 101.26) (width 1.6) (layer B.Cu) (net 6))
(segment (start 198.12 101.26) (end 198.12 100.33) (width 1.2) (layer B.Cu) (net 6))
(segment (start 183.28 120.65) (end 182.88 120.65) (width 1.2) (layer B.Cu) (net 6))
(segment (start 198.12 106.68) (end 198.12 114.3) (width 2) (layer B.Cu) (net 6))
(segment (start 200.66 87.052) (end 198.12 89.592) (width 2) (layer B.Cu) (net 6))
(segment (start 182.88 113.03) (end 184.15 113.03) (width 0.8) (layer B.Cu) (net 7))
(segment (start 184.15 113.03) (end 186.69 110.49) (width 0.8) (layer B.Cu) (net 7))
(segment (start 182.88 115.57) (end 186.25 115.57) (width 0.8) (layer B.Cu) (net 8))
(segment (start 186.25 115.57) (end 189.23 112.59) (width 0.8) (layer B.Cu) (net 8))
(segment (start 189.23 112.59) (end 189.23 110.49) (width 0.8) (layer B.Cu) (net 8))
(segment (start 182.88 118.11) (end 185.54849 118.11) (width 0.8) (layer B.Cu) (net 9))
(segment (start 185.54849 118.11) (end 191.77 111.88849) (width 0.8) (layer B.Cu) (net 9))
(segment (start 191.77 111.88849) (end 191.77 110.49) (width 0.8) (layer B.Cu) (net 9))
(segment (start 148.5011 113.0036) (end 150.535108 113.0036) (width 0.8) (layer B.Cu) (net 11))
(segment (start 150.535108 113.0036) (end 159.285128 121.753621) (width 0.8) (layer B.Cu) (net 11))
(segment (start 159.285128 121.753621) (end 166.136379 121.753621) (width 0.8) (layer B.Cu) (net 11))
(segment (start 166.136379 121.753621) (end 174.86 113.03) (width 0.8) (layer B.Cu) (net 11))
(segment (start 174.86 113.03) (end 175.26 113.03) (width 0.8) (layer B.Cu) (net 11))
(segment (start 148.5011 113.0036) (end 147.050477 113.0036) (width 0.8) (layer B.Cu) (net 11))
(segment (start 148.5011 115.0036) (end 150.4264 115.0036) (width 0.8) (layer B.Cu) (net 12))
(segment (start 150.4264 115.0036) (end 158.47643 123.05363) (width 0.8) (layer B.Cu) (net 12))
(segment (start 158.47643 123.05363) (end 167.376371 123.053629) (width 0.8) (layer B.Cu) (net 12))
(segment (start 167.376371 123.053629) (end 174.86 115.57) (width 0.8) (layer B.Cu) (net 12))
(segment (start 174.86 115.57) (end 175.26 115.57) (width 0.8) (layer B.Cu) (net 12))
(segment (start 148.5011 115.0036) (end 147.050477 115.0036) (width 0.8) (layer B.Cu) (net 12))
(segment (start 167.74636 124.35364) (end 167.746361 124.353637) (width 0.8) (layer B.Cu) (net 13))
(segment (start 167.746361 124.353637) (end 168.616363 124.353637) (width 0.8) (layer B.Cu) (net 13))
(segment (start 168.616363 124.353637) (end 174.86 118.11) (width 0.8) (layer B.Cu) (net 13))
(segment (start 174.86 118.11) (end 175.26 118.11) (width 0.8) (layer B.Cu) (net 13))
(segment (start 148.5011 117.0036) (end 150.58791 117.0036) (width 0.8) (layer B.Cu) (net 13))
(segment (start 150.58791 117.0036) (end 157.937949 124.35364) (width 0.8) (layer B.Cu) (net 13))
(segment (start 157.937949 124.35364) (end 167.74636 124.35364) (width 0.8) (layer B.Cu) (net 13))
(segment (start 148.5011 117.0036) (end 147.050477 117.0036) (width 0.8) (layer B.Cu) (net 13))
(segment (start 167.64 91) (end 167.64 88.9) (width 0.8) (layer B.Cu) (net 21))
(segment (start 167.609989 91.030011) (end 167.64 91) (width 0.8) (layer B.Cu) (net 21))
(segment (start 163.951723 109.0036) (end 167.609989 105.345334) (width 0.8) (layer B.Cu) (net 21))
(segment (start 162.5011 109.0036) (end 163.951723 109.0036) (width 0.8) (layer B.Cu) (net 21))
(segment (start 167.609989 105.345334) (end 167.609989 91.030011) (width 0.8) (layer B.Cu) (net 21))
(segment (start 162.5011 111.0036) (end 163.951723 111.0036) (width 0.8) (layer B.Cu) (net 22))
(segment (start 168.91 106.045323) (end 168.91 92.27) (width 0.8) (layer B.Cu) (net 22))
(segment (start 170.18 91) (end 170.18 88.9) (width 0.8) (layer B.Cu) (net 22))
(segment (start 163.951723 111.0036) (end 168.91 106.045323) (width 0.8) (layer B.Cu) (net 22))
(segment (start 168.91 92.27) (end 170.18 91) (width 0.8) (layer B.Cu) (net 22))
(segment (start 160.02 92.71) (end 160.02 88.9) (width 0.8) (layer B.Cu) (net 23))
(segment (start 162.5011 105.0036) (end 162.1536 105.0036) (width 0.8) (layer B.Cu) (net 23))
(segment (start 162.1536 105.0036) (end 160.02 102.87) (width 0.8) (layer B.Cu) (net 23))
(segment (start 160.02 102.87) (end 160.02 92.71) (width 0.8) (layer B.Cu) (net 23))
(segment (start 162.56 88.9) (end 162.56 91) (width 0.8) (layer B.Cu) (net 24))
(segment (start 162.56 91) (end 165.35111 93.79111) (width 0.8) (layer B.Cu) (net 24))
(segment (start 165.35111 93.79111) (end 165.35111 105.604213) (width 0.8) (layer B.Cu) (net 24))
(segment (start 162.5011 107.0036) (end 163.951723 107.0036) (width 0.8) (layer B.Cu) (net 24))
(segment (start 163.951723 107.0036) (end 165.35111 105.604213) (width 0.8) (layer B.Cu) (net 24))
(segment (start 162.5011 107.0036) (end 162.450477 107.0036) (width 0.8) (layer B.Cu) (net 24))
(segment (start 152.4 91.44) (end 152.4 88.9) (width 0.8) (layer B.Cu) (net 25))
(segment (start 152.4 101.1047) (end 152.4 91.44) (width 0.8) (layer B.Cu) (net 25))
(segment (start 152.4 91.44) (end 152.4 92.71) (width 0.8) (layer B.Cu) (net 25))
(segment (start 148.5011 105.0036) (end 152.4 101.1047) (width 0.8) (layer B.Cu) (net 25))
(segment (start 157.48 93.98) (end 157.48 88.9) (width 0.8) (layer B.Cu) (net 26))
(segment (start 162.5011 113.0036) (end 162.450477 113.0036) (width 0.8) (layer B.Cu) (net 26))
(segment (start 162.450477 113.0036) (end 157.48 108.033123) (width 0.8) (layer B.Cu) (net 26))
(segment (start 157.48 108.033123) (end 157.48 88.9) (width 0.8) (layer B.Cu) (net 26))
(segment (start 162.5011 113.0036) (end 163.951723 113.0036) (width 0.8) (layer B.Cu) (net 26))
(segment (start 170.21001 106.745313) (end 170.21001 104.14) (width 0.8) (layer B.Cu) (net 26))
(segment (start 171.48001 102.87) (end 175.26 102.87) (width 0.8) (layer B.Cu) (net 26))
(segment (start 163.951723 113.0036) (end 170.21001 106.745313) (width 0.8) (layer B.Cu) (net 26))
(segment (start 170.21001 104.14) (end 171.48001 102.87) (width 0.8) (layer B.Cu) (net 26))
(segment (start 167.64 114.3) (end 172.72 109.22) (width 0.8) (layer B.Cu) (net 27))
(segment (start 172.72 109.22) (end 173.99 107.95) (width 0.8) (layer B.Cu) (net 27))
(segment (start 171.45 110.49) (end 172.72 109.22) (width 0.8) (layer B.Cu) (net 27))
(segment (start 173.99 107.95) (end 175.26 107.95) (width 0.8) (layer B.Cu) (net 27))
(segment (start 162.5011 117.0036) (end 164.9364 117.0036) (width 0.8) (layer B.Cu) (net 27))
(segment (start 164.9364 117.0036) (end 167.64 114.3) (width 0.8) (layer B.Cu) (net 27))
(segment (start 179.07 97.79) (end 179.07 103.6) (width 0.8) (layer B.Cu) (net 28))
(segment (start 179.07 103.6) (end 177.26 105.41) (width 0.8) (layer B.Cu) (net 28))
(segment (start 177.26 105.41) (end 175.26 105.41) (width 0.8) (layer B.Cu) (net 28))
(segment (start 162.5011 115.0036) (end 163.951723 115.0036) (width 0.8) (layer B.Cu) (net 28))
(segment (start 163.951723 115.0036) (end 171.51002 107.445303) (width 0.8) (layer B.Cu) (net 28))
(segment (start 171.51002 107.445303) (end 171.51002 106.61998) (width 0.8) (layer B.Cu) (net 28))
(segment (start 172.72 105.41) (end 175.26 105.41) (width 0.8) (layer B.Cu) (net 28))
(segment (start 171.51002 106.61998) (end 172.72 105.41) (width 0.8) (layer B.Cu) (net 28))
(segment (start 179.07 119.644177) (end 179.07 113.9) (width 0.8) (layer B.Cu) (net 29))
(segment (start 179.07 113.9) (end 175.66 110.49) (width 0.8) (layer B.Cu) (net 29))
(segment (start 175.66 110.49) (end 175.26 110.49) (width 0.8) (layer B.Cu) (net 29))
(segment (start 189.23 118.11) (end 188.32957 118.11) (width 0.8) (layer B.Cu) (net 29))
(segment (start 188.32957 118.11) (end 184.08956 122.35001) (width 0.8) (layer B.Cu) (net 29))
(segment (start 184.08956 122.35001) (end 181.775833 122.35001) (width 0.8) (layer B.Cu) (net 29))
(segment (start 181.775833 122.35001) (end 179.07 119.644177) (width 0.8) (layer B.Cu) (net 29))