forked from joao-duarte/XBee-Adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xbee adapter.kicad_pcb-bak
1311 lines (1284 loc) · 82.7 KB
/
xbee adapter.kicad_pcb-bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 3) (host pcbnew "(22-Jun-2014 BZR 4027)-stable")
(general
(links 37)
(no_connects 0)
(area 109.029499 70.154801 171.63143 117.030501)
(thickness 1.6002)
(drawings 6)
(tracks 91)
(zones 0)
(modules 18)
(nets 16)
)
(page A4)
(title_block
(title "XBEE Regulated Adapter")
(rev Final)
(company eLab)
(comment 1 "João Duarte")
)
(layers
(15 Front signal)
(0 Back 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.2032)
(user_trace_width 0.29972)
(user_trace_width 0.39878)
(user_trace_width 0.50038)
(user_trace_width 0.59944)
(user_trace_width 0.70104)
(user_trace_width 0.8001)
(trace_clearance 0.254)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2032)
(segment_width 0.381)
(edge_width 0.381)
(via_size 0.889)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(user_via 1.99898 0.29972)
(user_via 5.00126 1.00076)
(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.3048)
(pcb_text_size 1.524 2.032)
(mod_edge_width 0.381)
(mod_text_size 1.524 1.524)
(mod_text_width 0.3048)
(pad_size 2 2)
(pad_drill 1.016)
(pad_to_mask_clearance 0.254)
(aux_axis_origin 14.59992 195.29806)
(visible_elements FFFFFFBF)
(pcbplotparams
(layerselection 137396224)
(usegerberextensions false)
(excludeedgelayer false)
(linewidth 0.150000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 0)
(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 out/pdf/))
)
(net 0 "")
(net 1 +3.3V)
(net 2 DIN)
(net 3 DOUT)
(net 4 GND)
(net 5 N-0000012)
(net 6 N-0000013)
(net 7 N-0000016)
(net 8 N-0000017)
(net 9 N-0000018)
(net 10 N-0000025)
(net 11 N-0000026)
(net 12 N-0000027)
(net 13 N-0000028)
(net 14 ~CTS)
(net 15 ~RTS)
(net_class Default "This is the default net class."
(clearance 0.254)
(trace_width 0.2032)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net "")
(add_net +3.3V)
(add_net DIN)
(add_net DOUT)
(add_net GND)
(add_net N-0000012)
(add_net N-0000013)
(add_net N-0000016)
(add_net N-0000017)
(add_net N-0000018)
(add_net N-0000025)
(add_net N-0000026)
(add_net N-0000027)
(add_net N-0000028)
(add_net ~CTS)
(add_net ~RTS)
)
(module XBee (layer Front) (tedit 51E2B5DF) (tstamp 51E179CF)
(at 124.841 100.965 90)
(path /51DDD408)
(fp_text reference U2 (at 7.62508 18.62582 90) (layer F.SilkS)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_text value XBEE (at 2.75082 18.52676 90) (layer F.SilkS)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_line (start -12.446 19.558) (end -12.446 20.574) (layer F.SilkS) (width 0.381))
(fp_line (start 12.446 19.558) (end 12.446 20.574) (layer F.SilkS) (width 0.381))
(fp_circle (center 6.858 0) (end 7.62 0.254) (layer F.SilkS) (width 0.381))
(fp_circle (center 6.858 0) (end 8.128 0.762) (layer F.SilkS) (width 0.381))
(fp_line (start -12.446 19.558) (end -12.446 -0.254) (layer F.SilkS) (width 0.381))
(fp_line (start 12.446 0) (end 12.446 -0.254) (layer F.SilkS) (width 0.381))
(fp_line (start 12.446 19.558) (end 12.446 0) (layer F.SilkS) (width 0.381))
(fp_line (start -12.446 20.574) (end 12.446 20.574) (layer F.SilkS) (width 0.381))
(fp_line (start 12.446 -0.254) (end 5.08 -6.604) (layer F.SilkS) (width 0.381))
(fp_line (start -12.446 -0.254) (end -5.08 -6.604) (layer F.SilkS) (width 0.381))
(fp_line (start -5.08 -6.604) (end 5.08 -6.604) (layer F.SilkS) (width 0.381))
(pad 20 thru_hole circle (at 11.00074 0 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 8 N-0000017)
)
(pad 16 thru_hole circle (at 11.00074 8.001 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 15 ~RTS)
)
(pad 14 thru_hole circle (at 11.00074 11.99896 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 15 thru_hole circle (at 11.00074 9.99998 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 18 thru_hole circle (at 11.00074 4.0005 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 17 thru_hole circle (at 11.00074 5.99948 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 13 N-0000028)
)
(pad 19 thru_hole circle (at 11.00074 1.99898 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 12 thru_hole circle (at 11.00074 15.99946 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 14 ~CTS)
)
(pad 11 thru_hole circle (at 11.00074 18.00098 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 13 thru_hole circle (at 11.00074 14.00048 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 11 N-0000026)
)
(pad 8 thru_hole circle (at -11.00074 14.00048 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 10 thru_hole circle (at -11.00074 18.00098 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 4 GND)
)
(pad 9 thru_hole circle (at -11.00074 15.99946 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 5 N-0000012)
)
(pad 2 thru_hole circle (at -11.00074 1.99898 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 3 DOUT)
)
(pad 4 thru_hole circle (at -11.00074 5.99948 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 3 thru_hole circle (at -11.00074 4.0005 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 2 DIN)
)
(pad 6 thru_hole circle (at -11.00074 9.99998 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 7 thru_hole circle (at -11.00074 11.99896 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
)
(pad 5 thru_hole circle (at -11.00074 8.001 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 7 N-0000016)
)
(pad 1 thru_hole circle (at -11.00074 0 90) (size 1.6002 1.6002) (drill 0.8128)
(layers *.Cu)
(net 1 +3.3V)
)
(model xbee_lib\modules_3D\Xbee.wrl
(at (xyz 0.037 0 0.15))
(scale (xyz 1 1 1))
(rotate (xyz 270 0 0))
)
(model "xbee_lib\\pin strip\\pin_socket_2mm_10.wrl"
(at (xyz -0.435 -0.355 0.03))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model "xbee_lib\\pin strip\\pin_socket_2mm_10.wrl"
(at (xyz 0.435 -0.355 0.03))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module SOT223 (layer Front) (tedit 51E08918) (tstamp 51E0891D)
(at 152.654 100.711 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(path /55F8E2B6)
(attr smd)
(fp_text reference U1 (at 0 -0.762 180) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value TC1262 (at 0.17526 -5.42544 180) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_line (start -3.556 1.524) (end -3.556 4.572) (layer F.SilkS) (width 0.2032))
(fp_line (start -3.556 4.572) (end 3.556 4.572) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.556 4.572) (end 3.556 1.524) (layer F.SilkS) (width 0.2032))
(fp_line (start -3.556 -1.524) (end -3.556 -2.286) (layer F.SilkS) (width 0.2032))
(fp_line (start -3.556 -2.286) (end -2.032 -4.572) (layer F.SilkS) (width 0.2032))
(fp_line (start -2.032 -4.572) (end 2.032 -4.572) (layer F.SilkS) (width 0.2032))
(fp_line (start 2.032 -4.572) (end 3.556 -2.286) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.556 -2.286) (end 3.556 -1.524) (layer F.SilkS) (width 0.2032))
(pad 4 smd rect (at 0 -3.302 180) (size 3.6576 2.032)
(layers Front F.Paste F.Mask)
)
(pad 2 smd rect (at 0 3.302 180) (size 1.016 2.032)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
(pad 3 smd rect (at 2.286 3.302 180) (size 1.016 2.032)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 1 smd rect (at -2.286 3.302 180) (size 1.016 2.032)
(layers Front F.Paste F.Mask)
(net 6 N-0000013)
)
(model smd/SOT223.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module SW_PUSH_SMALL (layer Front) (tedit 46544DB3) (tstamp 55F8D5E9)
(at 152.146 109.474)
(path /55F8C318)
(fp_text reference SW1 (at 0 -0.762) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value DI8 (at 0 1.016) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_circle (center 0 0) (end 0 -2.54) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end 3.81 -3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 -3.81) (end 3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(pad 1 thru_hole circle (at 3.81 -2.54) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 N-0000012)
)
(pad 2 thru_hole circle (at 3.81 2.54) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 4 GND)
)
(pad 1 thru_hole circle (at -3.81 -2.54) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 N-0000012)
)
(pad 2 thru_hole circle (at -3.81 2.54) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 4 GND)
)
)
(module SM1206POL (layer Front) (tedit 42806E4C) (tstamp 55F8D5F8)
(at 150.876 94.234)
(path /55F8E2A8)
(attr smd)
(fp_text reference C3 (at 0 0) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 10u (at 0 0) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.794 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 -1.143) (end -2.794 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer F.SilkS) (width 0.127))
(pad 1 smd rect (at -1.651 0) (size 1.524 2.032)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 1.651 0) (size 1.524 2.032)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
(model smd/chip_cms_pol.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 55F8D605)
(at 139.827 86.36)
(path /55F778DD)
(attr smd)
(fp_text reference R5 (at 0 -0.3175) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 330 (at 0 0.381) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 11 N-0000026)
)
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 10 N-0000025)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 55F8D612)
(at 141.859 108.204 180)
(path /55F8C619)
(attr smd)
(fp_text reference C4 (at 0 -0.3175 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value C (at 0 0.381 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 5 N-0000012)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 55F8D61F)
(at 138.43 107.188 270)
(path /55F8C7F4)
(attr smd)
(fp_text reference R6 (at 0 -0.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 5 N-0000012)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module LED-0805 (layer Front) (tedit 49DC4C0B) (tstamp 55F8D65A)
(at 143.51 85.217 90)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /55F778D7)
(attr smd)
(fp_text reference D3 (at 0 -1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value ON (at 0 1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start 0.49784 0.29972) (end 0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.62484) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 0.29972) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.29972) (end 0.99822 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.17272) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 -0.32258) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.7493 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.32258) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 0.17272) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.7493 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.6731 -0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.6731 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.62484) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.29972) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.49784 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.99822 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.29972) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.62484) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.49784 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.32258) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.17272) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.49784 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.17272) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.32258) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.49784 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.49784 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.19812 -0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0.19812 -0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.29972) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.79756 -0.59944) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.79756 -0.59944) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.92456 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.39878) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 -0.62484) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.99822 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.52324 0.57404) (end -0.52324 0.57404) (layer F.SilkS) (width 0.1016))
(fp_line (start -0.49784 -0.57404) (end 0.92456 -0.57404) (layer F.SilkS) (width 0.1016))
(fp_circle (center 0.84836 -0.44958) (end 0.89916 -0.50038) (layer F.SilkS) (width 0.0508))
(fp_arc (start 0.99822 0) (end 0.99822 0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(fp_arc (start -0.99822 0) (end -0.99822 -0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(pad 1 smd rect (at -1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 10 N-0000025)
)
(pad 2 smd rect (at 1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
)
(module PIN_ARRAY_2X1 (layer Front) (tedit 55FB632A) (tstamp 51DDE97B)
(at 153.67 85.344 180)
(descr "Connecteurs 2 pins")
(tags "CONN DEV")
(path /55F8E66B)
(fp_text reference P1 (at 0 -1.905 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value Vin (at 0 -1.905 180) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 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))
(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 2 2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 6 N-0000013)
)
(pad 2 thru_hole circle (at 1.27 0 180) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 4 GND)
)
(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_5x2 (layer Back) (tedit 55FB6357) (tstamp 51E176AB)
(at 113.411 100.838 90)
(descr "Double rangee de contacts 2 x 5 pins")
(tags CONN)
(path /55F779F8)
(fp_text reference P2 (at 0.635 3.81 90) (layer B.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)) (justify mirror))
)
(fp_text value OOCD-UART (at 0 3.81 90) (layer B.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)) (justify mirror))
)
(fp_line (start -6.35 2.54) (end 6.35 2.54) (layer B.SilkS) (width 0.3048))
(fp_line (start 6.35 2.54) (end 6.35 -2.54) (layer B.SilkS) (width 0.3048))
(fp_line (start 6.35 -2.54) (end -6.35 -2.54) (layer B.SilkS) (width 0.3048))
(fp_line (start -6.35 -2.54) (end -6.35 2.54) (layer B.SilkS) (width 0.3048))
(pad 1 thru_hole rect (at -5.08 -1.27 90) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 2 DIN)
)
(pad 2 thru_hole circle (at -5.08 1.27 90) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 3 DOUT)
)
(pad 3 thru_hole circle (at -2.54 -1.27 90) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 15 ~RTS)
)
(pad 4 thru_hole circle (at -2.54 1.27 90) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 14 ~CTS)
)
(pad 5 thru_hole circle (at 0 -1.27 90) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
)
(pad 6 thru_hole circle (at 0 1.27 90) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
)
(pad 7 thru_hole circle (at 2.54 -1.27 90) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
)
(pad 8 thru_hole circle (at 2.54 1.27 90) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
)
(pad 9 thru_hole circle (at 5.08 -1.27 90) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 4 GND)
)
(pad 10 thru_hole circle (at 5.08 1.27 90) (size 2 2) (drill 1.016)
(layers *.Cu *.Mask B.SilkS)
(net 1 +3.3V)
)
(model pin_array/pins_array_5x2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 51DDE97E)
(at 132.842 107.696 270)
(path /55F777EA)
(attr smd)
(fp_text reference R1 (at 0 -0.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 7 N-0000016)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 51DDE980)
(at 128.905 107.696 270)
(path /55F77783)
(attr smd)
(fp_text reference R2 (at 0 -0.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 2 DIN)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM1206POL (layer Front) (tedit 42806E4C) (tstamp 51E089AB)
(at 153.67 89.154 180)
(path /55F8E2DA)
(attr smd)
(fp_text reference C1 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 10u (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.794 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 -1.143) (end -2.794 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer F.SilkS) (width 0.127))
(pad 1 smd rect (at -1.651 0 180) (size 1.524 2.032)
(layers Front F.Paste F.Mask)
(net 6 N-0000013)
)
(pad 2 smd rect (at 1.651 0 180) (size 1.524 2.032)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
(model smd/chip_cms_pol.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 51DDE983)
(at 150.749 91.694)
(path /55F8E2C8)
(attr smd)
(fp_text reference C2 (at 0 -0.3175) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 100n (at 0 0.381) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 51E16C22)
(at 125.73 86.36)
(path /51E160E4)
(attr smd)
(fp_text reference R3 (at 0 -0.3175) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 330 (at 0 0.381) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 8 N-0000017)
)
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 9 N-0000018)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer Front) (tedit 5091495C) (tstamp 51E185F5)
(at 131.826 86.36)
(path /55F778A5)
(attr smd)
(fp_text reference R4 (at 0 -0.3175) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 330 (at 0 0.381) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 13 N-0000028)
)
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397)
(layers Front F.Paste F.Mask)
(net 12 N-0000027)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module LED-0805 (layer Front) (tedit 49DC4C0B) (tstamp 539E0197)
(at 128.524 85.217 90)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /51E160E5)
(attr smd)
(fp_text reference D1 (at 0 -1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value DIO0 (at 0 1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start 0.49784 0.29972) (end 0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.62484) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 0.29972) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.29972) (end 0.99822 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.17272) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 -0.32258) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.7493 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.32258) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 0.17272) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.7493 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.6731 -0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.6731 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.62484) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.29972) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.49784 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.99822 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.29972) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.62484) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.49784 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.32258) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.17272) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.49784 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.17272) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.32258) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.49784 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.49784 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.19812 -0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0.19812 -0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.29972) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.79756 -0.59944) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.79756 -0.59944) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.92456 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.39878) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 -0.62484) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.99822 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.52324 0.57404) (end -0.52324 0.57404) (layer F.SilkS) (width 0.1016))
(fp_line (start -0.49784 -0.57404) (end 0.92456 -0.57404) (layer F.SilkS) (width 0.1016))
(fp_circle (center 0.84836 -0.44958) (end 0.89916 -0.50038) (layer F.SilkS) (width 0.0508))
(fp_arc (start 0.99822 0) (end 0.99822 0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(fp_arc (start -0.99822 0) (end -0.99822 -0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(pad 1 smd rect (at -1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 9 N-0000018)
)
(pad 2 smd rect (at 1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
)
(module LED-0805 (layer Front) (tedit 49DC4C0B) (tstamp 51E16C27)
(at 135.382 85.217 90)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /55F7789F)
(attr smd)
(fp_text reference D2 (at 0 -1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value DIO3 (at 0 1.27 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start 0.49784 0.29972) (end 0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.62484) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 0.29972) (end 0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.29972) (end 0.99822 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.17272) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 -0.32258) (end 0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.32258) (end 0.7493 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.32258) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.7493 0.17272) (end 0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.17272) (end 0.7493 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.6731 -0.19812) (end 0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.19812) (end 0.6731 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.99822 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.62484) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.29972) (end -0.49784 0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 0.29972) (end -0.49784 0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.99822 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.29972) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.62484) (end -0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.99822 -0.62484) (end -0.49784 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.7493 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.32258) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 0.17272) (end -0.49784 0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 0.17272) (end -0.49784 0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.7493 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.17272) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.32258) (end -0.49784 -0.17272) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.7493 -0.32258) (end -0.49784 -0.32258) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.6731 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.49784 -0.19812) (end -0.49784 0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.6731 -0.19812) (end -0.49784 -0.19812) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.19812 -0.09906) (end 0.19812 0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0 -0.09906) (end 0.19812 -0.09906) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.49784 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.29972) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.79756 -0.59944) (end 0.79756 -0.29972) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.49784 -0.59944) (end 0.79756 -0.59944) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.92456 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.39878) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.99822 -0.62484) (end 0.99822 -0.39878) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.92456 -0.62484) (end 0.99822 -0.62484) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.52324 0.57404) (end -0.52324 0.57404) (layer F.SilkS) (width 0.1016))
(fp_line (start -0.49784 -0.57404) (end 0.92456 -0.57404) (layer F.SilkS) (width 0.1016))
(fp_circle (center 0.84836 -0.44958) (end 0.89916 -0.50038) (layer F.SilkS) (width 0.0508))
(fp_arc (start 0.99822 0) (end 0.99822 0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(fp_arc (start -0.99822 0) (end -0.99822 -0.34798) (angle 180) (layer F.SilkS) (width 0.1016))
(pad 1 smd rect (at -1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 12 N-0000027)
)
(pad 2 smd rect (at 1.04902 0 90) (size 1.19888 1.19888)
(layers Front F.Paste F.Mask)
(net 4 GND)
)
)
(gr_line (start 109.22 116.84) (end 109.22 81.28) (angle 90) (layer Edge.Cuts) (width 0.381))
(gr_line (start 160.02 116.84) (end 109.22 116.84) (angle 90) (layer Edge.Cuts) (width 0.381))
(gr_line (start 160.02 81.28) (end 160.02 116.84) (angle 90) (layer Edge.Cuts) (width 0.381))
(gr_line (start 109.22 81.28) (end 160.02 81.28) (angle 90) (layer Edge.Cuts) (width 0.381))
(dimension 35.56 (width 0.3048) (layer Dwgs.User)
(gr_text 35,560mm (at 165.455599 99.06 270) (layer Dwgs.User)
(effects (font (size 2.032 1.524) (thickness 0.3048)))
)
(feature1 (pts (xy 160.02 116.84) (xy 167.081199 116.84)))
(feature2 (pts (xy 160.02 81.28) (xy 167.081199 81.28)))
(crossbar (pts (xy 163.829999 81.28) (xy 163.829999 116.84)))
(arrow1a (pts (xy 163.829999 116.84) (xy 163.243579 115.713497)))
(arrow1b (pts (xy 163.829999 116.84) (xy 164.416419 115.713497)))
(arrow2a (pts (xy 163.829999 81.28) (xy 163.243579 82.406503)))
(arrow2b (pts (xy 163.829999 81.28) (xy 164.416419 82.406503)))
)
(dimension 50.8 (width 0.3048) (layer Dwgs.User)
(gr_text 50,800mm (at 134.62 72.034401) (layer Dwgs.User)
(effects (font (size 2.032 1.524) (thickness 0.3048)))
)
(feature1 (pts (xy 160.02 81.28) (xy 160.02 70.408801)))
(feature2 (pts (xy 109.22 81.28) (xy 109.22 70.408801)))
(crossbar (pts (xy 109.22 73.660001) (xy 160.02 73.660001)))
(arrow1a (pts (xy 160.02 73.660001) (xy 158.893497 74.246421)))
(arrow1b (pts (xy 160.02 73.660001) (xy 158.893497 73.073581)))
(arrow2a (pts (xy 109.22 73.660001) (xy 110.346503 74.246421)))
(arrow2b (pts (xy 109.22 73.660001) (xy 110.346503 73.073581)))
)
(segment (start 120.015 106.807) (end 122.428 106.807) (width 0.50038) (layer Front) (net 1))
(segment (start 122.428 106.807) (end 124.841 109.22) (width 0.50038) (layer Front) (net 1) (tstamp 55FB60AC))
(segment (start 114.681 95.758) (end 118.237 95.758) (width 0.50038) (layer Front) (net 1))
(via (at 120.015 106.807) (size 1.99898) (drill 0.29972) (layers Front Back) (net 1))
(segment (start 120.015 97.409) (end 120.015 106.807) (width 0.50038) (layer Back) (net 1) (tstamp 55FB604A))
(via (at 120.015 97.409) (size 1.99898) (drill 0.29972) (layers Front Back) (net 1))
(segment (start 119.888 97.409) (end 120.015 97.409) (width 0.50038) (layer Front) (net 1) (tstamp 55FB6048))