-
Notifications
You must be signed in to change notification settings - Fork 3
/
MySensorsNode.kicad_pcb
6696 lines (6625 loc) · 491 KB
/
MySensorsNode.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 0.201509101502+6177~30~ubuntu14.04.1-product)
(general
(links 181)
(no_connects 0)
(area 128.621001 70.8806 190.768246 125.35946)
(thickness 1.2)
(drawings 21)
(tracks 1399)
(zones 0)
(modules 61)
(nets 49)
)
(page A4)
(title_block
(title "Mysensors Node")
(date "Wed 10 Jun 2015")
(rev 1.1)
(company "Designer: Patrick Fallberg")
(comment 1 "Copyright (c) 2015 Patrick Fallberg")
(comment 2 "Licensed under CERN OHL v.1.2")
)
(layers
(0 F.Cu jumper)
(31 B.Cu mixed)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user hide)
(40 Dwgs.User user)
(41 Cmts.User user)
(44 Edge.Cuts user)
(46 B.CrtYd user)
(47 F.CrtYd user)
)
(setup
(last_trace_width 0.381)
(trace_clearance 0.2032)
(zone_clearance 0.254)
(zone_45_only yes)
(trace_min 0.381)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.635)
(via_drill 0.381)
(via_min_size 0.635)
(via_min_drill 0.381)
(uvia_size 25.4)
(uvia_drill 0)
(uvias_allowed no)
(uvia_min_size 25.4)
(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.8 0.8)
(mod_text_width 0.16)
(pad_size 1.7272 1.7272)
(pad_drill 0.8)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 136.271 73.3806)
(grid_origin 136.271 73.3806)
(visible_elements 7FFEEE7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory Manufacturing/))
)
(net 0 "")
(net 1 +3V3)
(net 2 GND)
(net 3 +BATT)
(net 4 +3.3VP)
(net 5 "Net-(C5-Pad1)")
(net 6 RESET)
(net 7 FLASH_CSN)
(net 8 /MOSI)
(net 9 /MISO)
(net 10 /SCK)
(net 11 VBAT_SMPL)
(net 12 RF_INT)
(net 13 "Net-(L1-Pad1)")
(net 14 RF24_CE)
(net 15 RF24_CSN)
(net 16 RF69_NSS)
(net 17 "Net-(ANT1-Pad1)")
(net 18 "Net-(JP6-Pad2)")
(net 19 "Net-(BT1-Pad3)")
(net 20 "Net-(C4-Pad1)")
(net 21 "Net-(C9-Pad1)")
(net 22 "Net-(C9-Pad2)")
(net 23 "Net-(JP4-Pad2)")
(net 24 MYSX_D10_A4)
(net 25 "Net-(JP7-Pad1)")
(net 26 MYSX_D3_INT)
(net 27 "Net-(JP8-Pad2)")
(net 28 "Net-(JP9-Pad2)")
(net 29 MYSX_D9_A3)
(net 30 MYSX_D14_CS)
(net 31 MYSX_D8_SDA)
(net 32 MYSX_D7_SCL)
(net 33 MYSX_D6_PWM)
(net 34 MYSX_D5_PWM)
(net 35 MYSX_D4_INT)
(net 36 MYSX_D1_DFM)
(net 37 MYSX_D2_DTM)
(net 38 MYSX_A1)
(net 39 MYSX_A2)
(net 40 MYSX_3.3V_EN)
(net 41 ATSHA_SDA)
(net 42 "Net-(U4-Pad1)")
(net 43 "Net-(U4-Pad3)")
(net 44 "Net-(U4-Pad4)")
(net 45 "Net-(U4-Pad5)")
(net 46 "Net-(U4-Pad6)")
(net 47 "Net-(U4-Pad7)")
(net 48 "Net-(U4-Pad16)")
(net_class Default "This is the default net class."
(clearance 0.2032)
(trace_width 0.381)
(via_dia 0.635)
(via_drill 0.381)
(uvia_dia 25.4)
(uvia_drill 0)
(add_net /MISO)
(add_net /MOSI)
(add_net /SCK)
(add_net ATSHA_SDA)
(add_net FLASH_CSN)
(add_net MYSX_3.3V_EN)
(add_net MYSX_A1)
(add_net MYSX_A2)
(add_net MYSX_D10_A4)
(add_net MYSX_D14_CS)
(add_net MYSX_D1_DFM)
(add_net MYSX_D2_DTM)
(add_net MYSX_D3_INT)
(add_net MYSX_D4_INT)
(add_net MYSX_D5_PWM)
(add_net MYSX_D6_PWM)
(add_net MYSX_D7_SCL)
(add_net MYSX_D8_SDA)
(add_net MYSX_D9_A3)
(add_net "Net-(ANT1-Pad1)")
(add_net "Net-(C9-Pad1)")
(add_net "Net-(C9-Pad2)")
(add_net "Net-(JP4-Pad2)")
(add_net "Net-(JP6-Pad2)")
(add_net "Net-(JP8-Pad2)")
(add_net "Net-(JP9-Pad2)")
(add_net "Net-(L1-Pad1)")
(add_net "Net-(U4-Pad1)")
(add_net "Net-(U4-Pad16)")
(add_net "Net-(U4-Pad3)")
(add_net "Net-(U4-Pad4)")
(add_net "Net-(U4-Pad5)")
(add_net "Net-(U4-Pad6)")
(add_net "Net-(U4-Pad7)")
(add_net RESET)
(add_net RF24_CE)
(add_net RF24_CSN)
(add_net RF69_NSS)
(add_net RF_INT)
(add_net VBAT_SMPL)
)
(net_class Power ""
(clearance 0.2032)
(trace_width 0.635)
(via_dia 0.635)
(via_drill 0.381)
(uvia_dia 25.4)
(uvia_drill 0)
(add_net +3.3VP)
(add_net +3V3)
(add_net +BATT)
(add_net GND)
(add_net "Net-(BT1-Pad3)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(C5-Pad1)")
(add_net "Net-(JP7-Pad1)")
)
(module mysensors_obscurities:d-pak-kcswalter (layer B.Cu) (tedit 55DF9502) (tstamp 55DB59A5)
(at 177.292 105.2576 270)
(descr D-pak)
(path /55A6076D)
(fp_text reference U1 (at -3.937 0 360) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)) (justify mirror))
)
(fp_text value LD1117DT33TR (at 0 -5.9944 270) (layer B.SilkS) hide
(effects (font (thickness 0.3048)) (justify mirror))
)
(fp_line (start -2.7051 4.4323) (end -2.7051 5.6261) (layer B.SilkS) (width 0.127))
(fp_line (start -2.7051 5.6261) (end 2.7051 5.6261) (layer B.SilkS) (width 0.127))
(fp_line (start 2.7051 5.6261) (end 2.7051 4.4196) (layer B.SilkS) (width 0.127))
(fp_line (start 1.7272 -1.5748) (end 1.7272 -4.4831) (layer B.SilkS) (width 0.127))
(fp_line (start 2.8702 -4.4831) (end 2.8702 -1.5748) (layer B.SilkS) (width 0.127))
(fp_line (start 1.7272 -4.4831) (end 2.8702 -4.4831) (layer B.SilkS) (width 0.127))
(fp_line (start -2.8702 -4.4831) (end -1.7272 -4.4831) (layer B.SilkS) (width 0.127))
(fp_line (start -1.7272 -4.4831) (end -1.7272 -1.5748) (layer B.SilkS) (width 0.127))
(fp_line (start -2.8702 -1.5748) (end -2.8702 -4.4831) (layer B.SilkS) (width 0.127))
(fp_line (start 3.3528 -1.5748) (end 3.3528 4.4196) (layer B.SilkS) (width 0.127))
(fp_line (start 3.3528 4.4196) (end -3.3528 4.4196) (layer B.SilkS) (width 0.127))
(fp_line (start -3.3528 4.4196) (end -3.3528 -1.5748) (layer B.SilkS) (width 0.127))
(fp_line (start 3.3528 -1.5748) (end -3.3528 -1.5748) (layer B.SilkS) (width 0.127))
(pad 1 smd rect (at -2.30124 -3.1242 270) (size 1.6002 3.2004) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 3 smd rect (at 2.30124 -3.1242 270) (size 1.6002 3.2004) (layers B.Cu B.Paste B.Mask)
(net 20 "Net-(C4-Pad1)"))
(pad 2 smd rect (at 0 3.1242 270) (size 6.49986 7.00024) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(model ${MYSLOCAL}/mysensors.3dshapes/w.lain.3dshapes/smd_trans/d-pak.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module mysensors_arduino:pro_mini (layer F.Cu) (tedit 55DF962E) (tstamp 55DB4F3F)
(at 152.781 83.5406 180)
(descr "IC, ARDUINO_PRO_MINI x 0,6\"")
(tags "DIL ARDUINO PRO MINI")
(path /5536785D)
(fp_text reference U7 (at -18.542 8.636 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value ArduinoProMini (at 0 0 180) (layer F.Fab) hide
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_line (start 15.24 9.144) (end 15.24 -8.89) (layer F.SilkS) (width 0.15))
(fp_line (start -17.526 -8.89) (end -17.526 9.144) (layer F.SilkS) (width 0.15))
(fp_line (start 15.24 9.144) (end -17.526 9.144) (layer F.SilkS) (width 0.15))
(fp_line (start -17.526 -8.89) (end 15.24 -8.89) (layer F.SilkS) (width 0.15))
(pad 28 thru_hole oval (at 5.08 -5.08 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 39 MYSX_A2))
(pad 27 thru_hole oval (at 7.62 -5.08 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 38 MYSX_A1))
(pad 1 thru_hole oval (at -13.97 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 36 MYSX_D1_DFM))
(pad 2 thru_hole oval (at -11.43 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 37 MYSX_D2_DTM))
(pad 3 thru_hole oval (at -8.89 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 6 RESET))
(pad 4 thru_hole oval (at -6.35 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 5 thru_hole oval (at -3.81 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 27 "Net-(JP8-Pad2)"))
(pad 6 thru_hole oval (at -1.27 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 35 MYSX_D4_INT))
(pad 7 thru_hole oval (at 1.27 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 40 MYSX_3.3V_EN))
(pad 8 thru_hole oval (at 3.81 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 34 MYSX_D5_PWM))
(pad 9 thru_hole oval (at 6.35 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 33 MYSX_D6_PWM))
(pad 10 thru_hole oval (at 8.89 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 30 MYSX_D14_CS))
(pad 11 thru_hole oval (at 11.43 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 7 FLASH_CSN))
(pad 12 thru_hole oval (at 13.97 7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 14 RF24_CE))
(pad 13 thru_hole oval (at 13.97 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 28 "Net-(JP9-Pad2)"))
(pad 14 thru_hole oval (at 11.43 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 8 /MOSI))
(pad 15 thru_hole oval (at 8.89 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 9 /MISO))
(pad 16 thru_hole oval (at 6.35 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 10 /SCK))
(pad 17 thru_hole oval (at 3.81 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 11 VBAT_SMPL))
(pad 18 thru_hole oval (at 1.27 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 29 MYSX_D9_A3))
(pad 19 thru_hole oval (at -1.27 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 24 MYSX_D10_A4))
(pad 20 thru_hole oval (at -3.81 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 41 ATSHA_SDA))
(pad 21 thru_hole oval (at -6.35 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 1 +3V3))
(pad 22 thru_hole oval (at -8.89 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 6 RESET))
(pad 23 thru_hole oval (at -11.43 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 24 thru_hole oval (at -13.97 -7.62 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS))
(pad 25 thru_hole oval (at -2.54 -5.08 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 31 MYSX_D8_SDA))
(pad 26 thru_hole oval (at -5.08 -5.08 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 32 MYSX_D7_SCL))
(pad 27 thru_hole oval (at 13.97 -5.08 180) (size 2.19964 1.50114) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 38 MYSX_A1))
(pad 28 thru_hole oval (at 13.97 -2.54 180) (size 2.19964 1.50114) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 39 MYSX_A2))
(pad 29 thru_hole oval (at 13.97 0 180) (size 2.19964 1.50114) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x02.wrl
(at (xyz -0.15 0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x03.wrl
(at (xyz 0.55 0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x12.wrl
(at (xyz 0 0.3 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x12.wrl
(at (xyz 0 -0.3 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x02.wrl
(at (xyz 0.25 0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${MYSLOCAL}/mysensors.3dshapes/mysensors_arduino.3dshapes/arduino_pro_mini.wrl
(at (xyz -0.05 0 0.48))
(scale (xyz 0.395 0.395 0.395))
(rotate (xyz 0 0 180))
)
(model SMD_Packages.3dshapes/TQFP-32.wrl
(at (xyz 0.05 0 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 315))
)
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x12.wrl
(at (xyz 0 -0.3 0.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x12.wrl
(at (xyz 0 0.3 0.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0.55 0.1 0.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 90))
)
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0.25 0.2 0.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz -0.15 0.2 0.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
(model ${MYSLOCAL}/mysensors.3dshapes/w.lain.3dshapes/smd_leds/led_0603.wrl
(at (xyz -0.3 0 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${MYSLOCAL}/mysensors.3dshapes/w.lain.3dshapes/smd_leds/led_0603.wrl
(at (xyz 0.55 -0.175 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Pin_Headers.3dshapes/Pin_Header_Angled_1x06.wrl
(at (xyz -0.65 0 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz -0.3 -0.05 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Resistors_SMD.3dshapes/R_0603.wrl
(at (xyz 0.55 -0.125 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Capacitors_SMD.3dshapes/C_0603.wrl
(at (xyz -0.3 0.05 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Capacitors_Tantalum_SMD.3dshapes/TantalC_SizeS_EIA-3216.wrl
(at (xyz -0.35 0.15 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Capacitors_Tantalum_SMD.3dshapes/TantalC_SizeS_EIA-3216.wrl
(at (xyz -0.35 -0.15 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Housings_SOT-23_SOT-143_TSOT-6.3dshapes/SOT-23-5.wrl
(at (xyz -0.4 0 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model Capacitors_SMD.3dshapes/C_1210.wrl
(at (xyz -0.5 0 0.5125))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module mysensors_connectors:MYSX_1.5 (layer F.Cu) (tedit 55DF95CA) (tstamp 55DB4DBF)
(at 183.515 99.0346 180)
(descr "Through hole pin header")
(tags "pin header MYSX 1.5")
(path /55A4D0B3)
(fp_text reference P1 (at -1.905 0.508 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value MYSX_1.5 (at 1.27 26.162 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 1.5 (at 2.54 -3.302 180) (layer Cmts.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -2.54) (end -2.54 25.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.08 -2.54) (end 5.08 25.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.54 -2.54) (end 5.08 -2.54) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.54 25.4) (end 5.08 25.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 1.27) (end -1.27 24.13) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 24.13) (end 3.81 24.13) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 24.13) (end 3.81 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 0) (layer F.SilkS) (width 0.15))
(pad 20 thru_hole oval (at 2.54 22.86 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 30 MYSX_D14_CS))
(pad 19 thru_hole oval (at 0 22.86 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 10 /SCK))
(pad 18 thru_hole oval (at 2.54 20.32 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 9 /MISO))
(pad 17 thru_hole oval (at 0 20.32 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 8 /MOSI))
(pad 16 thru_hole oval (at 2.54 17.78 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 24 MYSX_D10_A4))
(pad 15 thru_hole oval (at 0 17.78 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 29 MYSX_D9_A3))
(pad 14 thru_hole oval (at 2.54 15.24 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 31 MYSX_D8_SDA))
(pad 13 thru_hole oval (at 0 15.24 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 32 MYSX_D7_SCL))
(pad 12 thru_hole oval (at 2.54 12.7 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 33 MYSX_D6_PWM))
(pad 11 thru_hole oval (at 0 12.7 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 34 MYSX_D5_PWM))
(pad 10 thru_hole oval (at 2.54 10.16 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 35 MYSX_D4_INT))
(pad 9 thru_hole oval (at 0 10.16 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 26 MYSX_D3_INT))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 25 "Net-(JP7-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 4 +3.3VP))
(pad 3 thru_hole oval (at 0 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 +3V3))
(pad 4 thru_hole oval (at 2.54 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 5 thru_hole oval (at 0 5.08 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 36 MYSX_D1_DFM))
(pad 6 thru_hole oval (at 2.54 5.08 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 37 MYSX_D2_DTM))
(pad 7 thru_hole oval (at 0 7.62 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 38 MYSX_A1))
(pad 8 thru_hole oval (at 2.54 7.62 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 39 MYSX_A2))
(model Pin_Headers.3dshapes/Pin_Header_Straight_2x10.wrl
(at (xyz 0.05 -0.45 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Potentiometers:Potentiometer_Bourns_3296Y_3-8Zoll_Angular_ScrewUp (layer F.Cu) (tedit 55DF9425) (tstamp 55DB4E96)
(at 160.7566 98.9838 90)
(descr "3296, 3/8, Square, Trimpot, Trimming, Potentiometer, Bourns")
(tags "3296, 3/8, Square, Trimpot, Trimming, Potentiometer, Bourns")
(path /559987C6)
(fp_text reference RV1 (at -0.8128 -8.6106 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 1M (at 0 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.635 1.27) (end 0.635 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 0.635 -3.81) (end 0.635 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0.635 -7.366) (end 0.635 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -3.302 1.016) (end -2.032 1.016) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5527 0.2286) (end -2.8067 0.2667) (layer F.SilkS) (width 0.15))
(fp_line (start -2.8067 0.2667) (end -3.0861 0.4445) (layer F.SilkS) (width 0.15))
(fp_line (start -3.0861 0.4445) (end -3.302 0.762) (layer F.SilkS) (width 0.15))
(fp_line (start -3.302 0.762) (end -3.3147 1.2065) (layer F.SilkS) (width 0.15))
(fp_line (start -3.3147 1.2065) (end -3.1115 1.5621) (layer F.SilkS) (width 0.15))
(fp_line (start -3.1115 1.5621) (end -2.8194 1.7399) (layer F.SilkS) (width 0.15))
(fp_line (start -2.8194 1.7399) (end -2.5019 1.7907) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5019 1.7907) (end -2.0955 1.6891) (layer F.SilkS) (width 0.15))
(fp_line (start -2.0955 1.6891) (end -1.8415 1.3462) (layer F.SilkS) (width 0.15))
(fp_line (start -1.8415 1.3462) (end -1.7526 1.1684) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 2.286) (end -3.81 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 2.286) (end -3.81 -7.366) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 -7.366) (end 1.27 -7.366) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 2.286) (end -1.27 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 2.286) (end -2.54 2.286) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at -2.54 -2.54 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 11 VBAT_SMPL))
(pad 3 thru_hole circle (at 0 -5.08 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 23 "Net-(JP4-Pad2)"))
(model Potentiometers.3dshapes/Potentiometer_Bourns_3296Y_3-8Zoll_Angular_ScrewUp.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x03 (layer F.Cu) (tedit 55DF9629) (tstamp 55DB4D6B)
(at 172.085 80.3656)
(descr "Through hole pin header")
(tags "pin header")
(path /55F403B5)
(fp_text reference JP8 (at 0 -2.159) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value JUMPER3 (at 0 -3.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 1.27) (end -1.27 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 6.35) (end 1.27 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 6.35) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 26 MYSX_D3_INT))
(pad 2 thru_hole oval (at 0 2.54) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 27 "Net-(JP8-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 12 RF_INT))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Symbols:Symbol_OSHW-Logo_SilkScreen (layer F.Cu) (tedit 55DC501A) (tstamp 55DC81AF)
(at 149.733 114.0206)
(descr "Symbol, OSHW-Logo, Silk Screen,")
(tags "Symbol, OSHW-Logo, Silk Screen,")
(fp_text reference OSHW_LOGO (at 0.09906 -4.38912) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Symbol_OSHW-Logo_SilkScreen (at 0.30988 6.56082) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.66878 2.68986) (end 2.02946 4.16052) (layer F.SilkS) (width 0.15))
(fp_line (start 2.02946 4.16052) (end 2.30886 3.0988) (layer F.SilkS) (width 0.15))
(fp_line (start 2.30886 3.0988) (end 2.61874 4.17068) (layer F.SilkS) (width 0.15))
(fp_line (start 2.61874 4.17068) (end 2.9591 2.72034) (layer F.SilkS) (width 0.15))
(fp_line (start 0.24892 3.38074) (end 1.03886 3.37058) (layer F.SilkS) (width 0.15))
(fp_line (start 1.03886 3.37058) (end 1.04902 3.38074) (layer F.SilkS) (width 0.15))
(fp_line (start 1.04902 3.38074) (end 1.04902 3.37058) (layer F.SilkS) (width 0.15))
(fp_line (start 1.08966 2.65938) (end 1.08966 4.20116) (layer F.SilkS) (width 0.15))
(fp_line (start 0.20066 2.64922) (end 0.20066 4.21894) (layer F.SilkS) (width 0.15))
(fp_line (start 0.20066 4.21894) (end 0.21082 4.20878) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35052 2.75082) (end -0.70104 2.66954) (layer F.SilkS) (width 0.15))
(fp_line (start -0.70104 2.66954) (end -1.02108 2.65938) (layer F.SilkS) (width 0.15))
(fp_line (start -1.02108 2.65938) (end -1.25984 2.86004) (layer F.SilkS) (width 0.15))
(fp_line (start -1.25984 2.86004) (end -1.29032 3.12928) (layer F.SilkS) (width 0.15))
(fp_line (start -1.29032 3.12928) (end -1.04902 3.37058) (layer F.SilkS) (width 0.15))
(fp_line (start -1.04902 3.37058) (end -0.6604 3.50012) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6604 3.50012) (end -0.48006 3.66014) (layer F.SilkS) (width 0.15))
(fp_line (start -0.48006 3.66014) (end -0.43942 3.95986) (layer F.SilkS) (width 0.15))
(fp_line (start -0.43942 3.95986) (end -0.67056 4.18084) (layer F.SilkS) (width 0.15))
(fp_line (start -0.67056 4.18084) (end -0.9906 4.20878) (layer F.SilkS) (width 0.15))
(fp_line (start -0.9906 4.20878) (end -1.34112 4.09956) (layer F.SilkS) (width 0.15))
(fp_line (start -2.37998 2.64922) (end -2.6289 2.66954) (layer F.SilkS) (width 0.15))
(fp_line (start -2.6289 2.66954) (end -2.8702 2.91084) (layer F.SilkS) (width 0.15))
(fp_line (start -2.8702 2.91084) (end -2.9591 3.40106) (layer F.SilkS) (width 0.15))
(fp_line (start -2.9591 3.40106) (end -2.93116 3.74904) (layer F.SilkS) (width 0.15))
(fp_line (start -2.93116 3.74904) (end -2.7305 4.06908) (layer F.SilkS) (width 0.15))
(fp_line (start -2.7305 4.06908) (end -2.47904 4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -2.47904 4.191) (end -2.16916 4.11988) (layer F.SilkS) (width 0.15))
(fp_line (start -2.16916 4.11988) (end -1.95072 3.93954) (layer F.SilkS) (width 0.15))
(fp_line (start -1.95072 3.93954) (end -1.8796 3.4798) (layer F.SilkS) (width 0.15))
(fp_line (start -1.8796 3.4798) (end -1.9304 3.07086) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9304 3.07086) (end -2.03962 2.78892) (layer F.SilkS) (width 0.15))
(fp_line (start -2.03962 2.78892) (end -2.4003 2.65938) (layer F.SilkS) (width 0.15))
(fp_line (start -1.78054 0.92964) (end -2.03962 1.49098) (layer F.SilkS) (width 0.15))
(fp_line (start -2.03962 1.49098) (end -1.50114 2.00914) (layer F.SilkS) (width 0.15))
(fp_line (start -1.50114 2.00914) (end -0.98044 1.7399) (layer F.SilkS) (width 0.15))
(fp_line (start -0.98044 1.7399) (end -0.70104 1.89992) (layer F.SilkS) (width 0.15))
(fp_line (start 0.73914 1.8796) (end 1.06934 1.6891) (layer F.SilkS) (width 0.15))
(fp_line (start 1.06934 1.6891) (end 1.50876 2.0193) (layer F.SilkS) (width 0.15))
(fp_line (start 1.50876 2.0193) (end 1.9812 1.52908) (layer F.SilkS) (width 0.15))
(fp_line (start 1.9812 1.52908) (end 1.69926 1.04902) (layer F.SilkS) (width 0.15))
(fp_line (start 1.69926 1.04902) (end 1.88976 0.57912) (layer F.SilkS) (width 0.15))
(fp_line (start 1.88976 0.57912) (end 2.49936 0.39116) (layer F.SilkS) (width 0.15))
(fp_line (start 2.49936 0.39116) (end 2.49936 -0.28956) (layer F.SilkS) (width 0.15))
(fp_line (start 2.49936 -0.28956) (end 1.94056 -0.42926) (layer F.SilkS) (width 0.15))
(fp_line (start 1.94056 -0.42926) (end 1.7399 -1.00076) (layer F.SilkS) (width 0.15))
(fp_line (start 1.7399 -1.00076) (end 2.00914 -1.47066) (layer F.SilkS) (width 0.15))
(fp_line (start 2.00914 -1.47066) (end 1.53924 -1.9812) (layer F.SilkS) (width 0.15))
(fp_line (start 1.53924 -1.9812) (end 1.02108 -1.71958) (layer F.SilkS) (width 0.15))
(fp_line (start 1.02108 -1.71958) (end 0.55118 -1.92024) (layer F.SilkS) (width 0.15))
(fp_line (start 0.55118 -1.92024) (end 0.381 -2.46126) (layer F.SilkS) (width 0.15))
(fp_line (start 0.381 -2.46126) (end -0.30988 -2.47904) (layer F.SilkS) (width 0.15))
(fp_line (start -0.30988 -2.47904) (end -0.5207 -1.9304) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5207 -1.9304) (end -0.9398 -1.76022) (layer F.SilkS) (width 0.15))
(fp_line (start -0.9398 -1.76022) (end -1.49098 -2.02946) (layer F.SilkS) (width 0.15))
(fp_line (start -1.49098 -2.02946) (end -2.00914 -1.50114) (layer F.SilkS) (width 0.15))
(fp_line (start -2.00914 -1.50114) (end -1.76022 -0.96012) (layer F.SilkS) (width 0.15))
(fp_line (start -1.76022 -0.96012) (end -1.9304 -0.48006) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9304 -0.48006) (end -2.47904 -0.381) (layer F.SilkS) (width 0.15))
(fp_line (start -2.47904 -0.381) (end -2.4892 0.32004) (layer F.SilkS) (width 0.15))
(fp_line (start -2.4892 0.32004) (end -1.9304 0.5207) (layer F.SilkS) (width 0.15))
(fp_line (start -1.9304 0.5207) (end -1.7907 0.91948) (layer F.SilkS) (width 0.15))
(fp_line (start 0.35052 0.89916) (end 0.65024 0.7493) (layer F.SilkS) (width 0.15))
(fp_line (start 0.65024 0.7493) (end 0.8509 0.55118) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8509 0.55118) (end 1.00076 0.14986) (layer F.SilkS) (width 0.15))
(fp_line (start 1.00076 0.14986) (end 1.00076 -0.24892) (layer F.SilkS) (width 0.15))
(fp_line (start 1.00076 -0.24892) (end 0.8509 -0.59944) (layer F.SilkS) (width 0.15))
(fp_line (start 0.8509 -0.59944) (end 0.39878 -0.94996) (layer F.SilkS) (width 0.15))
(fp_line (start 0.39878 -0.94996) (end -0.0508 -1.00076) (layer F.SilkS) (width 0.15))
(fp_line (start -0.0508 -1.00076) (end -0.44958 -0.89916) (layer F.SilkS) (width 0.15))
(fp_line (start -0.44958 -0.89916) (end -0.8509 -0.55118) (layer F.SilkS) (width 0.15))
(fp_line (start -0.8509 -0.55118) (end -1.00076 -0.09906) (layer F.SilkS) (width 0.15))
(fp_line (start -1.00076 -0.09906) (end -0.94996 0.39878) (layer F.SilkS) (width 0.15))
(fp_line (start -0.94996 0.39878) (end -0.70104 0.70104) (layer F.SilkS) (width 0.15))
(fp_line (start -0.70104 0.70104) (end -0.35052 0.89916) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35052 0.89916) (end -0.70104 1.89992) (layer F.SilkS) (width 0.15))
(fp_line (start 0.35052 0.89916) (end 0.7493 1.89992) (layer F.SilkS) (width 0.15))
)
(module Housings_DFN_QFN:DFN-6-1EP_3x3mm_Pitch0.95mm (layer B.Cu) (tedit 55DF9949) (tstamp 55DB4F53)
(at 157.2895 83.9851)
(descr "DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF)")
(tags "DFN 0.95")
(path /55B39BA0)
(clearance 0.1)
(attr smd)
(fp_text reference U8 (at -0.0635 -2.2225) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)) (justify mirror))
)
(fp_text value Si7021 (at 0 -2.575) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.9 1.85) (end -1.9 -1.85) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.9 1.85) (end 1.9 -1.85) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.9 1.85) (end 1.9 1.85) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.9 -1.85) (end 1.9 -1.85) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.025 -1.65) (end 1.025 -1.65) (layer B.SilkS) (width 0.15))
(fp_line (start -1.73 1.65) (end 1.025 1.65) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.34 0.95) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask)
(net 31 MYSX_D8_SDA))
(pad 2 smd rect (at -1.34 0) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 3 smd rect (at -1.34 -0.95) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask))
(pad 4 smd rect (at 1.34 -0.95) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask))
(pad 5 smd rect (at 1.34 0) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(pad 6 smd rect (at 1.34 0.95) (size 0.63 0.45) (layers B.Cu B.Paste B.Mask)
(net 32 MYSX_D7_SCL))
(pad 7 smd rect (at 0.425 -0.65) (size 0.85 1.3) (layers B.Cu B.Paste B.Mask)
(solder_paste_margin_ratio -0.2))
(pad 7 smd rect (at 0.425 0.65) (size 0.85 1.3) (layers B.Cu B.Paste B.Mask)
(solder_paste_margin_ratio -0.2))
(pad 7 smd rect (at -0.425 -0.65) (size 0.85 1.3) (layers B.Cu B.Paste B.Mask)
(solder_paste_margin_ratio -0.2))
(pad 7 smd rect (at -0.425 0.65) (size 0.85 1.3) (layers B.Cu B.Paste B.Mask)
(solder_paste_margin_ratio -0.2))
(model Housings_DFN_QFN.3dshapes/DFN-6-1EP_3x3mm_Pitch0.95mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm (layer F.Cu) (tedit 55DF995C) (tstamp 55DB4F18)
(at 144.653 84.3661)
(descr "8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SOIC 1.27")
(path /552E7970)
(attr smd)
(fp_text reference U6 (at 0 -3.2385) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value AT25DF512C (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.75 -2.75) (end -3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.75 -2.75) (end 3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.75 -2.75) (end 3.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.75 2.75) (end 3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.075 -2.575) (end -2.075 -2.43) (layer F.SilkS) (width 0.15))
(fp_line (start 2.075 -2.575) (end 2.075 -2.43) (layer F.SilkS) (width 0.15))
(fp_line (start 2.075 2.575) (end 2.075 2.43) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 2.575) (end -2.075 2.43) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 -2.575) (end 2.075 -2.575) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 2.575) (end 2.075 2.575) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 -2.43) (end -3.475 -2.43) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -2.7 -1.905) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 7 FLASH_CSN))
(pad 2 smd rect (at -2.7 -0.635) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 9 /MISO))
(pad 3 smd rect (at -2.7 0.635) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 4 smd rect (at -2.7 1.905) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 5 smd rect (at 2.7 1.905) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 8 /MOSI))
(pad 6 smd rect (at 2.7 0.635) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 10 /SCK))
(pad 7 smd rect (at 2.7 -0.635) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 8 smd rect (at 2.7 -1.905) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SOT-23_SOT-143_TSOT-6:SOT-23_Handsoldering (layer F.Cu) (tedit 55DF9930) (tstamp 55DB4EB3)
(at 158.115 82.67446)
(descr "SOT-23, Handsoldering")
(tags SOT-23)
(path /552F8C01)
(attr smd)
(fp_text reference U3 (at -1.524 -1.29286) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value ATSHA204A (at 0 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.49982 0.0508) (end -1.49982 -0.65024) (layer F.SilkS) (width 0.15))
(fp_line (start -1.49982 -0.65024) (end -1.2509 -0.65024) (layer F.SilkS) (width 0.15))
(fp_line (start 1.29916 -0.65024) (end 1.49982 -0.65024) (layer F.SilkS) (width 0.15))
(fp_line (start 1.49982 -0.65024) (end 1.49982 0.0508) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -0.95 1.50114) (size 0.8001 1.80086) (layers F.Cu F.Paste F.Mask)
(net 41 ATSHA_SDA))
(pad 2 smd rect (at 0.95 1.50114) (size 0.8001 1.80086) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 3 smd rect (at 0 -1.50114) (size 0.8001 1.80086) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Housings_SOT-23_SOT-143_TSOT-6.3dshapes/SOT-23_Handsoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module mysensors_handsoldering:SOT-23-5_Handsoldering (layer F.Cu) (tedit 55DF9686) (tstamp 55DB4EA8)
(at 179.1462 105.5116 180)
(descr "5-pin SOT23 package handsoldering")
(tags SOT-23-5)
(path /552D8733)
(attr smd)
(fp_text reference U2 (at 2.032 0 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value TPS61097A (at -0.05 2.35 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.7 -1.6) (end 2.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.7 -1.6) (end 2.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.7 1.6) (end -2.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.7 1.6) (end -2.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_circle (center -1.4684 -1.6492) (end -1.3684 -1.6492) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 -1.45) (end -0.25 -1.45) (layer F.SilkS) (width 0.15))
(fp_line (start 0.25 1.45) (end 0.25 -1.45) (layer F.SilkS) (width 0.15))
(fp_line (start -0.25 1.45) (end 0.25 1.45) (layer F.SilkS) (width 0.15))
(fp_line (start -0.25 -1.45) (end -0.25 1.45) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.47 -0.95 180) (size 1.80086 0.65) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(C5-Pad1)"))
(pad 2 smd rect (at -1.47 0 180) (size 1.80086 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 3 smd rect (at -1.47 0.95 180) (size 1.80086 0.65) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(JP6-Pad2)"))
(pad 4 smd rect (at 1.47 0.95 180) (size 1.80086 0.65) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 5 smd rect (at 1.47 -0.95 180) (size 1.80086 0.65) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(L1-Pad1)"))
(model Housings_SOT-23_SOT-143_TSOT-6.3dshapes/SOT-23-5.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 55DF993F) (tstamp 55DB4E7C)
(at 158.496 86.2076)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55AAFEAB)
(attr smd)
(fp_text reference R9 (at -3.048 0) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 56K (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 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.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 41 ATSHA_SDA))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.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 55DF95B8) (tstamp 55DB4E70)
(at 175.1965 106.2736 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55F2ADC3)
(attr smd)
(fp_text reference R8 (at -2.794 0.0635 360) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 56K (at 0 2.1 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 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.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 28 "Net-(JP9-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.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 55DF9929) (tstamp 55DB4E64)
(at 152.4 82.9056 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55F2C329)
(attr smd)
(fp_text reference R7 (at -2.794 0 360) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 56K (at 0 2.1 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 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.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 30 MYSX_D14_CS))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.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 55DF9971) (tstamp 55DB4E58)
(at 141.859 84.3026 270)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55F2D1A4)
(attr smd)
(fp_text reference R6 (at -2.921 0 360) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)) (justify mirror))
)
(fp_text value 56K (at 0 -2.1 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.4 1) (end 2.4 1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end -2.4 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.4 1) (end 2.4 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.6 -0.875) (end -0.6 -0.875) (layer B.SilkS) (width 0.15))
(fp_line (start -0.6 0.875) (end 0.6 0.875) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 7 FLASH_CSN))
(pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.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 55DF9912) (tstamp 55DB4E4C)
(at 151.892 88.6206 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55F354FB)
(attr smd)
(fp_text reference R5 (at 0 1.524 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 10K (at 0 2.1 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 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.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 31 MYSX_D8_SDA))
(pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.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 55DF9920) (tstamp 55DB4E40)
(at 163.449 86.8426)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /55490BF2)
(attr smd)
(fp_text reference R4 (at 3.048 0) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.16)))
)
(fp_text value 10K (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 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.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 32 MYSX_D7_SCL))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl