-
Notifications
You must be signed in to change notification settings - Fork 0
/
Really Synced 485.kicad_pcb
2260 lines (2218 loc) · 159 KB
/
Really Synced 485.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 4) (host pcbnew 4.0.6)
(general
(links 76)
(no_connects 0)
(area 0 0 0 0)
(thickness 1.6)
(drawings 15)
(tracks 267)
(zones 0)
(modules 34)
(nets 33)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.3048)
(user_trace_width 0.3048)
(user_trace_width 0.6096)
(trace_clearance 0.1524)
(zone_clearance 0.1524)
(zone_45_only no)
(trace_min 0.1524)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6858)
(via_drill 0.3302)
(via_min_size 0.6858)
(via_min_drill 0.3302)
(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.016 1.016)
(mod_edge_width 0.15)
(mod_text_size 0.635 0.635)
(mod_text_width 0.1524)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(visible_elements FFFEFF7F)
(pcbplotparams
(layerselection 0x00030_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 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 /RX)
(net 4 "Net-(D1-Pad1)")
(net 5 /TX)
(net 6 "Net-(D2-Pad1)")
(net 7 "Net-(D3-Pad1)")
(net 8 "Net-(D4-Pad2)")
(net 9 "Net-(D4-Pad1)")
(net 10 "Net-(D5-Pad2)")
(net 11 "Net-(D5-Pad1)")
(net 12 /ADDR0)
(net 13 /ADDR1)
(net 14 /ADDR2)
(net 15 /ADDR3)
(net 16 /RX_FULL)
(net 17 /RX_HALF)
(net 18 /TX_FULL)
(net 19 /TX_HALF)
(net 20 /B)
(net 21 /A)
(net 22 /Z)
(net 23 /Y)
(net 24 /B_HALF)
(net 25 /A_HALF)
(net 26 "Net-(J4-Pad2)")
(net 27 "Net-(J4-Pad1)")
(net 28 /~RX_EN)
(net 29 /TX_EN)
(net 30 "Net-(U1-Pad15)")
(net 31 "Net-(U1-Pad17)")
(net 32 /3.3V)
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net /3.3V)
(add_net /A)
(add_net /ADDR0)
(add_net /ADDR1)
(add_net /ADDR2)
(add_net /ADDR3)
(add_net /A_HALF)
(add_net /B)
(add_net /B_HALF)
(add_net /RX)
(add_net /RX_FULL)
(add_net /RX_HALF)
(add_net /TX)
(add_net /TX_EN)
(add_net /TX_FULL)
(add_net /TX_HALF)
(add_net /Y)
(add_net /Z)
(add_net /~RX_EN)
(add_net GND)
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D2-Pad1)")
(add_net "Net-(D3-Pad1)")
(add_net "Net-(D4-Pad1)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(D5-Pad1)")
(add_net "Net-(D5-Pad2)")
(add_net "Net-(J4-Pad1)")
(add_net "Net-(J4-Pad2)")
(add_net "Net-(U1-Pad15)")
(add_net "Net-(U1-Pad17)")
)
(module ReallySynced:54602-908LF (layer F.Cu) (tedit 592CA546) (tstamp 592C585B)
(at 151.13 120.65 90)
(path /592C22CF)
(fp_text reference J4 (at 8.4455 14.351 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_02X04 (at 0 13.97 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -6.985 -3.81) (end -6.985 -3.175) (layer F.SilkS) (width 0.15))
(fp_line (start -7.62 15.24) (end 7.62 15.24) (layer F.SilkS) (width 0.15))
(fp_line (start 7.62 15.24) (end 7.62 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 7.62 -2.54) (end -7.62 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start -7.62 15.24) (end -7.62 -2.54) (layer F.SilkS) (width 0.15))
(pad "" np_thru_hole circle (at 5.715 7.62 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask))
(pad 8 thru_hole circle (at 5.08 -1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 20 /B))
(pad 7 thru_hole circle (at 3.81 1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 21 /A))
(pad 6 thru_hole circle (at 2.54 -1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 22 /Z))
(pad 5 thru_hole circle (at 1.27 1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 23 /Y))
(pad 4 thru_hole circle (at 0 -1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 24 /B_HALF))
(pad 3 thru_hole circle (at -1.27 1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 25 /A_HALF))
(pad 2 thru_hole circle (at -2.54 -1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 26 "Net-(J4-Pad2)"))
(pad 1 thru_hole circle (at -3.81 1.27 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 27 "Net-(J4-Pad1)"))
(pad "" np_thru_hole circle (at -5.715 7.62 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask))
)
(module Capacitors_SMD:C_0805 (layer B.Cu) (tedit 592CA5F3) (tstamp 592C5805)
(at 145.796 107.188 270)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(path /592EAC9B)
(attr smd)
(fp_text reference C1 (at 0.254 1.905 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value .1U (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.5 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -1.75 0.88) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 0.88) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 -0.87) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 -0.87) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1 0 270) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
(net 1 +5V))
(pad 2 smd rect (at 1 0 270) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model Capacitors_SMD.3dshapes/C_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0805 (layer B.Cu) (tedit 592CA619) (tstamp 592C580B)
(at 146.177 124.333 90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(path /592EBB05)
(attr smd)
(fp_text reference C2 (at 0.127 -1.778 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value .1U (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.5 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -1.75 0.88) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 0.88) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 -0.87) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.75 -0.87) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1 0 90) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 2 smd rect (at 1 0 90) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
(net 1 +5V))
(model Capacitors_SMD.3dshapes/C_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 592CA52D) (tstamp 592C5811)
(at 141.097 118.745 270)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /592BA9B9)
(attr smd)
(fp_text reference D1 (at 2.6035 0 360) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.15)))
)
(fp_text value LED (at 0 1.55 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.8 -0.7) (end -1.8 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 0.7) (end 1 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.7) (end 1 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.85) (end 1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.95 0.85) (end -1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 0.85) (end -1.95 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -0.85) (end 1.95 -0.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 3 /RX))
(pad 1 smd rect (at -1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(D1-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 592CA515) (tstamp 592C5817)
(at 143.002 118.745 270)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /592BABA7)
(attr smd)
(fp_text reference D2 (at 2.54 0.127 360) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.15)))
)
(fp_text value LED (at 0 1.55 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.8 -0.7) (end -1.8 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 0.7) (end 1 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.7) (end 1 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.85) (end 1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.95 0.85) (end -1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 0.85) (end -1.95 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -0.85) (end 1.95 -0.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 5 /TX))
(pad 1 smd rect (at -1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 6 "Net-(D2-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 592CA527) (tstamp 592C581D)
(at 139.192 118.745 270)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /592BA0D5)
(attr smd)
(fp_text reference D3 (at 2.6035 0.127 360) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.15)))
)
(fp_text value LED (at 0 1.55 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.8 -0.7) (end -1.8 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 0.7) (end 1 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.7) (end 1 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.85) (end 1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.95 0.85) (end -1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 0.85) (end -1.95 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -0.85) (end 1.95 -0.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 1 +5V))
(pad 1 smd rect (at -1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(D3-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 592CA53B) (tstamp 592C5823)
(at 144.907 118.745 270)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /592E6FC9)
(attr smd)
(fp_text reference D4 (at 2.6035 0 360) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.15)))
)
(fp_text value LED (at 0 1.55 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.8 -0.7) (end -1.8 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 0.7) (end 1 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.7) (end 1 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.85) (end 1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.95 0.85) (end -1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 0.85) (end -1.95 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -0.85) (end 1.95 -0.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(D4-Pad2)"))
(pad 1 smd rect (at -1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(D4-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 592CA541) (tstamp 592C5829)
(at 146.812 118.745 270)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /592E6FDB)
(attr smd)
(fp_text reference D5 (at 2.54 0 360) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.15)))
)
(fp_text value LED (at 0 1.55 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.8 -0.7) (end -1.8 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 0.7) (end 1 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.7) (end 1 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.85) (end 1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.95 0.85) (end -1.95 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 0.85) (end -1.95 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -0.85) (end 1.95 -0.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(D5-Pad2)"))
(pad 1 smd rect (at -1.1 0 90) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(D5-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module ReallySynced:195-4MST (layer F.Cu) (tedit 592CA5B8) (tstamp 592C583A)
(at 134.112 109.601)
(path /592BE89C)
(fp_text reference J1 (at 7.5565 -5.588) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_02X04 (at 0 7.62) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -6.35 7.62) (end -6.35 8.255) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -3.81 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 GND))
(pad 2 thru_hole circle (at -3.81 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 12 /ADDR0))
(pad 3 thru_hole circle (at -1.27 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 GND))
(pad 4 thru_hole circle (at -1.27 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 13 /ADDR1))
(pad 5 thru_hole circle (at 1.27 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 GND))
(pad 6 thru_hole circle (at 1.27 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 14 /ADDR2))
(pad 7 thru_hole circle (at 3.81 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 GND))
(pad 8 thru_hole circle (at 3.81 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 15 /ADDR3))
)
(module Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm (layer F.Cu) (tedit 592CA3F1) (tstamp 592C5841)
(at 134.62 120.777)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path /592D0693)
(fp_text reference J2 (at 0 -2.33) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 7.41) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end 1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 6.35) (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 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 6.41) (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 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 6.85) (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) hide
(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 16 /RX_FULL))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 /RX))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 /RX_HALF))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm (layer F.Cu) (tedit 592CA3E9) (tstamp 592C5848)
(at 130.429 120.904)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path /592CFD2A)
(fp_text reference J3 (at 0 -2.33) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 7.41) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end 1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 6.35) (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 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 6.41) (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 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 6.85) (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) hide
(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 18 /TX_FULL))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 /TX))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 /TX_HALF))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA629) (tstamp 592C5861)
(at 141.097 118.491 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BA9BF)
(attr smd)
(fp_text reference R1 (at 3.2385 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 220 (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 4 "Net-(D1-Pad1)"))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA650) (tstamp 592C5867)
(at 130.175 109.601 90)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BF77A)
(attr smd)
(fp_text reference R2 (at 5.5245 0.1905 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5K (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 32 /3.3V))
(pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 12 /ADDR0))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA64B) (tstamp 592C586D)
(at 132.842 109.474 90)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BEDC1)
(attr smd)
(fp_text reference R3 (at 5.3975 0 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5K (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 32 /3.3V))
(pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 13 /ADDR1))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA630) (tstamp 592C5873)
(at 143.002 118.491 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BABAD)
(attr smd)
(fp_text reference R4 (at 3.2385 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 220 (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 6 "Net-(D2-Pad1)"))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA655) (tstamp 592C5879)
(at 135.382 109.474 90)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BF9A5)
(attr smd)
(fp_text reference R5 (at 5.3975 0.127 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5K (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 32 /3.3V))
(pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 14 /ADDR2))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA659) (tstamp 592C587F)
(at 137.922 109.474 90)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BF9F5)
(attr smd)
(fp_text reference R6 (at 5.3975 0.0635 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5K (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 32 /3.3V))
(pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 15 /ADDR3))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA622) (tstamp 592C5885)
(at 139.192 118.491 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BA21D)
(attr smd)
(fp_text reference R7 (at 3.302 -0.0635 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 220 (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 7 "Net-(D3-Pad1)"))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA636) (tstamp 592C588B)
(at 144.907 118.491 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592E6FCF)
(attr smd)
(fp_text reference R8 (at 3.2385 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 220 (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 9 "Net-(D4-Pad1)"))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA63B) (tstamp 592C5891)
(at 146.812 118.491 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592E6FE1)
(attr smd)
(fp_text reference R9 (at 3.2385 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 220 (at 0 -1.75 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 11 "Net-(D5-Pad1)"))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 58E0A804) (tstamp 592C5897)
(at 151.2824 113.4364)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592DA3F8)
(attr smd)
(fp_text reference R10 (at 0 1.7) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 120 (at 0 -1.75) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 20 /B))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 21 /A))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer B.Cu) (tedit 592CA5FC) (tstamp 592C589D)
(at 154.79776 117.89664 90)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592BD2F1)
(attr smd)
(fp_text reference R11 (at 3.72364 0.07874 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 120 (at 0 -1.75 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 23 /Y))
(pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 22 /Z))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 592CA54E) (tstamp 592C58A3)
(at 157.2768 111.76)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /592DA3FE)
(attr smd)
(fp_text reference R12 (at 4.0767 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value NOPE (at 0 1.75) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer F.SilkS) (width 0.12))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer F.SilkS) (width 0.12))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))