aboutsummaryrefslogtreecommitdiff
path: root/kicad/trifle/trifle.kicad_pcb
blob: 94b141f8006c265105d0033f57a55f48abd7f3c9 (plain) (blame)
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
(kicad_pcb (version 3) (host pcbnew "(22-Jun-2014 BZR 4027)-stable")

  (general
    (links 43)
    (no_connects 0)
    (area 85.980002 54.300001 190.879999 125.89)
    (thickness 1.6)
    (drawings 28)
    (tracks 75)
    (zones 0)
    (modules 16)
    (nets 20)
  )

  (page A4)
  (title_block 
    (title "Trifle Flight Control Unit")
    (rev 1.0)
  )

  (layers
    (15 F.Cu signal)
    (0 B.Cu signal)
    (16 B.Adhes user)
    (17 F.Adhes user)
    (18 B.Paste user)
    (19 F.Paste user)
    (20 B.SilkS user)
    (21 F.SilkS user)
    (22 B.Mask user)
    (23 F.Mask user)
    (24 Dwgs.User user)
    (25 Cmts.User user)
    (26 Eco1.User user)
    (27 Eco2.User user)
    (28 Edge.Cuts user)
  )

  (setup
    (last_trace_width 0.254)
    (trace_clearance 0.254)
    (zone_clearance 0.508)
    (zone_45_only no)
    (trace_min 0.254)
    (segment_width 0.2)
    (edge_width 0.1)
    (via_size 0.889)
    (via_drill 0.635)
    (via_min_size 0.889)
    (via_min_drill 0.508)
    (uvia_size 0.508)
    (uvia_drill 0.127)
    (uvias_allowed no)
    (uvia_min_size 0.508)
    (uvia_min_drill 0.127)
    (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.5 1.5)
    (pad_drill 0.6)
    (pad_to_mask_clearance 0)
    (aux_axis_origin 0 0)
    (visible_elements FFFFFFFF)
    (pcbplotparams
      (layerselection 19955713)
      (usegerberextensions false)
      (excludeedgelayer true)
      (linewidth 0.150000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15)
      (hpglpenoverlay 2)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotothertext true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 2)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory svg/))
  )

  (net 0 "")
  (net 1 /AGND)
  (net 2 GND)
  (net 3 N-0000010)
  (net 4 N-0000025)
  (net 5 N-0000026)
  (net 6 N-0000028)
  (net 7 N-0000029)
  (net 8 N-000003)
  (net 9 N-0000030)
  (net 10 N-0000031)
  (net 11 N-0000039)
  (net 12 N-000004)
  (net 13 N-0000040)
  (net 14 N-000005)
  (net 15 N-000006)
  (net 16 N-000007)
  (net 17 N-000008)
  (net 18 N-000009)
  (net 19 VCC)

  (net_class Default "This is the default net class."
    (clearance 0.254)
    (trace_width 0.254)
    (via_dia 0.889)
    (via_drill 0.635)
    (uvia_dia 0.508)
    (uvia_drill 0.127)
    (add_net "")
    (add_net /AGND)
    (add_net GND)
    (add_net N-0000010)
    (add_net N-0000025)
    (add_net N-0000026)
    (add_net N-0000028)
    (add_net N-0000029)
    (add_net N-000003)
    (add_net N-0000030)
    (add_net N-0000031)
    (add_net N-0000039)
    (add_net N-000004)
    (add_net N-0000040)
    (add_net N-000005)
    (add_net N-000006)
    (add_net N-000007)
    (add_net N-000008)
    (add_net N-000009)
    (add_net VCC)
  )

  (module teensy-3.1 (layer F.Cu) (tedit 54DE23CC) (tstamp 54DE22F4)
    (at 124.46 95.25 90)
    (path /54DE0E02)
    (fp_text reference U1 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEENSY-3.1 (at 0 -20.32 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.556 -19.304) (end 3.556 -19.304) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.556 -19.304) (end 3.556 -14.224) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.556 -14.224) (end -3.556 -14.224) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.556 -14.224) (end -3.556 -19.304) (layer F.SilkS) (width 0.15))
    (fp_line (start -8.89 -17.78) (end 8.89 -17.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 8.89 -17.78) (end 8.89 17.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 8.89 17.78) (end -8.89 17.78) (layer F.SilkS) (width 0.15))
    (fp_line (start -8.89 17.78) (end -8.89 -17.78) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole circle (at -7.62 -16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at -7.62 -13.97 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 18 N-000009)
    )
    (pad 3 thru_hole circle (at -7.62 -11.43 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 3 N-0000010)
    )
    (pad 4 thru_hole circle (at -7.62 -8.89 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 5 thru_hole circle (at -7.62 -6.35 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 6 thru_hole circle (at -7.62 -3.81 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 7 thru_hole circle (at -7.62 -1.27 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 8 thru_hole circle (at -7.62 1.27 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 9 thru_hole circle (at -7.62 3.81 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 16 N-000007)
    )
    (pad 10 thru_hole circle (at -7.62 6.35 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 17 N-000008)
    )
    (pad 11 thru_hole circle (at -7.62 8.89 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 8 N-000003)
    )
    (pad 12 thru_hole circle (at -7.62 11.43 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 15 N-000006)
    )
    (pad 13 thru_hole circle (at -7.62 13.97 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 14 N-000005)
    )
    (pad 14 thru_hole circle (at -7.62 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-000004)
    )
    (pad 15 thru_hole circle (at -5.08 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 16 thru_hole circle (at -2.54 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 17 thru_hole circle (at 0 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 18 thru_hole circle (at 2.54 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 19 thru_hole circle (at 5.08 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 20 thru_hole circle (at 7.62 16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 21 thru_hole circle (at 7.62 13.97 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 22 thru_hole circle (at 7.62 11.43 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 23 thru_hole circle (at 7.62 8.89 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 24 thru_hole circle (at 7.62 6.35 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 10 N-0000031)
    )
    (pad 25 thru_hole circle (at 7.62 3.81 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000025)
    )
    (pad 26 thru_hole circle (at 7.62 1.27 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 5 N-0000026)
    )
    (pad 27 thru_hole circle (at 7.62 -1.27 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 9 N-0000030)
    )
    (pad 28 thru_hole circle (at 7.62 -3.81 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 7 N-0000029)
    )
    (pad 29 thru_hole circle (at 7.62 -6.35 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 6 N-0000028)
    )
    (pad 30 thru_hole circle (at 7.62 -8.89 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 11 N-0000039)
    )
    (pad 31 thru_hole circle (at 7.62 -11.43 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 32 thru_hole circle (at 7.62 -13.97 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /AGND)
    )
    (pad 33 thru_hole circle (at 7.62 -16.51 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
  )

  (module R1 (layer F.Cu) (tedit 54DE3DEA) (tstamp 54DE2BAE)
    (at 132.08 74.93 180)
    (descr "Resistance verticale")
    (tags R)
    (path /54DE1214)
    (autoplace_cost90 10)
    (autoplace_cost180 10)
    (fp_text reference R1 (at -1.016 2.54 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100k (at 0 -2.54 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 0) (end 1.27 0) (layer F.SilkS) (width 0.381))
    (fp_circle (center -1.27 0) (end -0.635 1.27) (layer F.SilkS) (width 0.381))
    (pad 1 thru_hole circle (at -1.27 0 180) (size 1.397 1.397) (drill 0.8128)
      (layers *.Cu *.Mask F.SilkS)
      (net 13 N-0000040)
    )
    (pad 2 thru_hole circle (at 1.27 0 180) (size 1.397 1.397) (drill 0.8128)
      (layers *.Cu *.Mask F.SilkS)
      (net 10 N-0000031)
    )
    (model discret/verti_resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module R1 (layer F.Cu) (tedit 54DE3DD8) (tstamp 54DE2BC0)
    (at 127 74.93 180)
    (descr "Resistance verticale")
    (tags R)
    (path /54DE1221)
    (autoplace_cost90 10)
    (autoplace_cost180 10)
    (fp_text reference R2 (at -1.016 2.54 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 33k (at -1.27 -2.54 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 0) (end 1.27 0) (layer F.SilkS) (width 0.381))
    (fp_circle (center -1.27 0) (end -0.635 1.27) (layer F.SilkS) (width 0.381))
    (pad 1 thru_hole circle (at -1.27 0 180) (size 1.397 1.397) (drill 0.8128)
      (layers *.Cu *.Mask F.SilkS)
      (net 10 N-0000031)
    )
    (pad 2 thru_hole circle (at 1.27 0 180) (size 1.397 1.397) (drill 0.8128)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /AGND)
    )
    (model discret/verti_resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_4x1 (layer F.Cu) (tedit 54DE38F2) (tstamp 54DE2310)
    (at 113.03 111.76 90)
    (descr "Double rangee de contacts 2 x 5 pins")
    (tags CONN)
    (path /54DE1003)
    (fp_text reference P2 (at 0 -2.54 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TELE (at -6.35 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start -5.08 -1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole rect (at -3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at -1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 18 N-000009)
    )
    (pad 4 thru_hole circle (at 3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 3 N-0000010)
    )
    (model pin_array\pins_array_4x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_4x1 (layer F.Cu) (tedit 54DE38A7) (tstamp 54DE231C)
    (at 128.27 111.76 90)
    (descr "Double rangee de contacts 2 x 5 pins")
    (tags CONN)
    (path /54DE1236)
    (fp_text reference P3 (at 0 -2.54 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value GPS (at -6.35 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start -5.08 -1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole rect (at -3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at -1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 17 N-000008)
    )
    (pad 4 thru_hole circle (at 3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 16 N-000007)
    )
    (model pin_array\pins_array_4x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_4x1 (layer F.Cu) (tedit 54DE38E6) (tstamp 54DE2328)
    (at 140.97 111.76 90)
    (descr "Double rangee de contacts 2 x 5 pins")
    (tags CONN)
    (path /54DE123C)
    (fp_text reference P4 (at 0 -2.54 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value DIST (at -6.35 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start -5.08 -1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole rect (at -3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at -1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 1.27 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 14 N-000005)
    )
    (pad 4 thru_hole circle (at 3.81 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-000004)
    )
    (model pin_array\pins_array_4x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE38D5) (tstamp 54DE2334)
    (at 133.35 113.03 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE0FCB)
    (fp_text reference K1 (at 0.254 -2.159 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value AUX0 (at -5.08 -0.635 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 8 N-000003)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE38D7) (tstamp 54DE2340)
    (at 135.89 113.03 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE0FD1)
    (fp_text reference K2 (at 0.254 -2.159 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value AUX1 (at -5.08 1.27 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 15 N-000006)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE3998) (tstamp 54DE39C7)
    (at 115.57 72.39 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE0FD7)
    (fp_text reference K3 (at 0 -1.27 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M0 (at 5.08 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 11 N-0000039)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE397E) (tstamp 54DE2358)
    (at 118.11 72.39 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE11AA)
    (fp_text reference K4 (at 0.254 -2.159 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M1 (at 5.08 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 6 N-0000028)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE397F) (tstamp 54DE2364)
    (at 120.65 72.39 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE11B0)
    (fp_text reference K5 (at 0.254 -2.159 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M2 (at 5.08 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 7 N-0000029)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_3X1 (layer F.Cu) (tedit 54DE3980) (tstamp 54DE2370)
    (at 123.19 72.39 90)
    (descr "Connecteur 3 pins")
    (tags "CONN DEV")
    (path /54DE11B6)
    (fp_text reference K6 (at 0.254 -2.159 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M3 (at 5.08 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 9 N-0000030)
    )
    (pad 2 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 3 thru_hole circle (at 2.54 0 90) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (model pin_array/pins_array_3x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_2X1 (layer F.Cu) (tedit 54DE399B) (tstamp 54DE26A7)
    (at 110.49 71.12 270)
    (descr "Connecteurs 2 pins")
    (tags "CONN DEV")
    (path /54DE0E5C)
    (fp_text reference P1 (at 0 -1.905 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 5Vin (at 0 2.54 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -1.27 0 270) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 2 thru_hole circle (at 1.27 0 270) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (model pin_array/pins_array_2x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_2X1 (layer F.Cu) (tedit 54DE391A) (tstamp 54DE2384)
    (at 137.16 77.47 180)
    (descr "Connecteurs 2 pins")
    (tags "CONN DEV")
    (path /54DE11F6)
    (fp_text reference P5 (at 0 1.27 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value BATT (at 0 -2.54 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.1524))
    (fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.1524))
    (pad 1 thru_hole rect (at -1.27 0 180) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 13 N-0000040)
    )
    (pad 2 thru_hole circle (at 1.27 0 180) (size 1.524 1.524) (drill 1.016)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /AGND)
    )
    (model pin_array/pins_array_2x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module CTOP (layer F.Cu) (tedit 54DE27FC) (tstamp 54DE238B)
    (at 140.97 71.12 90)
    (path /54DE0F12)
    (fp_text reference C1 (at 0 -5.08 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 220uF (at 0 5.08 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 4.445 0) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole circle (at -1.27 0 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 2 thru_hole circle (at 1.27 0 90) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
  )

  (module adafruit-10dof (layer F.Cu) (tedit 54DDED7F) (tstamp 54DE23AD)
    (at 157.48 83.82 270)
    (path /54DDF274)
    (fp_text reference U2 (at 0 0 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value ADAFRUIT-10DOF (at 0 -12.7 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 16.51 8.89) (end 17.78 7.62) (layer F.SilkS) (width 0.15))
    (fp_circle (center 16.51 -8.89) (end 17.78 -10.16) (layer F.SilkS) (width 0.15))
    (fp_circle (center -16.51 8.89) (end -15.24 7.62) (layer F.SilkS) (width 0.15))
    (fp_circle (center -16.51 -8.89) (end -15.24 -10.16) (layer F.SilkS) (width 0.15))
    (fp_arc (start -16.51 8.89) (end -16.51 11.43) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -16.51 8.89) (end -19.05 8.89) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 16.51 8.89) (end 19.05 8.89) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 16.51 8.89) (end 16.51 6.35) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 16.51 -8.89) (end 19.05 -8.89) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 16.51 -8.89) (end 16.51 -11.43) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -16.51 -8.89) (end -19.05 -8.89) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -16.51 -8.89) (end -16.51 -6.35) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_line (start -16.51 11.43) (end 16.51 11.43) (layer F.SilkS) (width 0.15))
    (fp_line (start -16.51 -6.35) (end -13.97 -6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start -13.97 -6.35) (end -13.97 6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start -13.97 6.35) (end -16.51 6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start 16.51 -6.35) (end 13.97 -6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start 13.97 -6.35) (end 13.97 6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start 13.97 6.35) (end 16.51 6.35) (layer F.SilkS) (width 0.15))
    (fp_line (start -16.51 -11.43) (end 16.51 -11.43) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole rect (at -11.43 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 VCC)
    )
    (pad 2 thru_hole circle (at -8.89 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 3 thru_hole circle (at -6.35 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 GND)
    )
    (pad 4 thru_hole circle (at -3.81 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 5 N-0000026)
    )
    (pad 5 thru_hole circle (at -1.27 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000025)
    )
    (pad 6 thru_hole circle (at 1.27 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 7 thru_hole circle (at 3.81 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 8 thru_hole circle (at 6.35 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 9 thru_hole circle (at 8.89 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 10 thru_hole circle (at 11.43 8.89 270) (size 1.5 1.5) (drill 0.6)
      (layers *.Cu *.Mask F.SilkS)
    )
  )

  (dimension 72.39 (width 0.3) (layer Dwgs.User)
    (gr_text "72.390 mm" (at 139.065 124.539999) (layer Dwgs.User)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 175.26 115.57) (xy 175.26 125.889999)))
    (feature2 (pts (xy 102.87 115.57) (xy 102.87 125.889999)))
    (crossbar (pts (xy 102.87 123.189999) (xy 175.26 123.189999)))
    (arrow1a (pts (xy 175.26 123.189999) (xy 174.133497 123.776419)))
    (arrow1b (pts (xy 175.26 123.189999) (xy 174.133497 122.603579)))
    (arrow2a (pts (xy 102.87 123.189999) (xy 103.996503 123.776419)))
    (arrow2b (pts (xy 102.87 123.189999) (xy 103.996503 122.603579)))
  )
  (dimension 50.8 (width 0.3) (layer Dwgs.User)
    (gr_text "50.800 mm" (at 92.630001 90.17 270) (layer Dwgs.User)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 102.87 115.57) (xy 91.280001 115.57)))
    (feature2 (pts (xy 102.87 64.77) (xy 91.280001 64.77)))
    (crossbar (pts (xy 93.980001 64.77) (xy 93.980001 115.57)))
    (arrow1a (pts (xy 93.980001 115.57) (xy 93.393581 114.443497)))
    (arrow1b (pts (xy 93.980001 115.57) (xy 94.566421 114.443497)))
    (arrow2a (pts (xy 93.980001 64.77) (xy 93.393581 65.896503)))
    (arrow2b (pts (xy 93.980001 64.77) (xy 94.566421 65.896503)))
  )
  (dimension 58.42 (width 0.3) (layer Dwgs.User)
    (gr_text "58.420 mm" (at 184.229999 90.17 270) (layer Dwgs.User)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 179.07 119.38) (xy 185.579999 119.38)))
    (feature2 (pts (xy 179.07 60.96) (xy 185.579999 60.96)))
    (crossbar (pts (xy 182.879999 60.96) (xy 182.879999 119.38)))
    (arrow1a (pts (xy 182.879999 119.38) (xy 182.293579 118.253497)))
    (arrow1b (pts (xy 182.879999 119.38) (xy 183.466419 118.253497)))
    (arrow2a (pts (xy 182.879999 60.96) (xy 182.293579 62.086503)))
    (arrow2b (pts (xy 182.879999 60.96) (xy 183.466419 62.086503)))
  )
  (dimension 80.01 (width 0.3) (layer Dwgs.User)
    (gr_text "80.010 mm" (at 139.065 55.800001) (layer Dwgs.User)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 179.07 60.96) (xy 179.07 54.450001)))
    (feature2 (pts (xy 99.06 60.96) (xy 99.06 54.450001)))
    (crossbar (pts (xy 99.06 57.150001) (xy 179.07 57.150001)))
    (arrow1a (pts (xy 179.07 57.150001) (xy 177.943497 57.736421)))
    (arrow1b (pts (xy 179.07 57.150001) (xy 177.943497 56.563581)))
    (arrow2a (pts (xy 99.06 57.150001) (xy 100.186503 57.736421)))
    (arrow2b (pts (xy 99.06 57.150001) (xy 100.186503 56.563581)))
  )
  (gr_text GND (at 142.24 115.57) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text 5V (at 142.24 113.03) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text ECHO (at 142.24 107.95) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text TRIG (at 142.24 110.49) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text GND (at 127 115.57) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
  )
  (gr_text 5V (at 127 113.03) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
  )
  (gr_text GND (at 114.3 115.57) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text 5V (at 114.3 113.03) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text TX (at 127 110.49) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
  )
  (gr_text RX (at 127 107.95) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
  )
  (gr_text TX (at 114.3 107.95) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text RX (at 114.3 110.49) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
  )
  (gr_text + (at 107.95 73.66 90) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text - (at 107.95 68.58 90) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text - (at 134.62 80.01) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text + (at 139.7 80.01) (layer Dwgs.User)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_circle (center 175.26 64.77) (end 177.8 64.77) (layer Edge.Cuts) (width 0.1))
  (gr_circle (center 175.26 115.57) (end 177.8 115.57) (layer Edge.Cuts) (width 0.1))
  (gr_circle (center 102.87 115.57) (end 105.41 115.57) (layer Edge.Cuts) (width 0.1))
  (gr_circle (center 102.87 64.77) (end 105.41 64.77) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 179.07 60.96) (end 99.06 60.96) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 179.07 119.38) (end 179.07 60.96) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 99.06 119.38) (end 179.07 119.38) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 99.06 60.96) (end 99.06 119.38) (angle 90) (layer Edge.Cuts) (width 0.1))

  (segment (start 135.89 77.47) (end 133.35 77.47) (width 0.254) (layer B.Cu) (net 1))
  (segment (start 133.35 77.47) (end 125.73 77.47) (width 0.254) (layer F.Cu) (net 1) (tstamp 54DE2E88))
  (via (at 133.35 77.47) (size 0.889) (layers F.Cu B.Cu) (net 1))
  (segment (start 125.73 74.93) (end 125.73 77.47) (width 0.254) (layer B.Cu) (net 1))
  (segment (start 110.49 77.47) (end 110.49 87.63) (width 0.254) (layer B.Cu) (net 1) (tstamp 54DE2C4F))
  (via (at 110.49 77.47) (size 0.889) (layers F.Cu B.Cu) (net 1))
  (segment (start 125.73 77.47) (end 110.49 77.47) (width 0.254) (layer F.Cu) (net 1) (tstamp 54DE2C48))
  (via (at 125.73 77.47) (size 0.889) (layers F.Cu B.Cu) (net 1))
  (segment (start 107.95 102.87) (end 105.41 102.87) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 140.97 69.85) (end 146.05 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 146.05 77.47) (end 148.59 77.47) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2B00))
  (via (at 146.05 77.47) (size 0.889) (layers F.Cu B.Cu) (net 2))
  (segment (start 146.05 69.85) (end 146.05 77.47) (width 0.254) (layer F.Cu) (net 2) (tstamp 54DE2AF9))
  (via (at 146.05 69.85) (size 0.889) (layers F.Cu B.Cu) (net 2))
  (segment (start 110.49 69.85) (end 105.41 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 107.95 115.57) (end 113.03 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A74))
  (segment (start 105.41 113.03) (end 107.95 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A68))
  (segment (start 105.41 69.85) (end 105.41 102.87) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A67))
  (segment (start 105.41 102.87) (end 105.41 113.03) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2D81))
  (segment (start 113.03 115.57) (end 128.27 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A75))
  (segment (start 128.27 115.57) (end 133.35 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A77))
  (segment (start 133.35 115.57) (end 135.89 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A7A))
  (segment (start 135.89 115.57) (end 140.97 115.57) (width 0.254) (layer B.Cu) (net 2) (tstamp 54DE2A7B))
  (segment (start 115.57 69.85) (end 110.49 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 118.11 69.85) (end 115.57 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 120.65 69.85) (end 118.11 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 123.19 69.85) (end 120.65 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 123.19 69.85) (end 140.97 69.85) (width 0.254) (layer B.Cu) (net 2))
  (segment (start 113.03 107.95) (end 113.03 102.87) (width 0.254) (layer B.Cu) (net 3))
  (segment (start 128.27 87.63) (end 128.27 82.55) (width 0.254) (layer B.Cu) (net 4))
  (segment (start 128.27 82.55) (end 148.59 82.55) (width 0.254) (layer B.Cu) (net 4) (tstamp 54DE2D71))
  (segment (start 148.59 80.01) (end 125.73 80.01) (width 0.254) (layer B.Cu) (net 5))
  (segment (start 125.73 80.01) (end 125.73 87.63) (width 0.254) (layer B.Cu) (net 5) (tstamp 54DE2D6C))
  (segment (start 118.11 74.93) (end 118.11 87.63) (width 0.254) (layer B.Cu) (net 6))
  (segment (start 120.65 74.93) (end 120.65 87.63) (width 0.254) (layer B.Cu) (net 7))
  (segment (start 133.35 110.49) (end 133.35 102.87) (width 0.254) (layer B.Cu) (net 8))
  (segment (start 123.19 74.93) (end 123.19 87.63) (width 0.254) (layer B.Cu) (net 9))
  (segment (start 130.81 74.93) (end 130.81 78.74) (width 0.254) (layer B.Cu) (net 10))
  (segment (start 130.81 85.09) (end 130.81 87.63) (width 0.254) (layer B.Cu) (net 10) (tstamp 54DE2E79))
  (via (at 130.81 85.09) (size 0.889) (layers F.Cu B.Cu) (net 10))
  (segment (start 130.81 78.74) (end 130.81 85.09) (width 0.254) (layer F.Cu) (net 10) (tstamp 54DE2E73))
  (via (at 130.81 78.74) (size 0.889) (layers F.Cu B.Cu) (net 10))
  (segment (start 128.27 74.93) (end 130.81 74.93) (width 0.254) (layer B.Cu) (net 10))
  (segment (start 115.57 74.93) (end 115.57 87.63) (width 0.254) (layer B.Cu) (net 11))
  (segment (start 140.97 107.95) (end 140.97 102.87) (width 0.254) (layer B.Cu) (net 12))
  (segment (start 133.35 74.93) (end 138.43 74.93) (width 0.254) (layer B.Cu) (net 13))
  (segment (start 138.43 74.93) (end 138.43 77.47) (width 0.254) (layer B.Cu) (net 13) (tstamp 54DE2C70))
  (segment (start 140.97 110.49) (end 138.43 110.49) (width 0.254) (layer B.Cu) (net 14))
  (segment (start 138.43 110.49) (end 138.43 102.87) (width 0.254) (layer B.Cu) (net 14) (tstamp 54DE2D94))
  (segment (start 135.89 110.49) (end 135.89 102.87) (width 0.254) (layer B.Cu) (net 15))
  (segment (start 128.27 102.87) (end 128.27 107.95) (width 0.254) (layer B.Cu) (net 16))
  (segment (start 128.27 110.49) (end 130.81 110.49) (width 0.254) (layer B.Cu) (net 17))
  (segment (start 130.81 110.49) (end 130.81 102.87) (width 0.254) (layer B.Cu) (net 17) (tstamp 54DE2D8D))
  (segment (start 113.03 110.49) (end 110.49 110.49) (width 0.254) (layer B.Cu) (net 18))
  (segment (start 110.49 110.49) (end 110.49 102.87) (width 0.254) (layer B.Cu) (net 18) (tstamp 54DE2D83))
  (segment (start 107.95 72.39) (end 110.49 72.39) (width 0.254) (layer B.Cu) (net 19))
  (segment (start 110.49 72.39) (end 115.57 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2ADF))
  (segment (start 115.57 72.39) (end 118.11 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AE0))
  (segment (start 118.11 72.39) (end 120.65 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AE3))
  (segment (start 120.65 72.39) (end 123.19 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AE4))
  (segment (start 123.19 72.39) (end 140.97 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AE5))
  (segment (start 140.97 72.39) (end 148.59 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AE6))
  (segment (start 140.97 113.03) (end 135.89 113.03) (width 0.254) (layer B.Cu) (net 19))
  (segment (start 135.89 113.03) (end 133.35 113.03) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2A82))
  (segment (start 133.35 113.03) (end 128.27 113.03) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2A83))
  (segment (start 128.27 113.03) (end 113.03 113.03) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2A84))
  (segment (start 113.03 113.03) (end 110.49 113.03) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2A85))
  (via (at 110.49 113.03) (size 0.889) (layers F.Cu B.Cu) (net 19))
  (segment (start 110.49 113.03) (end 102.87 113.03) (width 0.254) (layer F.Cu) (net 19) (tstamp 54DE2A8D))
  (via (at 102.87 113.03) (size 0.889) (layers F.Cu B.Cu) (net 19))
  (segment (start 102.87 113.03) (end 102.87 72.39) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AC2))
  (via (at 102.87 72.39) (size 0.889) (layers F.Cu B.Cu) (net 19))
  (segment (start 102.87 72.39) (end 107.95 72.39) (width 0.254) (layer F.Cu) (net 19) (tstamp 54DE2ACC))
  (via (at 107.95 72.39) (size 0.889) (layers F.Cu B.Cu) (net 19))
  (segment (start 107.95 72.39) (end 107.95 87.63) (width 0.254) (layer B.Cu) (net 19) (tstamp 54DE2AD2))

)