-
Notifications
You must be signed in to change notification settings - Fork 1
/
TLPHnodeV2.kicad_pcb
2037 lines (1992 loc) · 127 KB
/
TLPHnodeV2.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 20160815) (host pcbnew no-vcs-found-7448~57~ubuntu16.04.1)
(general
(links 96)
(no_connects 0)
(area 122.822599 80.399999 161.332757 104.5949)
(thickness 1.6)
(drawings 9)
(tracks 298)
(zones 0)
(modules 35)
(nets 24)
)
(page A4)
(layers
(0 F.Cu signal)
(1 In1.Cu.GND power)
(2 In2.Cu.VCC power)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.14478)
(user_trace_width 0.15)
(user_trace_width 0.175)
(user_trace_width 0.2)
(trace_clearance 0.14478)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.127)
(segment_width 0.2)
(edge_width 0.2)
(via_size 0.508)
(via_drill 0.254)
(via_min_size 0.4572)
(via_min_drill 0.254)
(user_via 0.5 0.254)
(user_via 0.55 0.27)
(user_via 0.6 0.28)
(uvia_size 0.508)
(uvia_drill 0.254)
(uvias_allowed no)
(uvia_min_size 0)
(uvia_min_drill 0)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 0.75 0.75)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 94.5 52)
(grid_origin 130.5 80.5)
(visible_elements FFFEFF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory CAM/))
)
(net 0 "")
(net 1 GND)
(net 2 VCC)
(net 3 "Net-(C4-Pad1)")
(net 4 "Net-(R1-Pad2)")
(net 5 "Net-(R2-Pad2)")
(net 6 "Net-(R3-Pad2)")
(net 7 "Net-(R4-Pad2)")
(net 8 "Net-(R6-Pad1)")
(net 9 "Net-(R7-Pad1)")
(net 10 "Net-(R11-Pad1)")
(net 11 +BATT)
(net 12 /power/VDD)
(net 13 /node/PGM)
(net 14 /node/RXD)
(net 15 /node/TXD)
(net 16 /node/I2C_SDA)
(net 17 /node/CHRG)
(net 18 /node/I2C_SCL)
(net 19 "Net-(R12-Pad2)")
(net 20 /node/CTRL)
(net 21 "Net-(R16-Pad1)")
(net 22 "Net-(R17-Pad2)")
(net 23 +3V3)
(net_class Default "This is the default net class."
(clearance 0.14478)
(trace_width 0.14478)
(via_dia 0.508)
(via_drill 0.254)
(uvia_dia 0.508)
(uvia_drill 0.254)
(diff_pair_gap 0.14478)
(diff_pair_width 0.14478)
(add_net +3V3)
(add_net +BATT)
(add_net /node/CHRG)
(add_net /node/CTRL)
(add_net /node/I2C_SCL)
(add_net /node/I2C_SDA)
(add_net /node/PGM)
(add_net /node/RXD)
(add_net /node/TXD)
(add_net /power/VDD)
(add_net GND)
(add_net "Net-(C4-Pad1)")
(add_net "Net-(R1-Pad2)")
(add_net "Net-(R11-Pad1)")
(add_net "Net-(R12-Pad2)")
(add_net "Net-(R16-Pad1)")
(add_net "Net-(R17-Pad2)")
(add_net "Net-(R2-Pad2)")
(add_net "Net-(R3-Pad2)")
(add_net "Net-(R4-Pad2)")
(add_net "Net-(R6-Pad1)")
(add_net "Net-(R7-Pad1)")
(add_net VCC)
)
(net_class 2layerMin ""
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.6858)
(uvia_drill 0.3302)
(diff_pair_gap 0.1524)
(diff_pair_width 0.1524)
)
(net_class 4layerMin ""
(clearance 0.127)
(trace_width 0.127)
(via_dia 0.4572)
(via_drill 0.254)
(uvia_dia 0.4572)
(uvia_drill 0.254)
(diff_pair_gap 0.127)
(diff_pair_width 0.127)
)
(module ESP8266:ESP-12E (layer B.Cu) (tedit 584B8C0C) (tstamp 584A0E0D)
(at 131.75 83.75 270)
(descr "Module, ESP-8266, ESP-12, 16 pad, SMD")
(tags "Module ESP-8266 ESP8266")
(path /58648CF6/583B4FA8)
(fp_text reference U5 (at -1.06 -16.49 270) (layer B.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)) (justify mirror))
)
(fp_text value ESP-12E (at 8 -1 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.25 0.5) (end -2.25 8.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.25 8.75) (end 15.25 8.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 15.25 8.75) (end 16.25 8.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 16.25 8.75) (end 16.25 -16) (layer B.CrtYd) (width 0.05))
(fp_line (start 16.25 -16) (end -2.25 -16) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.25 -16) (end -2.25 0.5) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.016 8.382) (end 14.986 8.382) (layer B.CrtYd) (width 0.1524))
(fp_line (start 14.986 8.382) (end 14.986 0.889) (layer B.CrtYd) (width 0.1524))
(fp_line (start -1.016 8.382) (end -1.016 1.016) (layer B.CrtYd) (width 0.1524))
(fp_line (start -1.016 -14.859) (end -1.016 -15.621) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.016 -15.621) (end 14.986 -15.621) (layer B.SilkS) (width 0.1524))
(fp_line (start 14.986 -15.621) (end 14.986 -14.859) (layer B.SilkS) (width 0.1524))
(fp_line (start 14.992 8.4) (end -1.008 2.6) (layer B.CrtYd) (width 0.1524))
(fp_line (start -1.008 8.4) (end 14.992 2.6) (layer B.CrtYd) (width 0.1524))
(fp_text user "No Copper" (at 6.892 5.4) (layer B.CrtYd)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.008 2.6) (end 14.992 2.6) (layer B.CrtYd) (width 0.1524))
(fp_line (start 15 8.4) (end 15 -15.6) (layer B.Fab) (width 0.05))
(fp_line (start 14.992 -15.6) (end -1.008 -15.6) (layer B.Fab) (width 0.05))
(fp_line (start -1.008 -15.6) (end -1.008 8.4) (layer B.Fab) (width 0.05))
(fp_line (start -1.008 8.4) (end 14.992 8.4) (layer B.Fab) (width 0.05))
(pad 1 thru_hole rect (at 0 0 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 3 "Net-(C4-Pad1)"))
(pad 2 thru_hole oval (at 0 -2 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS))
(pad 3 thru_hole oval (at 0 -4 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 7 "Net-(R4-Pad2)"))
(pad 4 thru_hole oval (at 0 -6 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 3 "Net-(C4-Pad1)"))
(pad 5 thru_hole oval (at 0 -8 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 18 /node/I2C_SCL))
(pad 6 thru_hole oval (at 0 -10 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 9 "Net-(R7-Pad1)"))
(pad 7 thru_hole oval (at 0 -12 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 8 "Net-(R6-Pad1)"))
(pad 8 thru_hole oval (at 0 -14 270) (size 2.5 1.1) (drill 0.65 (offset -0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 2 VCC))
(pad 9 thru_hole oval (at 14 -14 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 1 GND))
(pad 10 thru_hole oval (at 14 -12 270) (size 2.5 1.1) (drill 0.65 (offset 0.6 0)) (layers *.Cu *.Mask B.SilkS)
(net 10 "Net-(R11-Pad1)"))
(pad 11 thru_hole oval (at 14 -10 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 16 /node/I2C_SDA))
(pad 12 thru_hole oval (at 14 -8 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 13 /node/PGM))
(pad 13 thru_hole oval (at 14 -6 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 17 /node/CHRG))
(pad 14 thru_hole oval (at 14 -4 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 20 /node/CTRL))
(pad 15 thru_hole oval (at 14 -2 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 14 /node/RXD))
(pad 16 thru_hole oval (at 14 0 270) (size 2.5 1.1) (drill 0.65 (offset 0.7 0)) (layers *.Cu *.Mask B.SilkS)
(net 15 /node/TXD))
(pad 17 smd oval (at 1.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(pad 18 smd oval (at 3.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(pad 19 smd oval (at 5.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(pad 20 smd oval (at 7.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(pad 21 smd oval (at 9.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(pad 22 smd oval (at 11.99 -15.75 180) (size 2.4 1.1) (layers B.Cu B.Paste B.Mask))
(model ${ESPLIB}/ESP8266.3dshapes/ESP-12.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer F.Cu) (tedit 5415D631) (tstamp 584A0D3E)
(at 146 88.5)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /58648CF6/584846C5)
(attr smd)
(fp_text reference C2 (at 0.5 -1.25) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value "0.1 uF" (at 0 1.9) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end -1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.15))
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer F.Cu) (tedit 584B8B42) (tstamp 584A0D44)
(at 150.75 88.25)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /58648CF6/583BE718)
(attr smd)
(fp_text reference C3 (at 2.5 0) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value "1 uF" (at 0 1.9) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end -1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.15))
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer F.Cu) (tedit 585E1135) (tstamp 584A0D4A)
(at 132 86 270)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /58648CF6/583B653A)
(attr smd)
(fp_text reference C4 (at 0 -1.3 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value "0.1 uF" (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.15))
(fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end -1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.15))
(pad 2 smd rect (at 0.75 0 270) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -0.75 0 270) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer F.Cu) (tedit 584B895F) (tstamp 584A0D50)
(at 142.94 89.38 270)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /58648CF6/583BE33E)
(attr smd)
(fp_text reference C5 (at -0.48 -1.16 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value "0.1 uF" (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end -1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.15))
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 270) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 270) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0603 (layer F.Cu) (tedit 585E135E) (tstamp 584A0D56)
(at 132.75 88.5 180)
(descr "Capacitor SMD 0603, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0603")
(path /58648CF6/583BE035)
(attr smd)
(fp_text reference C6 (at -2 0 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value "0.1 uF" (at 0 1.9 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.15))
(fp_line (start 1.45 -0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end -1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 0.75) (end 1.45 0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -0.75) (end 1.45 -0.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.15))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.15))
(pad 2 smd rect (at 0.75 0 180) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -0.75 0 180) (size 0.8 0.75) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 584B8944) (tstamp 584A0D6F)
(at 137.75 92.75 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/58483D82)
(attr smd)
(fp_text reference R1 (at -0.04 -2.75 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(R1-Pad2)"))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 584B8931) (tstamp 584A0D75)
(at 137 89.55 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/58484063)
(attr smd)
(fp_text reference R2 (at -0.1 1.33 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(R2-Pad2)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E1371) (tstamp 584A0D7B)
(at 139.75 92.75 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/58483449)
(attr smd)
(fp_text reference R3 (at -0.05 -3.45 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 6 "Net-(R3-Pad2)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E110C) (tstamp 584A0D81)
(at 137 86 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583B6490)
(attr smd)
(fp_text reference R4 (at 0 -2.3 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(R4-Pad2)"))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E1107) (tstamp 584A0D87)
(at 138.75 86 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583B6506)
(attr smd)
(fp_text reference R5 (at 0 -3.05 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 584B8BF7) (tstamp 584A0D8D)
(at 143.92 86.01 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BCA9C)
(attr smd)
(fp_text reference R6 (at -0.21 -2.78 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(R6-Pad1)"))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E10F5) (tstamp 584A0D93)
(at 142.25 86 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BCB48)
(attr smd)
(fp_text reference R7 (at -0.2 -3.25 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(R7-Pad1)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E1149) (tstamp 584A0D99)
(at 141.75 92.75 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BB767)
(attr smd)
(fp_text reference R8 (at 0.67 -1.5 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 16 /node/I2C_SDA))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 58729800) (tstamp 584A0D9F)
(at 138.5 95.5 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BD73B)
(attr smd)
(fp_text reference R9 (at -0.04 3.07 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 17 /node/CHRG))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E1101) (tstamp 584A0DA5)
(at 140.5 86 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BB7BB)
(attr smd)
(fp_text reference R10 (at -1.9 -0.1 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 18 /node/I2C_SCL))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E114F) (tstamp 584A0DAB)
(at 144.5 96.25)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BC6B1)
(attr smd)
(fp_text reference R11 (at 0 -1.5) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(R11-Pad1)"))
(pad 2 smd rect (at 0.75 0) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 585E1095) (tstamp 584A0DB1)
(at 132.5 94.25 90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BB80B)
(attr smd)
(fp_text reference R12 (at -0.25 -1.3 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(R12-Pad2)"))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 584B8927) (tstamp 584A0DB7)
(at 140.25 95.5 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58648CF6/583BD162)
(attr smd)
(fp_text reference R13 (at 0.25 -1.5 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value 4.7k (at 0 1.9 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end -1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 0.8) (end 1.3 0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 13 /node/PGM))
(pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module rockingdlabs:ESwitch-SMD-4 (layer F.Cu) (tedit 584B8B19) (tstamp 584A0DC9)
(at 153.5 84.25 180)
(path /58648CF6/583B60A2)
(fp_text reference SW1 (at -0.14 0.4 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value Reset (at 0.25 -5.35 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.75 2.75) (end -2.75 -2.8) (layer F.SilkS) (width 0.05))
(fp_line (start 2.75 2.75) (end -2.75 2.75) (layer F.SilkS) (width 0.05))
(fp_line (start 2.75 -2.75) (end 2.75 2.75) (layer F.SilkS) (width 0.05))
(fp_line (start -2.75 -2.75) (end 2.75 -2.75) (layer F.SilkS) (width 0.05))
(pad 2 smd rect (at 2.45 1.75 180) (size 0.2 1.1) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 1 smd rect (at 2.45 -1.75 180) (size 0.2 1.1) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 2 smd rect (at -2.45 1.75 180) (size 0.2 1.1) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 1 smd rect (at -2.45 -1.75 180) (size 0.2 1.1) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 2 smd rect (at 2.2 1.75 180) (size 0.7 0.7) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 2 smd rect (at -2.2 1.75 180) (size 0.7 0.7) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 1 smd rect (at 2.2 -1.75 180) (size 0.7 0.7) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -2.2 -1.75 180) (size 0.7 0.7) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model ${ROCKINGDLIB}/rockingdlabs.3dshapes/TL3315NFxxxQ.stp
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module rockingdlabs:NCP703-TSOP-5 (layer F.Cu) (tedit 585DC19B) (tstamp 584A0DD2)
(at 150.81 90.88 180)
(path /58648CF6/58460C40)
(fp_text reference U1 (at 2.42 -0.84 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value NCP703 (at 0.7 -4.2 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.6 0.6) (end 1.4 0.6) (layer F.SilkS) (width 0.05))
(fp_line (start 1.6 -0.8) (end 1.6 0.6) (layer F.SilkS) (width 0.05))
(fp_line (start 1.5 -0.8) (end 1.6 -0.8) (layer F.SilkS) (width 0.05))
(fp_line (start 1.7 -1.05) (end 1.8 -1.05) (layer F.SilkS) (width 0.05))
(fp_line (start 1.7 -1) (end 1.7 -1.05) (layer F.SilkS) (width 0.05))
(fp_line (start 1.7 -1.1) (end 1.7 -1) (layer F.SilkS) (width 0.05))
(fp_line (start 1.8 -1.1) (end 1.7 -1.1) (layer F.SilkS) (width 0.05))
(fp_line (start 1.8 -1) (end 1.8 -1.1) (layer F.SilkS) (width 0.05))
(fp_line (start 1.7 -1) (end 1.8 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -1.5 0.7) (end -1.4 0.7) (layer F.SilkS) (width 0.05))
(fp_line (start -1.5 -0.8) (end -1.5 0.7) (layer F.SilkS) (width 0.05))
(fp_line (start -1.4 -0.8) (end -1.5 -0.8) (layer F.SilkS) (width 0.05))
(pad 5 smd rect (at 0.95 1.2 180) (size 0.7 1) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 4 smd rect (at -0.95 1.2 180) (size 0.7 1) (layers F.Cu F.Paste F.Mask))
(pad 3 smd rect (at -0.95 -1.2 180) (size 0.7 1) (layers F.Cu F.Paste F.Mask)
(net 11 +BATT))
(pad 2 smd rect (at 0 -1.2 180) (size 0.7 1) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at 0.95 -1.2 180) (size 0.7 1) (layers F.Cu F.Paste F.Mask)
(net 11 +BATT))
(model ${ROCKINGDLIB}/rockingdlabs.3dshapes/SW3dPS-TSOT23-5.STEP
(at (xyz 0.02952755905511811 -0.1181102362204725 0.03937007874015748))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module rockingdlabs:LD39130S-FlipChip-4 (layer F.Cu) (tedit 584B92EA) (tstamp 584A0DDA)
(at 150.83 90.8 90)
(path /58648CF6/5845CCAC)
(fp_text reference U2 (at 0.8 -2.33 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value LD39130S (at 0.25 -4.25 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.35 -0.45) (end -0.35 -0.35) (layer F.SilkS) (width 0.05))
(fp_line (start -0.45 -0.35) (end -0.35 -0.35) (layer F.SilkS) (width 0.05))
(fp_line (start -0.35 -0.35) (end -0.35 -0.1) (layer F.SilkS) (width 0.05))
(fp_line (start -0.1 -0.35) (end -0.35 -0.35) (layer F.SilkS) (width 0.05))
(fp_line (start -0.35 0.35) (end -0.1 0.35) (layer F.SilkS) (width 0.05))
(fp_line (start -0.35 0.1) (end -0.35 0.35) (layer F.SilkS) (width 0.05))
(fp_line (start 0.35 -0.35) (end 0.35 -0.1) (layer F.SilkS) (width 0.05))
(fp_line (start 0.1 -0.35) (end 0.35 -0.35) (layer F.SilkS) (width 0.05))
(fp_line (start 0.35 0.35) (end 0.1 0.35) (layer F.SilkS) (width 0.05))
(fp_line (start 0.35 0.1) (end 0.35 0.35) (layer F.SilkS) (width 0.05))
(pad A1 smd circle (at -0.2 -0.2 90) (size 0.22 0.22) (layers F.Cu F.Paste F.Mask)
(net 11 +BATT))
(pad A2 smd circle (at 0.2 -0.2 90) (size 0.22 0.22) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad B1 smd circle (at -0.2 0.2 90) (size 0.22 0.22) (layers F.Cu F.Paste F.Mask)
(net 11 +BATT))
(pad B2 smd circle (at 0.2 0.2 90) (size 0.22 0.22) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model ${ROCKINGDLIB}/rockingdlabs.3dshapes/LD39130S-FlipChip-4.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module rockingdlabs:LPS25HB-HLGA-10L-2.5x2.5mm (layer F.Cu) (tedit 584B8B90) (tstamp 584A0DE8)
(at 140.75 89.75 270)
(path /58648CF6/584A1073)
(fp_text reference U3 (at 0.95 1.85 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(fp_text value LPS25HB (at -0.85 -4.1 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 1.25) (end -1.25 -1.25) (layer F.SilkS) (width 0.05))
(fp_line (start 1.25 1.25) (end -1.25 1.25) (layer F.SilkS) (width 0.05))
(fp_line (start 1.25 -1.25) (end 1.25 1.25) (layer F.SilkS) (width 0.05))
(fp_line (start -1.25 -1.25) (end 1.25 -1.25) (layer F.SilkS) (width 0.05))
(fp_line (start -1.05 -1) (end -1.25 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -1.05 -1.25) (end -1.05 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -1.2 -1.25) (end -1.2 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -1.15 -1.25) (end -1.15 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -1.1 -1.25) (end -1.1 -1) (layer F.SilkS) (width 0.05))
(pad 10 smd rect (at -0.6 -0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 9 smd rect (at 0 -0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 8 smd rect (at 0.6 -0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 5 smd rect (at 0.6 0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(R2-Pad2)"))
(pad 4 smd rect (at 0 0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 16 /node/I2C_SDA))
(pad 3 smd rect (at -0.6 0.92 270) (size 0.4 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 6 smd rect (at 0.92 0.3 270) (size 0.55 0.4) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(R1-Pad2)"))
(pad 7 smd rect (at 0.92 -0.3 270) (size 0.55 0.4) (layers F.Cu F.Paste F.Mask)
(net 6 "Net-(R3-Pad2)"))
(pad 2 smd rect (at -0.92 0.3 270) (size 0.55 0.4) (layers F.Cu F.Paste F.Mask)
(net 18 /node/I2C_SCL))
(pad 1 smd rect (at -0.92 -0.3 270) (size 0.55 0.4) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model ${ROCKINGDLIB}/rockingdlabs.3dshapes/HCLGA-10L_2.5x2.5mm.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))