-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAVE-NvidiaTX1-ISight360-Backup.kicad_pcb
3280 lines (3246 loc) · 244 KB
/
AVE-NvidiaTX1-ISight360-Backup.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.5)
(general
(links 88)
(no_connects 0)
(area 109.826479 29.706999 183.653001 145.553001)
(thickness 1.6)
(drawings 8)
(tracks 502)
(zones 0)
(modules 22)
(nets 60)
)
(page USLetter)
(title_block
(title "ISight360 Layout")
(date 2017-04-12)
(rev A)
(company "Advanced Visual Electronics")
(comment 1 "Christian Aguilar")
(comment 2 "Designed by:")
)
(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.508)
(user_trace_width 0.635)
(user_trace_width 0.762)
(user_trace_width 0.889)
(user_trace_width 1.016)
(trace_clearance 0.508)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.381)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 110.49 142.24)
(grid_origin 110.49 142.24)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010ff_80000001)
(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 false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory Fab/))
)
(net 0 "")
(net 1 GND)
(net 2 "/GPIO Breakout/GPIO37")
(net 3 "/GPIO Breakout/GPIO38")
(net 4 "/GPIO Breakout/GPIO187")
(net 5 /Sensor_Trigger)
(net 6 "/GPIO Breakout/3.3V")
(net 7 /SDA)
(net 8 /SCL)
(net 9 "/GPIO Breakout/GPIO41_Audio-MCLK")
(net 10 "/GPIO Breakout/GPIO#_UART-TX")
(net 11 "/GPIO Breakout/GPIO#_UART-RX")
(net 12 "/GPIO Breakout/GPIO33_UART1-RST")
(net 13 "/GPIO Breakout/GPRIO#_I2S0-SCLK")
(net 14 "/GPIO Breakout/GPIO-EXP-P17")
(net 15 "/GPIO Breakout/GPIO#_SPI1-MOSI")
(net 16 "/GPIO Breakout/GPIO#_SPI1-MISO")
(net 17 "/GPIO Breakout/GPIO-EXP-P16")
(net 18 "/GPIO Breakout/GPIO#_SPI1-CLK")
(net 19 "/GPIO Breakout/GPIO#_SPI1-CS0")
(net 20 "/GPIO Breakout/GPIO#_SPI1-CS1")
(net 21 "/GPIO Breakout/GPIO#_I2C1-GP1-DAT")
(net 22 "/GPIO Breakout/GPIO#_SPI1-GP1-CLK")
(net 23 /Sensor_Input_Val)
(net 24 "/GPIO Breakout/GPIO186")
(net 25 "/GPIO Breakout/GPIO36")
(net 26 "/GPIO Breakout/GPIO63")
(net 27 "/GPIO Breakout/GPIO#_I2S0-LRCLK")
(net 28 "/GPIO Breakout/GPIO#_UART0-CTS")
(net 29 "/GPIO Breakout/GPIO#_I2S0-SDIN")
(net 30 "/GPIO Breakout/GPIO#_I2S0-SDOUT")
(net 31 /UltrasonicSensorBank/Echo1)
(net 32 /UltrasonicSensorBank/Echo2)
(net 33 /UltrasonicSensorBank/Echo3)
(net 34 /UltrasonicSensorBank/Echo4)
(net 35 /UltrasonicSensorBank/Echo5)
(net 36 /UltrasonicSensorBank/Echo6)
(net 37 /UltrasonicSensorBank/Ultrasonic_Trigger)
(net 38 "/GPIO Breakout/5V")
(net 39 /UltrasonicSensorBank/U-Power)
(net 40 "Net-(U401-Pad1)")
(net 41 "Net-(U401-Pad5)")
(net 42 "Net-(U402-Pad7)")
(net 43 "Net-(U402-Pad6)")
(net 44 "Net-(U402-Pad4)")
(net 45 "Net-(U402-Pad2)")
(net 46 /HapticMotorBank/M-Power)
(net 47 "Net-(R401-Pad2)")
(net 48 "Net-(U301-Pad14)")
(net 49 "Net-(U301-Pad13)")
(net 50 "Net-(U301-Pad12)")
(net 51 "Net-(U301-Pad7)")
(net 52 "Net-(U301-Pad6)")
(net 53 "Net-(U301-Pad5)")
(net 54 "Net-(U301-Pad4)")
(net 55 "Net-(U301-Pad2)")
(net 56 "Net-(U301-Pad1)")
(net 57 "Net-(U301-Pad15)")
(net 58 "Net-(R403-Pad2)")
(net 59 "/GPIO Breakout/Unused-3.3V")
(net_class Default "This is the default net class."
(clearance 0.508)
(trace_width 0.508)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net "/GPIO Breakout/3.3V")
(add_net "/GPIO Breakout/5V")
(add_net "/GPIO Breakout/GPIO#_I2C1-GP1-DAT")
(add_net "/GPIO Breakout/GPIO#_I2S0-LRCLK")
(add_net "/GPIO Breakout/GPIO#_I2S0-SDIN")
(add_net "/GPIO Breakout/GPIO#_I2S0-SDOUT")
(add_net "/GPIO Breakout/GPIO#_SPI1-CLK")
(add_net "/GPIO Breakout/GPIO#_SPI1-CS0")
(add_net "/GPIO Breakout/GPIO#_SPI1-CS1")
(add_net "/GPIO Breakout/GPIO#_SPI1-GP1-CLK")
(add_net "/GPIO Breakout/GPIO#_SPI1-MISO")
(add_net "/GPIO Breakout/GPIO#_SPI1-MOSI")
(add_net "/GPIO Breakout/GPIO#_UART-RX")
(add_net "/GPIO Breakout/GPIO#_UART-TX")
(add_net "/GPIO Breakout/GPIO#_UART0-CTS")
(add_net "/GPIO Breakout/GPIO-EXP-P16")
(add_net "/GPIO Breakout/GPIO-EXP-P17")
(add_net "/GPIO Breakout/GPIO186")
(add_net "/GPIO Breakout/GPIO187")
(add_net "/GPIO Breakout/GPIO33_UART1-RST")
(add_net "/GPIO Breakout/GPIO36")
(add_net "/GPIO Breakout/GPIO37")
(add_net "/GPIO Breakout/GPIO38")
(add_net "/GPIO Breakout/GPIO41_Audio-MCLK")
(add_net "/GPIO Breakout/GPIO63")
(add_net "/GPIO Breakout/GPRIO#_I2S0-SCLK")
(add_net "/GPIO Breakout/Unused-3.3V")
(add_net /HapticMotorBank/M-Power)
(add_net /SCL)
(add_net /SDA)
(add_net /Sensor_Input_Val)
(add_net /Sensor_Trigger)
(add_net /UltrasonicSensorBank/Echo1)
(add_net /UltrasonicSensorBank/Echo2)
(add_net /UltrasonicSensorBank/Echo3)
(add_net /UltrasonicSensorBank/Echo4)
(add_net /UltrasonicSensorBank/Echo5)
(add_net /UltrasonicSensorBank/Echo6)
(add_net /UltrasonicSensorBank/U-Power)
(add_net /UltrasonicSensorBank/Ultrasonic_Trigger)
(add_net GND)
(add_net "Net-(R401-Pad2)")
(add_net "Net-(R403-Pad2)")
(add_net "Net-(U301-Pad1)")
(add_net "Net-(U301-Pad12)")
(add_net "Net-(U301-Pad13)")
(add_net "Net-(U301-Pad14)")
(add_net "Net-(U301-Pad15)")
(add_net "Net-(U301-Pad2)")
(add_net "Net-(U301-Pad4)")
(add_net "Net-(U301-Pad5)")
(add_net "Net-(U301-Pad6)")
(add_net "Net-(U301-Pad7)")
(add_net "Net-(U401-Pad1)")
(add_net "Net-(U401-Pad5)")
(add_net "Net-(U402-Pad2)")
(add_net "Net-(U402-Pad4)")
(add_net "Net-(U402-Pad6)")
(add_net "Net-(U402-Pad7)")
)
(net_class Larger ""
(clearance 0.508)
(trace_width 0.635)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
)
(net_class Largest ""
(clearance 0.508)
(trace_width 7.62)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
)
(net_class Small ""
(clearance 0.508)
(trace_width 0.381)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
)
(module Resistors_SMD:R_1206_HandSoldering (layer F.Cu) (tedit 58E0A804) (tstamp 58EEEF96)
(at 167.64 107.22 270)
(descr "Resistor SMD 1206, hand soldering")
(tags "resistor 1206")
(path /58CA7E2A/58EEF4DE)
(attr smd)
(fp_text reference R404 (at 0 -1.85 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.9 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.7 0.7) (thickness 0.105)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1 1.07) (end -1 1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -1.07) (end 1 -1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -2 0 270) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 58 "Net-(R403-Pad2)"))
(pad 2 smd rect (at 2 0 270) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_1206.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_HandSoldering (layer F.Cu) (tedit 58E0A804) (tstamp 58EEEF85)
(at 167.64 95.98 90)
(descr "Resistor SMD 1206, hand soldering")
(tags "resistor 1206")
(path /58CA7E2A/58EEF52B)
(attr smd)
(fp_text reference R403 (at 0.73 1.905 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100K (at 0 -2.54 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.7 0.7) (thickness 0.105)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1 1.07) (end -1 1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -1.07) (end 1 -1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -2 0 90) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 5 /Sensor_Trigger))
(pad 2 smd rect (at 2 0 90) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 58 "Net-(R403-Pad2)"))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_1206.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SOIC-8-N (layer F.Cu) (tedit 0) (tstamp 58EED9BD)
(at 162.56 50.292)
(descr "Module Narrow CMS SOJ 8 pins large")
(tags "CMS SOJ")
(path /58CA7E2A/58EEF2F2)
(attr smd)
(fp_text reference U401 (at 3.81 -1.27 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM4250 (at 0 1.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -2.286) (end 2.54 -2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -2.286) (end 2.54 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 2.286) (end -2.54 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 2.286) (end -2.54 -2.286) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 -0.762) (end -2.032 -0.762) (layer F.SilkS) (width 0.15))
(fp_line (start -2.032 -0.762) (end -2.032 0.508) (layer F.SilkS) (width 0.15))
(fp_line (start -2.032 0.508) (end -2.54 0.508) (layer F.SilkS) (width 0.15))
(pad 8 smd rect (at -1.905 -3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask))
(pad 7 smd rect (at -0.635 -3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 38 "/GPIO Breakout/5V"))
(pad 6 smd rect (at 0.635 -3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 37 /UltrasonicSensorBank/Ultrasonic_Trigger))
(pad 5 smd rect (at 1.905 -3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 41 "Net-(U401-Pad5)"))
(pad 4 smd rect (at 1.905 3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 3 smd rect (at 0.635 3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 5 /Sensor_Trigger))
(pad 2 smd rect (at -0.635 3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 58 "Net-(R403-Pad2)"))
(pad 1 smd rect (at -1.905 3.175) (size 0.508 1.143) (layers F.Cu F.Paste F.Mask)
(net 40 "Net-(U401-Pad1)"))
(model SMD_Packages.3dshapes/SOIC-8-N.wrl
(at (xyz 0 0 0))
(scale (xyz 0.5 0.38 0.5))
(rotate (xyz 0 0 0))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10E8C) (tstamp 58EED9BC)
(at 152.4 106.68)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDB912)
(fp_text reference U307 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 6" (at 3.81 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "Net-(U301-Pad5)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10E95) (tstamp 58EED9A4)
(at 129.54 106.68)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDBBA6)
(fp_text reference U306 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 5" (at 3.81 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 56 "Net-(U301-Pad1)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10E9B) (tstamp 58EED98C)
(at 152.4 83.82)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDBC2F)
(fp_text reference U305 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 4" (at 3.81 4.445 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "Net-(U301-Pad12)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10EA5) (tstamp 58EED974)
(at 129.54 83.82)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDBD29)
(fp_text reference U304 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 3" (at 3.81 4.445 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 57 "Net-(U301-Pad15)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10EAC) (tstamp 58EED95C)
(at 152.4 63.5)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDBE43)
(fp_text reference U303 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 2" (at 3.81 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 48 "Net-(U301-Pad14)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm (layer F.Cu) (tedit 58F10EB2) (tstamp 58EED944)
(at 129.54 63.5)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(path /58CA7E20/58DDC04A)
(fp_text reference U302 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Motor 1" (at 3.81 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 11.49) (end 1.33 1.27) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 /HapticMotorBank/M-Power))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "Net-(U301-Pad13)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x05_Pitch2.54mm.wrl
(at (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Resistors_SMD:R_1206_HandSoldering (layer F.Cu) (tedit 58E0A804) (tstamp 58EED911)
(at 167.64 74.708 270)
(descr "Resistor SMD 1206, hand soldering")
(tags "resistor 1206")
(path /58CA7E2A/58EC0350)
(attr smd)
(fp_text reference R402 (at 0 -1.85 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 20K (at 0 1.9 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.7 0.7) (thickness 0.105)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1 1.07) (end -1 1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -1.07) (end 1 -1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -2 0 270) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 23 /Sensor_Input_Val))
(pad 2 smd rect (at 2 0 270) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_1206.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_HandSoldering (layer F.Cu) (tedit 58E0A804) (tstamp 58EED900)
(at 167.64 62.96 90)
(descr "Resistor SMD 1206, hand soldering")
(tags "resistor 1206")
(path /58CA7E2A/58EC030A)
(attr smd)
(fp_text reference R401 (at 0 1.905 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 -2.54 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.7 0.7) (thickness 0.105)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1 1.07) (end -1 1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -1.07) (end 1 -1.07) (layer F.SilkS) (width 0.12))
(fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.25 1.1) (end -3.25 1.1) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -2 0 90) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 23 /Sensor_Input_Val))
(pad 2 smd rect (at 2 0 90) (size 2 1.7) (layers F.Cu F.Paste F.Mask)
(net 47 "Net-(R401-Pad2)"))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_1206.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Angled_1x04_Pitch2.54mm (layer F.Cu) (tedit 58CD4EC1) (tstamp 58EED8EF)
(at 144.78 134.62 270)
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
(path /58CA7E2A/58CA830A)
(fp_text reference P406 (at 4.315 -2.27 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Ultrasonic6 (at 3.175 10.16 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.4 -1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 3.9 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 -1.27) (end 1.4 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.32) (end 9.9 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 0.32) (end 9.9 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.86) (end 9.9 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.86) (end 9.9 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.4) (end 9.9 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 5.4) (end 9.9 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 1.4 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 8.89) (end 3.9 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 8.89) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.3) (end 0 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.94) (end 9.9 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.94) (end 9.9 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.3) (end 0 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 1.34 -1.33) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 3.96 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -1.33) (end 1.34 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.38) (end 3.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.38) (end 9.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 0.38) (end 9.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 -0.38) (end 3.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -0.38) (end 1.34 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.38) (end 1.34 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.26) (end 9.96 -0.26) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.14) (end 9.96 -0.14) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.02) (end 9.96 -0.02) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.1) (end 9.96 0.1) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.22) (end 9.96 0.22) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.34) (end 9.96 0.34) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.16) (end 3.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.92) (end 9.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.92) (end 9.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.16) (end 3.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.16) (end 1.34 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.92) (end 1.34 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 1.34 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 6.35) (end 3.96 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 6.35) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 4.7) (end 3.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 5.46) (end 9.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 5.46) (end 9.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 4.7) (end 3.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 4.7) (end 1.34 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 5.46) (end 1.34 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 6.35) (end 1.34 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 8.95) (end 3.96 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 8.95) (end 3.96 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 6.35) (end 1.34 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 7.24) (end 3.96 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 8) (end 9.96 8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 8) (end 9.96 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 7.24) (end 3.96 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 7.24) (end 1.34 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 8) (end 1.34 8) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 10.4 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 9.4) (end 10.4 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 4.315 -2.27 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "/GPIO Breakout/5V"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 /UltrasonicSensorBank/Ultrasonic_Trigger))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 /UltrasonicSensorBank/Echo6))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Angled_1x04_Pitch2.54mm.wrl
(at (xyz 0 -0.15 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Angled_1x04_Pitch2.54mm (layer F.Cu) (tedit 58CD4EC1) (tstamp 58EED892)
(at 162.56 134.62 270)
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
(path /58CA7E2A/58CA82E1)
(fp_text reference P405 (at 4.315 -2.27 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Ultrasonic5 (at 3.175 10.16 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.4 -1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 3.9 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 -1.27) (end 1.4 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.32) (end 9.9 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 0.32) (end 9.9 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.86) (end 9.9 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.86) (end 9.9 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.4) (end 9.9 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 5.4) (end 9.9 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 1.4 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 8.89) (end 3.9 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 8.89) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.3) (end 0 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.94) (end 9.9 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.94) (end 9.9 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.3) (end 0 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 1.34 -1.33) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 3.96 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -1.33) (end 1.34 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.38) (end 3.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.38) (end 9.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 0.38) (end 9.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 -0.38) (end 3.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -0.38) (end 1.34 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.38) (end 1.34 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.26) (end 9.96 -0.26) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.14) (end 9.96 -0.14) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.02) (end 9.96 -0.02) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.1) (end 9.96 0.1) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.22) (end 9.96 0.22) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.34) (end 9.96 0.34) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.16) (end 3.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.92) (end 9.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.92) (end 9.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.16) (end 3.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.16) (end 1.34 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.92) (end 1.34 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 1.34 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 6.35) (end 3.96 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 6.35) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 4.7) (end 3.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 5.46) (end 9.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 5.46) (end 9.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 4.7) (end 3.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 4.7) (end 1.34 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 5.46) (end 1.34 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 6.35) (end 1.34 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 8.95) (end 3.96 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 8.95) (end 3.96 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 6.35) (end 1.34 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 7.24) (end 3.96 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 8) (end 9.96 8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 8) (end 9.96 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 7.24) (end 3.96 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 7.24) (end 1.34 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 8) (end 1.34 8) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 10.4 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 9.4) (end 10.4 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 4.315 -2.27 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "/GPIO Breakout/5V"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 /UltrasonicSensorBank/Ultrasonic_Trigger))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 /UltrasonicSensorBank/Echo5))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Angled_1x04_Pitch2.54mm.wrl
(at (xyz 0 -0.15 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Angled_1x04_Pitch2.54mm (layer F.Cu) (tedit 58CD4EC1) (tstamp 58EED835)
(at 172.72 121.92)
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
(path /58CA7E2A/58CA82BB)
(fp_text reference P404 (at 4.315 -2.27) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Ultrasonic4 (at 4.315 10.16) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.4 -1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 3.9 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 -1.27) (end 1.4 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.32) (end 9.9 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 0.32) (end 9.9 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.86) (end 9.9 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.86) (end 9.9 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.4) (end 9.9 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 5.4) (end 9.9 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 1.4 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 8.89) (end 3.9 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 8.89) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.3) (end 0 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.94) (end 9.9 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.94) (end 9.9 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 7.3) (end 0 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 1.34 -1.33) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 3.96 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -1.33) (end 1.34 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.38) (end 3.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.38) (end 9.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 0.38) (end 9.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 -0.38) (end 3.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -0.38) (end 1.34 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.38) (end 1.34 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.26) (end 9.96 -0.26) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.14) (end 9.96 -0.14) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.02) (end 9.96 -0.02) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.1) (end 9.96 0.1) (layer F.SilkS) (width 0.12))