-
Notifications
You must be signed in to change notification settings - Fork 3
/
roomba.kicad_pcb
1299 lines (1273 loc) · 84.3 KB
/
roomba.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20171130) (host pcbnew "(5.0.0)")
(general
(thickness 1.6)
(drawings 8)
(tracks 142)
(zones 0)
(modules 16)
(nets 27)
)
(page A4)
(title_block
(title "Roomba 560 ESP-Wifi")
(date 2018-11-01)
(rev B)
(comment 1 "Drawn by: Matthew A Sparks")
)
(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 hide)
)
(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.15)
(via_size 0.8)
(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 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.0508)
(aux_axis_origin 127 119.38)
(grid_origin 127 119.38)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(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 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 /GPIO0)
(net 2 +3V3)
(net 3 "Net-(R2-Pad1)")
(net 4 "Net-(R1-Pad1)")
(net 5 Earth)
(net 6 "Net-(R4-Pad1)")
(net 7 "Net-(U4-Pad2)")
(net 8 /LOCAL_BRC)
(net 9 "Net-(U4-Pad5)")
(net 10 "Net-(U4-Pad6)")
(net 11 "Net-(U4-Pad7)")
(net 12 "Net-(U4-Pad9)")
(net 13 "Net-(U4-Pad10)")
(net 14 "Net-(U4-Pad11)")
(net 15 "Net-(U4-Pad12)")
(net 16 "Net-(U4-Pad13)")
(net 17 "Net-(U4-Pad14)")
(net 18 "Net-(U4-Pad19)")
(net 19 "Net-(U4-Pad20)")
(net 20 /LOCAL_RXD)
(net 21 /LOCAL_TXD)
(net 22 /ROOMBA_TXD)
(net 23 +BATT)
(net 24 /GPIO2)
(net 25 "Net-(R8-Pad2)")
(net 26 "Net-(R9-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /GPIO0)
(add_net /GPIO2)
(add_net /LOCAL_BRC)
(add_net /LOCAL_RXD)
(add_net /LOCAL_TXD)
(add_net /ROOMBA_TXD)
(add_net "Net-(R1-Pad1)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(R4-Pad1)")
(add_net "Net-(R8-Pad2)")
(add_net "Net-(R9-Pad2)")
(add_net "Net-(U4-Pad10)")
(add_net "Net-(U4-Pad11)")
(add_net "Net-(U4-Pad12)")
(add_net "Net-(U4-Pad13)")
(add_net "Net-(U4-Pad14)")
(add_net "Net-(U4-Pad19)")
(add_net "Net-(U4-Pad2)")
(add_net "Net-(U4-Pad20)")
(add_net "Net-(U4-Pad5)")
(add_net "Net-(U4-Pad6)")
(add_net "Net-(U4-Pad7)")
(add_net "Net-(U4-Pad9)")
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.508)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net +BATT)
(add_net Earth)
)
(module pts820:PTS820 (layer F.Cu) (tedit 5BDBC3F4) (tstamp 5BE917F5)
(at 135.636 108.204 270)
(path /5BDA95B5)
(fp_text reference PRGM (at -3.302 -0.508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 0 2.4 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 1.778) (end -2.54 -1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2.54 1.778) (end -2.54 1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2.54 -1.778) (end 2.54 1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start -2.54 -1.778) (end 2.54 -1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2 -1.6) (end 2 -1.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2 -1.6) (end 2 -1.6) (layer F.SilkS) (width 0.15))
(fp_line (start -2 -1.2) (end -2 -1.6) (layer F.SilkS) (width 0.15))
(fp_line (start -2 1.6) (end -2 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2 1.6) (end -2 1.6) (layer F.SilkS) (width 0.15))
(fp_line (start 2 1.2) (end 2 1.6) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -2 0 270) (size 1 2) (layers F.Cu F.Paste F.Mask)
(net 1 /GPIO0))
(pad 2 smd rect (at 2 0 270) (size 1 2) (layers F.Cu F.Paste F.Mask)
(net 26 "Net-(R9-Pad2)"))
(pad "" np_thru_hole circle (at 0 0.9 270) (size 0.8 0.8) (drill 0.8) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -0.9 270) (size 0.8 0.8) (drill 0.8) (layers *.Cu *.Mask))
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5BE918F7)
(at 139.192 110.753 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BDAB8A8)
(attr smd)
(fp_text reference R9 (at -1.261 -1.778 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 0 1.65 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 26 "Net-(R9-Pad2)"))
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5BE918E6)
(at 131.572 113.783 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BDAA6FA)
(attr smd)
(fp_text reference R8 (at 1.515 2.286 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 0 1.65 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 25 "Net-(R8-Pad2)"))
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module pts820:PTS820 (layer F.Cu) (tedit 5BDBC3EB) (tstamp 5BE917E7)
(at 132.08 108.236 270)
(path /5BDA94D1)
(fp_text reference RST (at -3.334 0.508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 0 2.4 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 1.778) (end -2.54 -1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2.54 1.778) (end -2.54 1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2.54 -1.778) (end 2.54 1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start -2.54 -1.778) (end 2.54 -1.778) (layer F.CrtYd) (width 0.15))
(fp_line (start 2 -1.6) (end 2 -1.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2 -1.6) (end 2 -1.6) (layer F.SilkS) (width 0.15))
(fp_line (start -2 -1.2) (end -2 -1.6) (layer F.SilkS) (width 0.15))
(fp_line (start -2 1.6) (end -2 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2 1.6) (end -2 1.6) (layer F.SilkS) (width 0.15))
(fp_line (start 2 1.2) (end 2 1.6) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -2 0 270) (size 1 2) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(R1-Pad1)"))
(pad 2 smd rect (at 2 0 270) (size 1 2) (layers F.Cu F.Paste F.Mask)
(net 25 "Net-(R8-Pad2)"))
(pad "" np_thru_hole circle (at 0 0.9 270) (size 0.8 0.8) (drill 0.8) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -0.9 270) (size 0.8 0.8) (drill 0.8) (layers *.Cu *.Mask))
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BD975A5)
(at 145.796 92.71 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BCD7E32)
(attr smd)
(fp_text reference R7 (at -3.048 0 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 12K (at 0 -1.65 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 20 /LOCAL_RXD))
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BD97594)
(at 143.256 92.71 270)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BCDDD61)
(attr smd)
(fp_text reference R6 (at 3.048 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 6.04K (at 0 -1.65 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 22 /ROOMBA_TXD))
(pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 20 /LOCAL_RXD))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BB7DA3E)
(at 145.787 111.506)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /5BBACEE9)
(attr smd)
(fp_text reference C3 (at -3.039 0 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "10 uF" (at 0 -1.65) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BB7DA1C)
(at 149.851 111.506 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /5BB9991F)
(attr smd)
(fp_text reference C1 (at -3.039 0 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "10 uF" (at 0 -1.65 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 23 +BATT))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x07_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5BB7DA0B)
(at 150.368 115.062 270)
(descr "Through hole straight pin header, 1x07, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x07 2.54mm single row")
(path /5BB8E599)
(fp_text reference J1 (at 0 -2.794 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x07_Male (at 0 17.57 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 7.62) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 17.05) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 17.05) (end 1.8 17.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 16.57) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 16.57) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 16.57) (end 1.33 16.57) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 16.51) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 16.51) (end -1.27 16.51) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 16.51) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(pad 7 thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 Earth))
(pad 6 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 Earth))
(pad 5 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /LOCAL_BRC))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 /ROOMBA_TXD))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 /LOCAL_TXD))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 +BATT))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Converter_DCDC:Converter_DCDC_TRACO_TSR-1_THT (layer F.Cu) (tedit 59FE1FB7) (tstamp 5BB7D9F0)
(at 149.86 107.188 180)
(descr "DCDC-Converter, TRACO, TSR 1-xxxx")
(tags "DCDC-Converter TRACO TSR-1")
(path /5BDCB2FC)
(fp_text reference U1 (at -3.302 3.302 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TSR_1-2433 (at 2.5 3.25 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.3 2) (end 8.4 2) (layer F.Fab) (width 0.1))
(fp_line (start -3.42 2.12) (end -3.42 -5.73) (layer F.SilkS) (width 0.12))
(fp_line (start -3.42 -5.73) (end 8.52 -5.73) (layer F.SilkS) (width 0.12))
(fp_line (start 8.52 -5.73) (end 8.52 2.12) (layer F.SilkS) (width 0.12))
(fp_line (start 8.52 2.12) (end -3.42 2.12) (layer F.SilkS) (width 0.12))
(fp_line (start -3.55 -5.85) (end 8.65 -5.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.65 -5.85) (end 8.65 2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.65 2.25) (end -3.55 2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.55 2.25) (end -3.55 -5.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.3 -5.6) (end 8.4 -5.6) (layer F.Fab) (width 0.1))
(fp_line (start 8.4 2) (end 8.4 -5.6) (layer F.Fab) (width 0.1))
(fp_line (start -3.3 1) (end -3.3 -5.6) (layer F.Fab) (width 0.1))
(fp_line (start -3.3 1) (end -2.3 2) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 0) (end -3.75 2.45) (layer F.SilkS) (width 0.12))
(fp_line (start -3.75 2.45) (end -1.42 2.45) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 3 -3 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 5.08 0 180) (size 1.5 2.5) (drill 1) (layers *.Cu *.Mask)
(net 2 +3V3))
(pad 2 thru_hole oval (at 2.54 0 180) (size 1.5 2.5) (drill 1) (layers *.Cu *.Mask)
(net 5 Earth))
(pad 1 thru_hole rect (at 0 0 180) (size 1.5 2.5) (drill 1) (layers *.Cu *.Mask)
(net 23 +BATT))
(model ${KISYS3DMOD}/Converter_DCDC.3dshapes/Converter_DCDC_TRACO_TSR-1_THT.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module RF_Module:ESP-12E (layer F.Cu) (tedit 5A030172) (tstamp 5BB7D9A0)
(at 142.494 90.932)
(descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf")
(tags "Wi-Fi Module")
(path /5BB75859)
(attr smd)
(fp_text reference U4 (at 10.16 -3.556) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ESP-12F (at -0.06 -12.78) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.56 -4.8) (end 8.12 -7.36) (layer Dwgs.User) (width 0.12))
(fp_line (start 2.56 -4.8) (end 8.12 -10.36) (layer Dwgs.User) (width 0.12))
(fp_line (start -0.44 -4.8) (end 6.88 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -3.44 -4.8) (end 3.88 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -6.44 -4.8) (end 0.88 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.12 -6.12) (end -2.12 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.12 -9.12) (end -5.12 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.12 -4.8) (end -8.12 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start 8.12 -4.8) (end -8.12 -4.8) (layer Dwgs.User) (width 0.12))
(fp_line (start 8.12 -12.12) (end 8.12 -4.8) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.12 -4.5) (end -8.73 -4.5) (layer F.SilkS) (width 0.12))
(fp_line (start -8.12 -4.5) (end -8.12 -12.12) (layer F.SilkS) (width 0.12))
(fp_line (start -8.12 12.12) (end -8.12 11.5) (layer F.SilkS) (width 0.12))
(fp_line (start -6 12.12) (end -8.12 12.12) (layer F.SilkS) (width 0.12))
(fp_line (start 8.12 12.12) (end 6 12.12) (layer F.SilkS) (width 0.12))
(fp_line (start 8.12 11.5) (end 8.12 12.12) (layer F.SilkS) (width 0.12))
(fp_line (start 8.12 -12.12) (end 8.12 -4.5) (layer F.SilkS) (width 0.12))
(fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer F.SilkS) (width 0.12))
(fp_line (start -9.05 13.1) (end -9.05 -12.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.05 13.1) (end -9.05 13.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.05 -12.2) (end 9.05 13.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -9.05 -12.2) (end 9.05 -12.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -8 -4) (end -8 -12) (layer F.Fab) (width 0.12))
(fp_line (start -7.5 -3.5) (end -8 -4) (layer F.Fab) (width 0.12))
(fp_line (start -8 -3) (end -7.5 -3.5) (layer F.Fab) (width 0.12))
(fp_line (start -8 12) (end -8 -3) (layer F.Fab) (width 0.12))
(fp_line (start 8 12) (end -8 12) (layer F.Fab) (width 0.12))
(fp_line (start 8 -12) (end 8 12) (layer F.Fab) (width 0.12))
(fp_line (start -8 -12) (end 8 -12) (layer F.Fab) (width 0.12))
(fp_text user %R (at 0.49 -0.8) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user "KEEP-OUT ZONE" (at 0.03 -9.55 180) (layer Cmts.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user Antenna (at -0.06 -7 180) (layer Cmts.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 22 smd rect (at 7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 21 /LOCAL_TXD))
(pad 21 smd rect (at 7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 20 /LOCAL_RXD))
(pad 20 smd rect (at 7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(U4-Pad20)"))
(pad 19 smd rect (at 7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(U4-Pad19)"))
(pad 18 smd rect (at 7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 1 /GPIO0))
(pad 17 smd rect (at 7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 24 /GPIO2))
(pad 16 smd rect (at 7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 6 "Net-(R4-Pad1)"))
(pad 15 smd rect (at 7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 5 Earth))
(pad 14 smd rect (at 5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 17 "Net-(U4-Pad14)"))
(pad 13 smd rect (at 3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 16 "Net-(U4-Pad13)"))
(pad 12 smd rect (at 1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(U4-Pad12)"))
(pad 11 smd rect (at -1 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(U4-Pad11)"))
(pad 10 smd rect (at -3 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(U4-Pad10)"))
(pad 9 smd rect (at -5 12) (size 1 1.8) (layers F.Cu F.Paste F.Mask)
(net 12 "Net-(U4-Pad9)"))
(pad 8 smd rect (at -7.6 10.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 2 +3V3))
(pad 7 smd rect (at -7.6 8.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(U4-Pad7)"))
(pad 6 smd rect (at -7.6 6.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(U4-Pad6)"))
(pad 5 smd rect (at -7.6 4.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(U4-Pad5)"))
(pad 4 smd rect (at -7.6 2.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 8 /LOCAL_BRC))
(pad 3 smd rect (at -7.6 0.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(R2-Pad1)"))
(pad 2 smd rect (at -7.6 -1.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(U4-Pad2)"))
(pad 1 smd rect (at -7.6 -3.5) (size 2.5 1) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(R1-Pad1)"))
(model ${KISYS3DMOD}/RF_Module.3dshapes/ESP-12E.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BB7D965)
(at 139.954 89.916 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BB80D3D)
(attr smd)
(fp_text reference R5 (at -3.302 0.508 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 12K (at 0 -1.65 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 +3V3))
(pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 24 /GPIO2))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5BB7D954)
(at 152.908 100.33 270)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BB8506F)
(attr smd)
(fp_text reference R4 (at -3.302 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 12K (at 0 1.65 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 5 Earth))
(pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 6 "Net-(R4-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5BB7D943)
(at 139.954 87.63 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BB80D2D)
(attr smd)
(fp_text reference R3 (at -3.302 -0.254 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 12K (at 0 -1.65 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 2 +3V3))
(pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
(net 1 /GPIO0))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5BB7D932)
(at 131.826 92.973 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BB7EDF7)
(attr smd)
(fp_text reference R2 (at -5.579 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 12K (at 0 1.65 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 2 +3V3))
(pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 3 "Net-(R2-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5BB7D921)
(at 131.826 88.9 270)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5BB804F3)
(attr smd)
(fp_text reference R1 (at 7.112 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 12K (at 0 1.65 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 2 +3V3))
(pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
(net 4 "Net-(R1-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "Roomba 560 ESP-Wifi Rev B\nMatthew A Sparks" (at 132.334 86.868 90) (layer B.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)) (justify left mirror))
)
(gr_line (start 129.54 86.36) (end 129.54 116.84) (layer Edge.Cuts) (width 0.15))
(gr_line (start 154.94 86.36) (end 154.94 116.84) (layer Edge.Cuts) (width 0.15))
(dimension 30.48 (width 0.3) (layer Dwgs.User)
(gr_text "1.2000 in" (at 160.342 101.6 90) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 157.48 86.36) (xy 158.828421 86.36)))
(feature2 (pts (xy 157.48 116.84) (xy 158.828421 116.84)))
(crossbar (pts (xy 158.242 116.84) (xy 158.242 86.36)))
(arrow1a (pts (xy 158.242 86.36) (xy 158.828421 87.486504)))
(arrow1b (pts (xy 158.242 86.36) (xy 157.655579 87.486504)))
(arrow2a (pts (xy 158.242 116.84) (xy 158.828421 115.713496)))
(arrow2b (pts (xy 158.242 116.84) (xy 157.655579 115.713496)))
)
(dimension 25.4 (width 0.3) (layer Dwgs.User)
(gr_text "1.0000 in" (at 142.24 121.988) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 154.94 119.38) (xy 154.94 120.474421)))
(feature2 (pts (xy 129.54 119.38) (xy 129.54 120.474421)))
(crossbar (pts (xy 129.54 119.888) (xy 154.94 119.888)))
(arrow1a (pts (xy 154.94 119.888) (xy 153.813496 120.474421)))
(arrow1b (pts (xy 154.94 119.888) (xy 153.813496 119.301579)))
(arrow2a (pts (xy 129.54 119.888) (xy 130.666504 120.474421)))
(arrow2b (pts (xy 129.54 119.888) (xy 130.666504 119.301579)))
)
(dimension 38.1 (width 0.3) (layer Dwgs.User)
(gr_text "1.5000 in" (at 124.392 97.79 90) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 127 78.74) (xy 125.905579 78.74)))
(feature2 (pts (xy 127 116.84) (xy 125.905579 116.84)))
(crossbar (pts (xy 126.492 116.84) (xy 126.492 78.74)))
(arrow1a (pts (xy 126.492 78.74) (xy 127.078421 79.866504)))
(arrow1b (pts (xy 126.492 78.74) (xy 125.905579 79.866504)))
(arrow2a (pts (xy 126.492 116.84) (xy 127.078421 115.713496)))
(arrow2b (pts (xy 126.492 116.84) (xy 125.905579 115.713496)))
)
(gr_line (start 154.94 116.84) (end 129.54 116.84) (layer Edge.Cuts) (width 0.15))
(gr_line (start 129.54 86.36) (end 154.94 86.36) (layer Edge.Cuts) (width 0.15))
(via (at 152.4 95.504) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 140.979 87.63) (end 141.654 87.63) (width 0.25) (layer B.Cu) (net 1))
(segment (start 141.654 87.63) (end 150.622 87.63) (width 0.25) (layer B.Cu) (net 1))
(segment (start 152.799999 89.807999) (end 150.622 87.63) (width 0.25) (layer B.Cu) (net 1))
(segment (start 152.799999 95.104001) (end 152.799999 89.807999) (width 0.25) (layer B.Cu) (net 1))
(segment (start 152.4 95.504) (end 152.799999 95.104001) (width 0.25) (layer B.Cu) (net 1))
(segment (start 150.166 95.504) (end 150.094 95.432) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.4 95.504) (end 150.166 95.504) (width 0.25) (layer F.Cu) (net 1))
(segment (start 136.136 106.204) (end 135.636 106.204) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.136 108.204) (end 136.136 106.204) (width 0.25) (layer F.Cu) (net 1))
(segment (start 154.178 97.282) (end 154.178 107.696) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.4 95.504) (end 154.178 97.282) (width 0.25) (layer F.Cu) (net 1))
(segment (start 154.178 107.696) (end 151.384 110.49) (width 0.25) (layer F.Cu) (net 1))
(segment (start 151.384 110.49) (end 142.494 110.49) (width 0.25) (layer F.Cu) (net 1))
(segment (start 142.494 110.49) (end 140.208 108.204) (width 0.25) (layer F.Cu) (net 1))
(segment (start 140.208 108.204) (end 138.136 108.204) (width 0.25) (layer F.Cu) (net 1))
(via (at 137.414 95.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 131.826 89.925) (end 131.826 91.948) (width 0.508) (layer F.Cu) (net 2))
(segment (start 130.311 89.925) (end 130.302 89.916) (width 0.508) (layer F.Cu) (net 2))
(segment (start 138.929 89.916) (end 130.302 89.916) (width 0.508) (layer B.Cu) (net 2))
(segment (start 138.929 87.63) (end 138.929 89.916) (width 0.508) (layer B.Cu) (net 2))
(segment (start 134.144 101.432) (end 134.894 101.432) (width 0.508) (layer F.Cu) (net 2))
(segment (start 137.414 95.815685) (end 137.414 95.25) (width 0.508) (layer F.Cu) (net 2))
(segment (start 134.894 101.432) (end 135.644 101.432) (width 0.508) (layer F.Cu) (net 2))
(segment (start 138.929 89.916) (end 138.684 90.161) (width 0.508) (layer B.Cu) (net 2))
(segment (start 145.279 107.941) (end 144.78 107.442) (width 0.508) (layer B.Cu) (net 2))
(segment (start 145.279 107.687) (end 144.78 107.188) (width 0.508) (layer B.Cu) (net 2))
(segment (start 144.258 106.666) (end 144.78 107.188) (width 0.508) (layer F.Cu) (net 2))
(segment (start 137.414 99.662) (end 137.414 95.815685) (width 0.508) (layer F.Cu) (net 2))
(segment (start 135.644 101.432) (end 137.414 99.662) (width 0.508) (layer F.Cu) (net 2))
(segment (start 138.929 91.449) (end 138.929 89.916) (width 0.508) (layer B.Cu) (net 2))
(segment (start 137.414 95.25) (end 137.414 92.964) (width 0.508) (layer B.Cu) (net 2))
(segment (start 137.414 92.964) (end 138.929 91.449) (width 0.508) (layer B.Cu) (net 2))
(segment (start 131.826 89.925) (end 130.311 89.925) (width 0.508) (layer F.Cu) (net 2))
(via (at 130.302 89.916) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 134.894 102.44) (end 134.894 101.432) (width 0.508) (layer F.Cu) (net 2))
(segment (start 134.894 102.549202) (end 134.894 102.44) (width 0.508) (layer F.Cu) (net 2))
(segment (start 139.532798 107.188) (end 134.894 102.549202) (width 0.508) (layer F.Cu) (net 2))
(segment (start 144.78 107.188) (end 139.532798 107.188) (width 0.508) (layer F.Cu) (net 2))
(segment (start 144.78 111.488) (end 144.762 111.506) (width 0.508) (layer B.Cu) (net 2))
(segment (start 144.78 107.188) (end 144.78 111.488) (width 0.508) (layer B.Cu) (net 2))
(segment (start 147.828 114.572) (end 144.762 111.506) (width 0.508) (layer B.Cu) (net 2))
(segment (start 147.828 115.062) (end 147.828 114.572) (width 0.508) (layer B.Cu) (net 2))
(segment (start 134.392 91.432) (end 134.894 91.432) (width 0.25) (layer F.Cu) (net 3))
(segment (start 131.826 93.998) (end 134.392 91.432) (width 0.25) (layer F.Cu) (net 3))
(segment (start 131.854385 94.026385) (end 131.826 93.998) (width 0.25) (layer F.Cu) (net 3))
(segment (start 132.08 94.252) (end 131.826 93.998) (width 0.25) (layer F.Cu) (net 3))
(segment (start 132.269 87.432) (end 131.826 87.875) (width 0.25) (layer F.Cu) (net 4))
(segment (start 134.894 87.432) (end 132.269 87.432) (width 0.25) (layer F.Cu) (net 4))
(segment (start 132.08 106.236) (end 132.08 97.282) (width 0.25) (layer F.Cu) (net 4))
(segment (start 132.08 97.282) (end 132.08 97.282) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BE933B2))
(via (at 132.08 97.282) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 132.08 97.282) (end 132.08 96.52) (width 0.25) (layer B.Cu) (net 4))
(segment (start 132.08 96.52) (end 137.16 91.44) (width 0.25) (layer B.Cu) (net 4))
(segment (start 137.16 91.44) (end 137.16 91.44) (width 0.25) (layer B.Cu) (net 4) (tstamp 5BE933CA))
(via (at 137.16 91.44) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 137.16 90.874315) (end 137.16 91.44) (width 0.25) (layer F.Cu) (net 4))
(segment (start 137.16 88.198) (end 137.16 90.874315) (width 0.25) (layer F.Cu) (net 4))
(segment (start 136.394 87.432) (end 137.16 88.198) (width 0.25) (layer F.Cu) (net 4))
(segment (start 134.894 87.432) (end 136.394 87.432) (width 0.25) (layer F.Cu) (net 4))
(segment (start 152.831 101.432) (end 152.908 101.355) (width 0.508) (layer F.Cu) (net 5))
(segment (start 150.094 101.432) (end 152.831 101.432) (width 0.508) (layer F.Cu) (net 5))
(via (at 133.858 112.522) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 135.636 112.522) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 137.414 112.522) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 152.908 111.76) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 152.908 113.284) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 152.908 115.062) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 149.606 103.886) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 152.4 103.886) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 152.4 106.68) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 133.858 104.902) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 131.064 104.902) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 131.064 102.616) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 131.064 100.33) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 130.81 98.806) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 130.81 95.758) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 146.304 100.584) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 146.304 98.298) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 146.304 96.266) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 138.938 96.774) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 138.938 98.806) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 138.938 100.838) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 143.002 88.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 144.78 88.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 153.416 87.884) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 153.924 95.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 142.748 97.79) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 142.748 100.33) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 142.748 105.41) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 142.748 112.522) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 148.844 113.284) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 146.05 104.902) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 141.478 92.202) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 141.478 94.742) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 137.668 87.376) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 150.221 99.305) (end 150.094 99.432) (width 0.25) (layer F.Cu) (net 6))
(segment (start 152.908 99.305) (end 150.221 99.305) (width 0.25) (layer F.Cu) (net 6))
(segment (start 134.934 93.472) (end 134.894 93.432) (width 0.25) (layer F.Cu) (net 8))
(segment (start 140.208 115.062) (end 140.208 113.859919) (width 0.25) (layer B.Cu) (net 8))
(segment (start 140.208 113.859919) (end 140.208 93.472) (width 0.25) (layer B.Cu) (net 8))
(segment (start 140.208 93.472) (end 140.208 93.472) (width 0.25) (layer B.Cu) (net 8) (tstamp 5BD97B11))
(via (at 140.208 93.472) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 8))
(segment (start 140.168 93.432) (end 140.208 93.472) (width 0.25) (layer F.Cu) (net 8))
(segment (start 134.894 93.432) (end 140.168 93.432) (width 0.25) (layer F.Cu) (net 8))
(segment (start 143.256 91.685) (end 145.796 91.685) (width 0.25) (layer B.Cu) (net 20))
(segment (start 146.419372 91.061628) (end 147.317372 91.061628) (width 0.25) (layer B.Cu) (net 20))
(segment (start 145.796 91.685) (end 146.419372 91.061628) (width 0.25) (layer B.Cu) (net 20))
(segment (start 147.317372 91.061628) (end 147.317372 91.061628) (width 0.25) (layer B.Cu) (net 20) (tstamp 5BD97B63))
(via (at 147.317372 91.061628) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 147.717371 90.661629) (end 147.317372 91.061628) (width 0.25) (layer F.Cu) (net 20))
(segment (start 148.947 89.432) (end 147.717371 90.661629) (width 0.25) (layer F.Cu) (net 20))
(segment (start 150.094 89.432) (end 148.947 89.432) (width 0.25) (layer F.Cu) (net 20))
(segment (start 143.473001 113.247001) (end 143.473001 97.064999) (width 0.25) (layer B.Cu) (net 21))
(segment (start 145.288 115.062) (end 143.473001 113.247001) (width 0.25) (layer B.Cu) (net 21))
(segment (start 143.473001 97.064999) (end 144.78 95.758) (width 0.25) (layer B.Cu) (net 21))
(segment (start 144.78 95.758) (end 144.78 95.758) (width 0.25) (layer B.Cu) (net 21) (tstamp 5BD97B8D))
(via (at 144.78 95.758) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(segment (start 144.78 95.192315) (end 144.78 95.758) (width 0.25) (layer F.Cu) (net 21))
(segment (start 144.78 91.246) (end 144.78 95.192315) (width 0.25) (layer F.Cu) (net 21))
(segment (start 148.594 87.432) (end 144.78 91.246) (width 0.25) (layer F.Cu) (net 21))
(segment (start 150.094 87.432) (end 148.594 87.432) (width 0.25) (layer F.Cu) (net 21))
(segment (start 141.898001 114.212001) (end 141.898001 96.353999) (width 0.25) (layer B.Cu) (net 22))
(segment (start 142.748 115.062) (end 141.898001 114.212001) (width 0.25) (layer B.Cu) (net 22))
(segment (start 143.256 94.996) (end 143.256 93.735) (width 0.25) (layer B.Cu) (net 22))
(segment (start 141.898001 96.353999) (end 143.256 94.996) (width 0.25) (layer B.Cu) (net 22))
(segment (start 150.368 112.014) (end 150.876 111.506) (width 0.508) (layer B.Cu) (net 23))
(segment (start 150.368 115.062) (end 150.368 112.014) (width 0.508) (layer B.Cu) (net 23))
(segment (start 150.876 108.204) (end 149.86 107.188) (width 0.508) (layer B.Cu) (net 23))
(segment (start 150.876 111.506) (end 150.876 108.204) (width 0.508) (layer B.Cu) (net 23))
(via (at 152.4 97.536) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 152.4 97.536) (end 152.000001 97.136001) (width 0.25) (layer B.Cu) (net 24))
(segment (start 152.000001 97.136001) (end 150.876 96.012) (width 0.25) (layer B.Cu) (net 24))
(segment (start 150.876 96.012) (end 150.876 91.186) (width 0.25) (layer B.Cu) (net 24))
(segment (start 149.606 89.916) (end 150.876 91.186) (width 0.25) (layer B.Cu) (net 24))
(segment (start 140.979 89.916) (end 149.606 89.916) (width 0.25) (layer B.Cu) (net 24))
(segment (start 150.198 97.536) (end 150.094 97.432) (width 0.25) (layer F.Cu) (net 24))
(segment (start 152.4 97.536) (end 150.198 97.536) (width 0.25) (layer F.Cu) (net 24))
(segment (start 131.572 110.744) (end 132.08 110.236) (width 0.25) (layer F.Cu) (net 25))
(segment (start 131.572 112.758) (end 131.572 110.744) (width 0.25) (layer F.Cu) (net 25))
(segment (start 138.716 110.204) (end 139.192 109.728) (width 0.25) (layer F.Cu) (net 26))