-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFaucetLED.kicad_pcb
2519 lines (2465 loc) · 148 KB
/
FaucetLED.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 4) (host pcbnew 4.0.5)
(general
(links 116)
(no_connects 0)
(area 101.524999 76.124999 136.219001 104.723001)
(thickness 1.6)
(drawings 16)
(tracks 455)
(zones 0)
(modules 44)
(nets 43)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(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 hide)
(44 Edge.Cuts user)
)
(setup
(last_trace_width 0.254)
(user_trace_width 0.1524)
(user_trace_width 0.254)
(user_trace_width 0.508)
(trace_clearance 0.1524)
(zone_clearance 0.508)
(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)
(user_via 0.6858 0.3302)
(user_via 0.6858 0.3302)
(user_via 1.016 0.508)
(uvia_size 0.762)
(uvia_drill 0.508)
(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.12)
(pad_size 2.7 2.7)
(pad_drill 2.7)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 GND)
(net 2 +3V3)
(net 3 /LED_B)
(net 4 /LED_R)
(net 5 /LED_G)
(net 6 +BATT)
(net 7 /RESET)
(net 8 /TSC_SAMPLING)
(net 9 /BATT_2)
(net 10 /THERM_SENSE)
(net 11 /THERM_SW)
(net 12 /TSC_IN)
(net 13 /SWDIO)
(net 14 /SWCLK)
(net 15 "Net-(R1-Pad2)")
(net 16 "Net-(R4-Pad1)")
(net 17 /LED_DBG)
(net 18 /MCO)
(net 19 "Net-(BT1-Pad1)")
(net 20 "Net-(BT2-Pad1)")
(net 21 "Net-(D2-Pad2)")
(net 22 "Net-(C10-Pad1)")
(net 23 "Net-(Q1-Pad3)")
(net 24 "Net-(Q2-Pad3)")
(net 25 "Net-(Q3-Pad3)")
(net 26 /LED_R_CONN)
(net 27 /LED_G_CONN)
(net 28 /LED_B_CONN)
(net 29 /UART_TX)
(net 30 /UART_RX)
(net 31 "Net-(U2-Pad3)")
(net 32 "Net-(U2-Pad10)")
(net 33 "Net-(U2-Pad11)")
(net 34 "Net-(U2-Pad12)")
(net 35 "Net-(U2-Pad13)")
(net 36 "Net-(U2-Pad14)")
(net 37 "Net-(U2-Pad21)")
(net 38 "Net-(U2-Pad22)")
(net 39 "Net-(U2-Pad26)")
(net 40 "Net-(U2-Pad27)")
(net 41 "Net-(U2-Pad28)")
(net 42 +3.3VA)
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.254)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
(add_net +3.3VA)
(add_net /BATT_2)
(add_net /LED_B)
(add_net /LED_B_CONN)
(add_net /LED_DBG)
(add_net /LED_G)
(add_net /LED_G_CONN)
(add_net /LED_R)
(add_net /LED_R_CONN)
(add_net /MCO)
(add_net /RESET)
(add_net /SWCLK)
(add_net /SWDIO)
(add_net /THERM_SENSE)
(add_net /THERM_SW)
(add_net /TSC_IN)
(add_net /TSC_SAMPLING)
(add_net /UART_RX)
(add_net /UART_TX)
(add_net GND)
(add_net "Net-(BT1-Pad1)")
(add_net "Net-(BT2-Pad1)")
(add_net "Net-(C10-Pad1)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(Q1-Pad3)")
(add_net "Net-(Q2-Pad3)")
(add_net "Net-(Q3-Pad3)")
(add_net "Net-(R1-Pad2)")
(add_net "Net-(R4-Pad1)")
(add_net "Net-(U2-Pad10)")
(add_net "Net-(U2-Pad11)")
(add_net "Net-(U2-Pad12)")
(add_net "Net-(U2-Pad13)")
(add_net "Net-(U2-Pad14)")
(add_net "Net-(U2-Pad21)")
(add_net "Net-(U2-Pad22)")
(add_net "Net-(U2-Pad26)")
(add_net "Net-(U2-Pad27)")
(add_net "Net-(U2-Pad28)")
(add_net "Net-(U2-Pad3)")
)
(net_class Minimum ""
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
)
(net_class Power ""
(clearance 0.1524)
(trace_width 0.508)
(via_dia 1.016)
(via_drill 0.508)
(uvia_dia 0.762)
(uvia_drill 0.508)
(add_net +3V3)
(add_net +BATT)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 58B35D39) (tstamp 58B350CE)
(at 113.0554 103.1494)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /58B36076)
(fp_text reference P3 (at -0.0508 1.8288) (layer F.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value CONN_01X01 (at 0 2.39) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (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.27 1.27) (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.6 -1.6) (end -1.6 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 1.6) (end 1.6 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 1.6) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +3V3))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm (layer B.Cu) (tedit 58B21526) (tstamp 58AE4D05)
(at 134.62 77.724 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /58AAD9F8)
(fp_text reference P4 (at 2.1336 0 180) (layer B.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_text value CONN_01X03 (at 0 -10.01 180) (layer B.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_line (start -1.27 1.27) (end -1.27 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -8.89) (end 1.27 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -8.89) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.6 1.6) (end -1.6 -9.2) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.6 -9.2) (end 1.6 -9.2) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 -9.2) (end 1.6 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 1.6) (end -1.6 1.6) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 /SWCLK))
(pad 2 thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 /SWDIO))
(pad 3 thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /RESET))
(pad 4 thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x04_Pitch2.54mm.wrl
(at (xyz 0 -0.15 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer B.Cu) (tedit 58B21512) (tstamp 58AE5D18)
(at 131.7244 85.344)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /58AE72EE)
(fp_text reference P5 (at -2.6924 -2.4384) (layer B.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_text value CONN_01X02 (at 0 -4.93) (layer B.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_line (start -1.27 1.27) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -3.81) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -3.81) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.6 1.6) (end -1.6 -4.1) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.6 -4.1) (end 1.6 -4.1) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 -4.1) (end 1.6 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 1.6) (end -1.6 1.6) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 /UART_TX))
(pad 2 thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 /UART_RX))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer B.Cu) (tedit 58B2148D) (tstamp 58AE6096)
(at 134.6708 103.1748 180)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(path /58AE7B4F)
(fp_text reference P6 (at 1.9812 0 180) (layer B.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_text value CONN_01X01 (at 0 -2.39 180) (layer B.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_line (start -1.27 1.27) (end -1.27 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.6 1.6) (end -1.6 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.6 -1.6) (end 1.6 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 -1.6) (end 1.6 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.6 1.6) (end -1.6 1.6) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module components:Keystone_3020_2x2016-CoinCell locked (layer B.Cu) (tedit 58B21456) (tstamp 58AA70F3)
(at 118.8212 89.662 180)
(descr http://www.keyelco.com/product-pdf.cfm?p=14028)
(tags "Keystone type 1058 coin cell retainer")
(path /5857029D)
(attr smd)
(fp_text reference BT1 (at 0 -7.62 180) (layer B.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_text value CR2016x2 (at 0 9.398 180) (layer B.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)) (justify mirror))
)
(fp_arc (start 0 0) (end 11.06 -4.11) (angle -139.2) (layer B.CrtYd) (width 0.05))
(fp_arc (start 0 0) (end -11.06 4.11) (angle -139.2) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.06 -4.11) (end 16.45 -4.11) (layer B.CrtYd) (width 0.05))
(fp_line (start 16.45 -4.11) (end 16.45 4.11) (layer B.CrtYd) (width 0.05))
(fp_line (start 16.45 4.11) (end 11.06 4.11) (layer B.CrtYd) (width 0.05))
(fp_line (start -16.45 4.11) (end -11.06 4.11) (layer B.CrtYd) (width 0.05))
(fp_line (start -16.45 4.11) (end -16.45 -4.11) (layer B.CrtYd) (width 0.05))
(fp_line (start -16.45 -4.11) (end -11.06 -4.11) (layer B.CrtYd) (width 0.05))
(fp_arc (start 0 0) (end -10.692 -3.61) (angle 27.3) (layer B.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 10.692 3.61) (angle 27.3) (layer B.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 10.692 -3.61) (angle -27.3) (layer B.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -10.692 3.61) (angle -27.3) (layer B.SilkS) (width 0.12))
(fp_line (start -3.86 -8.11) (end -7.8473 -8.11) (layer B.SilkS) (width 0.12))
(fp_line (start -1.66 -5.91) (end -3.86 -8.11) (layer B.SilkS) (width 0.12))
(fp_line (start 1.66 -5.91) (end -1.66 -5.91) (layer B.SilkS) (width 0.12))
(fp_line (start 1.66 -5.91) (end 3.86 -8.11) (layer B.SilkS) (width 0.12))
(fp_line (start 7.8473 -8.11) (end 3.86 -8.11) (layer B.SilkS) (width 0.12))
(fp_line (start -7.8473 8.11) (end 7.8473 8.11) (layer B.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -10.61275 -3.5) (angle 27.4635) (layer B.Fab) (width 0.1))
(fp_arc (start 0 0) (end 10.61275 3.5) (angle 27.4635) (layer B.Fab) (width 0.1))
(fp_arc (start 0 0) (end 10.61275 -3.5) (angle -27.4635) (layer B.Fab) (width 0.1))
(fp_line (start 14.2 -2.8) (end 14.2 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start 14.2 -3.5) (end 10.61275 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start 10.61275 3.5) (end 14.2 3.5) (layer B.Fab) (width 0.1))
(fp_line (start 14.2 3.5) (end 14.2 2.8) (layer B.Fab) (width 0.1))
(fp_line (start -14.2 -2.8) (end -14.2 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start -14.2 -3.5) (end -10.61275 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start 3.9 -8) (end 7.8026 -8) (layer B.Fab) (width 0.1))
(fp_line (start 1.7 -5.8) (end 3.9 -8) (layer B.Fab) (width 0.1))
(fp_line (start -1.7 -5.8) (end -3.9 -8) (layer B.Fab) (width 0.1))
(fp_line (start -1.7 -5.8) (end 1.7 -5.8) (layer B.Fab) (width 0.1))
(fp_line (start -14.2 3.5) (end -10.61275 3.5) (layer B.Fab) (width 0.1))
(fp_line (start -14.2 3.5) (end -14.2 2.6) (layer B.Fab) (width 0.1))
(fp_line (start -3.9 -8) (end -7.8026 -8) (layer B.Fab) (width 0.1))
(fp_line (start -7.8026 8) (end 7.8026 8) (layer B.Fab) (width 0.1))
(fp_arc (start 0 0) (end -10.61275 3.5) (angle -27.4635) (layer B.Fab) (width 0.1))
(fp_circle (center 0 0) (end 10 0) (layer Dwgs.User) (width 0.15))
(pad 1 smd rect (at -14.465 0 180) (size 5.08 5.08) (layers B.Cu B.Paste B.Mask)
(net 19 "Net-(BT1-Pad1)"))
(pad 3 smd rect (at 14.465 0 180) (size 5.08 5.08) (layers B.Cu B.Paste B.Mask))
(pad 2 smd rect (at 0 0 180) (size 5 5) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
)
(module TO_SOT_Packages_SMD:SOT-23-5 (layer F.Cu) (tedit 5883B1A6) (tstamp 58AA4D70)
(at 121.1072 95.758 90)
(descr "5-pin SOT23 package")
(tags SOT-23-5)
(path /58C87FA9)
(attr smd)
(fp_text reference U1 (at 0.254 2.6924 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value TPS78233DDC (at 0 2.9 90) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12))
(fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 1.8) (end -1.9 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1))
(pad 1 smd rect (at -1.1 -0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
(net 6 +BATT))
(pad 2 smd rect (at -1.1 0 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 3 smd rect (at -1.1 0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
(net 6 +BATT))
(pad 4 smd rect (at 1.1 0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 5 smd rect (at 1.1 -0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 +3V3))
(model TO_SOT_Packages_SMD.3dshapes/SOT-23-5.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA98C)
(at 122.5804 79.1464 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AAFABA)
(attr smd)
(fp_text reference R9 (at -2.6416 0 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 1k (at 0 2.1 180) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 180) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(D2-Pad2)"))
(pad 2 smd rect (at 1 0) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 17 /LED_DBG))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA954)
(at 113.03 81.8388)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AB2523)
(attr smd)
(fp_text reference R1 (at 0.0508 -1.524) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 130R (at 0 2.1) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 12 /TSC_IN))
(pad 2 smd rect (at 1 0 180) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(R1-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad locked (layer F.Cu) (tedit 58ABB9DA) (tstamp 58ABB708)
(at 109 79)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(fp_text reference REF** (at 0 -3.35) (layer F.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value MountingHole_2.7mm_M2.5_DIN965_Pad (at 0 3.35) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_circle (center 0 0) (end 2.35 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.6 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad locked (layer F.Cu) (tedit 58ABB98F) (tstamp 58ABB702)
(at 129 102)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(fp_text reference REF** (at 0 -3.35) (layer F.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value MountingHole_2.7mm_M2.5_DIN965_Pad (at 0 3.35) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_circle (center 0 0) (end 2.35 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.6 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad locked (layer F.Cu) (tedit 58ABB9E9) (tstamp 58ABB620)
(at 129 79)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(fp_text reference REF** (at 0 -3.35) (layer F.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value MountingHole_2.7mm_M2.5_DIN965_Pad (at 0 3.35) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_circle (center 0 0) (end 2.35 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.6 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask))
)
(module LEDs:LED_0805 (layer F.Cu) (tedit 57FE93EC) (tstamp 58AA4D07)
(at 122.5296 77.3684)
(descr "LED 0805 smd package")
(tags "LED led 0805 SMD smd SMT smt smdled SMDLED smtled SMTLED")
(path /58AAF805)
(attr smd)
(fp_text reference D2 (at 2.6924 0.0508) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value LED (at 0 1.55) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(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 180) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(D2-Pad2)"))
(pad 1 smd rect (at -1.1 0 180) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Resistors_SMD:R_0603 (layer F.Cu) (tedit 58B21BCE) (tstamp 58AA4D0D)
(at 112.522 86.614 270)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(path /58AB0BDB)
(attr smd)
(fp_text reference L1 (at -0.9652 -1.0414 360) (layer F.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.1)))
)
(fp_text value Bead (at 0 1.9 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(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 +3V3))
(pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers F.Cu F.Paste F.Mask)
(net 42 +3.3VA))
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Measurement_Points:Measurement_Point_Round-SMD-Pad_Small (layer F.Cu) (tedit 56C35ED0) (tstamp 58AA4D99)
(at 128.27 88.2396)
(descr "Mesurement Point, Round, SMD Pad, DM 1.5mm,")
(tags "Mesurement Point Round SMD Pad 1.5mm")
(path /58AB697E)
(attr virtual)
(fp_text reference W1 (at 0 -1.5748) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value TEST_1P (at 0 2) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
(pad 1 smd circle (at 0 0) (size 1.5 1.5) (layers F.Cu F.Mask)
(net 18 /MCO))
)
(module TO_SOT_Packages_SMD:SOT-23 (layer F.Cu) (tedit 5883B105) (tstamp 58AA6CBB)
(at 124.8664 98.1804 90)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /58ABB0AB)
(attr smd)
(fp_text reference D1 (at -2.3528 0.9144 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value D_Schottky_x2_KCom_AAK (at 0 2.5 90) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
(pad 1 smd rect (at -1 -0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 22 "Net-(C10-Pad1)"))
(pad 2 smd rect (at -1 0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 20 "Net-(BT2-Pad1)"))
(pad 3 smd rect (at 1 0 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 6 +BATT))
(model TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA969)
(at 108.1024 86.0552 270)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AA8F1E)
(attr smd)
(fp_text reference R4 (at 2.286 -0.0508 360) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 10k (at 0 2.1 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 270) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 16 "Net-(R4-Pad1)"))
(pad 2 smd rect (at 1 0 90) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58B215A8) (tstamp 58ABA985)
(at 107.7468 95.9612 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AD52C2)
(attr smd)
(fp_text reference R8 (at 2.0828 0.0508 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 80R6 (at 0 2.1 180) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 180) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 25 "Net-(Q3-Pad3)"))
(pad 2 smd rect (at 1 0) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 27 /LED_G_CONN))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58B215AD) (tstamp 58ABA97E)
(at 107.7468 97.8408 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AD536F)
(attr smd)
(fp_text reference R7 (at 2.032 0 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 80R6 (at 0 2.1 180) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 180) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 24 "Net-(Q2-Pad3)"))
(pad 2 smd rect (at 1 0) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 28 /LED_B_CONN))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58B215A3) (tstamp 58ABA977)
(at 107.7595 94.0816 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /5855DFDD)
(attr smd)
(fp_text reference R6 (at 2.0955 0.1016 270) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 130R (at 0 2.1 180) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 180) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 23 "Net-(Q1-Pad3)"))
(pad 2 smd rect (at 1 0) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 26 /LED_R_CONN))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA970)
(at 105.8164 88.9508 270)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /5855D75A)
(attr smd)
(fp_text reference R5 (at 2.286 -0.0508 360) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 10k (at 0 2.1 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 270) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 10 /THERM_SENSE))
(pad 2 smd rect (at 1 0 90) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA962)
(at 121.9708 102.4382 270)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /5855ED77)
(attr smd)
(fp_text reference R3 (at 1.1684 1.3208 450) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 1M (at 0 2.1 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 270) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 9 /BATT_2))
(pad 2 smd rect (at 1 0 90) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:R_0603_0805 (layer F.Cu) (tedit 58ABAEA1) (tstamp 58ABA95B)
(at 123.8758 102.4382 270)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /5855ED16)
(attr smd)
(fp_text reference R2 (at 0.9906 -1.524 450) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 1M (at 0 2.1 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1 0 270) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 6 +BATT))
(pad 2 smd rect (at 1 0 90) (size 1 1.3) (layers F.Cu F.Paste F.Mask)
(net 9 /BATT_2))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:C_0603_0805 (layer F.Cu) (tedit 58ABAE4C) (tstamp 58ABACF0)
(at 103.9368 88.9508 270)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /5856407D)
(attr smd)
(fp_text reference C6 (at 2.2352 0 360) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 1u (at 0 2.1 270) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.925 0 270) (size 1.15 1.1) (layers F.Cu F.Paste F.Mask)
(net 10 /THERM_SENSE))
(pad 2 smd rect (at 0.925 0 90) (size 1.15 1.25) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module components:C_0603_0805 (layer F.Cu) (tedit 58ABAE4C) (tstamp 58ABACE6)
(at 116.8908 78.9432 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(path /58AA7785)
(attr smd)
(fp_text reference C4 (at 1.2192 -1.7272 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value 47n (at 0 2.1 90) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -1) (end 1.9 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -1) (end -1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 -1) (end 1.9 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.925 0 90) (size 1.15 1.1) (layers F.Cu F.Paste F.Mask)
(net 8 /TSC_SAMPLING))
(pad 2 smd rect (at 0.925 0 270) (size 1.15 1.25) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad locked (layer F.Cu) (tedit 58ABB997) (tstamp 58ABB5D1)
(at 109 102)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(fp_text reference REF** (at 0 -3.35) (layer F.SilkS) hide
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value MountingHole_2.7mm_M2.5_DIN965_Pad (at 0 3.35) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_circle (center 0 0) (end 2.35 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.6 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask))
)
(module TO_SOT_Packages_SMD:SOT-23 (layer F.Cu) (tedit 5883B105) (tstamp 58AD0151)
(at 110.744 92.5068 180)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /58AD43B2)
(attr smd)
(fp_text reference Q1 (at -2.6416 -0.2032 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_text value BSS138 (at 0 2.5 180) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.12)))
)
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
(pad 1 smd rect (at -1 -0.95 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 4 /LED_R))
(pad 2 smd rect (at -1 0.95 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 3 smd rect (at 1 0 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 23 "Net-(Q1-Pad3)"))
(model TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))