-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMysensorsGW.net
1368 lines (1368 loc) · 49.8 KB
/
MysensorsGW.net
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
(export (version D)
(design
(source /home/thomas/Projects/kicad/MysensorsGW/MysensorsGW.sch)
(date "fre 23 dec 2016 22:35:02 CET")
(tool "Eeschema no-vcs-found-7406~56~ubuntu16.10.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "MySensors Gateway")
(company Mysensors.org)
(rev 0.1)
(date)
(source MysensorsGW.sch)
(comment (number 1) (value "Created by Thomas B. Mørch"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U11)
(value MICRO-B_USB)
(footprint mysensors_connectors:Micro_USB)
(fields
(field (name Vendor) "Shenzhen Guanduan Electonics Technology co ltd.")
(field (name "Vendor part") "MICRO USB SP/F B"))
(libsource (lib MysensorsGW-cache) (part USB-MICRO-B))
(sheetpath (names /) (tstamps /))
(tstamp 55241CD4))
(comp (ref X1)
(value 32768hz)
(footprint mysensors_obscurities:XTAL_3.2x1.5mm)
(datasheet http://www.mouser.com/ds/2/3/ABS07-120-32.768kHz-T-218607.pdf)
(fields
(field (name Vendor) Abracon)
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 815-ABS0712032.768KT)
(field (name "Supplier1 link") http://dk.mouser.com/Search/ProductDetail.aspx?R=ABS07-120-32.768kHz-Tvirtualkey52750000virtualkey815-ABS0712032.768KT)
(field (name "Vendor part") ABS07-120-32.768kHz-T))
(libsource (lib MysensorsGW-cache) (part CRYSTAL-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 552433C5))
(comp (ref C11)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 553FDEAC))
(comp (ref C2)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5545249D))
(comp (ref C3)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 554524DE))
(comp (ref C4)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5545251A))
(comp (ref U4)
(value W5100)
(footprint mysensors_network:W5100)
(libsource (lib mysensors_network) (part W5100))
(sheetpath (names /) (tstamps /))
(tstamp 5550F856))
(comp (ref C6)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5551FC52))
(comp (ref R1)
(value 4k7)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5558B167))
(comp (ref U10)
(value AMS1117-3.3)
(footprint SMD_Packages:SOT-223)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 522-ZLDO1117G33TA)
(field (name "Vendor part") ZLDO1117G33TA)
(field (name Vendor) "Diodes incorporated"))
(libsource (lib mysensors_regulators) (part AMS1117))
(sheetpath (names /) (tstamps /))
(tstamp 555A1DCE))
(comp (ref C13)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 555A2CB7))
(comp (ref C15)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 555A2D16))
(comp (ref C12)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 581-F381A106MMA))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 555A2D7A))
(comp (ref C16)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 581-F381A106MMA))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 555A2DE3))
(comp (ref P2)
(value "MYSX 2.6")
(footprint mysensors_connectors:MYSX_2.5)
(fields
(field (name Supplier1) Mouser))
(libsource (lib mysensors_connectors) (part MYSX_2.6))
(sheetpath (names /) (tstamps /))
(tstamp 555F8C75))
(comp (ref U1)
(value ATSHA204A)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 566-ATSHA204ASTUCZ-T)
(field (name Vendor) Atmel)
(field (name "Vendor part") ATSHA204A-STUCZ-T))
(libsource (lib mysensors_security) (part ATSHA204A))
(sheetpath (names /) (tstamps /))
(tstamp 5562F143))
(comp (ref U8)
(value NRF24L01)
(footprint mysensors_radios:NRF24L01)
(libsource (lib mysensors_radios) (part NRF24L01))
(sheetpath (names /) (tstamps /))
(tstamp 5563411E))
(comp (ref C8)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 581-F381A106MMA))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5563591C))
(comp (ref C9)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 581-F381A106MMA))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5563516B))
(comp (ref U7)
(value RFM69HW)
(footprint mysensors_radios:RFM69HW_SMD)
(libsource (lib mysensors_radios) (part RFM69HW))
(sheetpath (names /) (tstamps /))
(tstamp 556277CD))
(comp (ref C1)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 556612CD))
(comp (ref FB1)
(value "470R EMI")
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet http://search.murata.co.jp/Ceramy/CatalogAction.do?sHinnm=? &sNHinnm=BLM18PG471SN1D&sNhin_key=BLM18PG471SN1D&sLang=en)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-BLM18PG471SN1D)
(field (name "Vendor part") BLM18PG471SN1D)
(field (name Vendor) Murata))
(libsource (lib MysensorsGW-cache) (part FILTER))
(sheetpath (names /) (tstamps /))
(tstamp 55832B64))
(comp (ref D1)
(value LED_BLUE)
(footprint LEDs:LED-0603)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 5586911F))
(comp (ref R4)
(value 91)
(footprint Resistors_SMD:R_0603_HandSoldering)
(fields
(field (name Supplier1) Mouser))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55869548))
(comp (ref D2)
(value LED_RED)
(footprint LEDs:LED-0603)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 5586D5FB))
(comp (ref R5)
(value 270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5586D67A))
(comp (ref P3)
(value SWC3)
(footprint mysensors_obscurities:2_pin_solder_jumper_smd)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-cache) (part TEST-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 55A16DD0))
(comp (ref C5)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A19221))
(comp (ref C18)
(value 4.7pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet http://www.mouser.com/ds/2/40/useries-37712.pdf)
(fields
(field (name Vendor) AVX)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 581-06035U3R0B)
(field (name "Vendor part") 06035U3R0BAT2A)
(field (name Supplier2) Digikey))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A1C3E3))
(comp (ref P4)
(value Debug)
(footprint mysensors_connectors:Cortex_M_Debug_Connector)
(datasheet http://www.mouser.com/ds/2/181/M50-360-350131.pdf)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 855-M50-3600542)
(field (name Vendor) Harwin)
(field (name "Vendor part") M50-3600542))
(libsource (lib mysensors_connectors) (part Debug))
(sheetpath (names /) (tstamps /))
(tstamp 55A2D444))
(comp (ref C20)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 581-F381A106MMA))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 55A2E77F))
(comp (ref D3)
(value LED_GREEN)
(footprint LEDs:LED-0603)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 55A42A2E))
(comp (ref R2)
(value 270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55A42A3A))
(comp (ref C21)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A3A270))
(comp (ref C22)
(value 1nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet http://www.vishay.com/doc?28548)
(fields
(field (name Vendor) Vishay)
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 77-VJ0603Y102JXJPBC)
(field (name "Vendor part") VJ0603Y102JXJPW1BCccccc½))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A4073A))
(comp (ref FB2)
(value "470R EMI")
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet http://search.murata.co.jp/Ceramy/CatalogAction.do?sHinnm=? &sNHinnm=BLM18PG471SN1D&sNhin_key=BLM18PG471SN1D&sLang=en)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-BLM18PG471SN1D)
(field (name "Vendor part") BLM18PG471SN1D)
(field (name Vendor) Murata))
(libsource (lib MysensorsGW-cache) (part FILTER))
(sheetpath (names /) (tstamps /))
(tstamp 55A4194E))
(comp (ref C17)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-GRM39X104K16J))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A436A7))
(comp (ref SW1)
(value Reset)
(footprint mysensors_buttons:SW_SPST_SMD_J-LEAD_4.3MM)
(datasheet http://www.xingda0577.com/ProductShow.asp?ArticleID=40)
(fields
(field (name Vendor) xingda0577)
(field (name "Vendor part") TS-021))
(libsource (lib MysensorsGW-cache) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 55A811E7))
(comp (ref R3)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55A81D84))
(comp (ref R8)
(value 39R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55A81FF3))
(comp (ref C23)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A82881))
(comp (ref R9)
(value 4k7)
(footprint Resistors_SMD:R_0603_HandSoldering)
(fields
(field (name Supplier1) Mouser))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55AA04EC))
(comp (ref R10)
(value 4k7)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55AA06DA))
(comp (ref U2)
(value ATSAMD21J)
(footprint Housings_QFP:TQFP-64_10x10mm_Pitch0.5mm)
(datasheet http://www.atmel.com/images/atmel-42181-sam-d21_datasheet.pdf)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 556-ATSAMD21J18A-AU)
(field (name Vendor) Atmel)
(field (name "Vendor part") ATSAMD21J18A-AU))
(libsource (lib mysensors_mcu) (part ATSAMD21J))
(sheetpath (names /) (tstamps /))
(tstamp 55A33BB0))
(comp (ref D4)
(value LED_YELLOW)
(footprint LEDs:LED-0603)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 55AE86E7))
(comp (ref R6)
(value 270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55AE86ED))
(comp (ref U3)
(value AT24CS32-STUM)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23-5)
(datasheet http://www.mouser.com/ds/2/36/Atmel-8869-SEEPROM-AT24CS32-Datasheet-469859.pdf)
(fields
(field (name Supplier1) Mouser)
(field (name Vendor) Atmel)
(field (name "Vendor part") AT24CS32-STUM-T)
(field (name "Supplier1 part") 556-AT24CS32-STUM-T))
(libsource (lib memory) (part AT24CS32-STUM))
(sheetpath (names /) (tstamps /))
(tstamp 55B1DA97))
(comp (ref C19)
(value 4.7pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet http://www.mouser.com/ds/2/40/useries-37712.pdf)
(fields
(field (name Vendor) AVX)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 581-06035U3R0B)
(field (name "Vendor part") 06035U3R0BAT2A))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55B3A3CD))
(comp (ref FB3)
(value "470R EMI")
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet http://search.murata.co.jp/Ceramy/CatalogAction.do?sHinnm=? &sNHinnm=BLM18PG471SN1D&sNhin_key=BLM18PG471SN1D&sLang=en)
(fields
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 81-BLM18PG471SN1D)
(field (name "Vendor part") BLM18PG471SN1D)
(field (name Vendor) Murata))
(libsource (lib MysensorsGW-cache) (part FILTER))
(sheetpath (names /) (tstamps /))
(tstamp 55B3DC3D))
(comp (ref C14)
(value 1nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet http://www.vishay.com/doc?28548)
(fields
(field (name Vendor) Vishay)
(field (name Supplier1) mouser)
(field (name "Supplier1 part") 77-VJ0603Y102JXJPBC)
(field (name "Vendor part") VJ0603Y102JXJPW1BCccccc½))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55B3E306))
(comp (ref P6)
(value SWC2)
(footprint mysensors_obscurities:2_pin_solder_jumper_smd)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-cache) (part TEST-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 55E2659E))
(comp (ref P7)
(value SWC1)
(footprint mysensors_obscurities:2_pin_solder_jumper_smd)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-cache) (part TEST-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 55E2A22E))
(comp (ref CON1)
(value micro_SD_Card_SPI)
(footprint mysensors_connectors:MM027S020R)
(fields
(field (name "Vendor part") MM027S020R)
(field (name Vendor) "Litkconn Technology Co. LTD"))
(libsource (lib mysensors_connectors) (part micro_SD_Card_SPI))
(sheetpath (names /) (tstamps /))
(tstamp 5696C097))
(comp (ref D6)
(value BAT54)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name Vendor) "ST Micro")
(field (name "Vendor part") BAT54CWFILMY)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 511-BAT54CWFILMY))
(libsource (lib device) (part D_Schottky_x2_KCom_AAK))
(sheetpath (names /) (tstamps /))
(tstamp 56AA8032))
(comp (ref BT1)
(value Battery)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib MysensorsGW-rescue) (part Battery-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 56ABAD62))
(comp (ref D5)
(value LED_ORANGE)
(footprint LEDs:LED-0603)
(fields
(field (name Supplier1) Mouser)
(field (name Supplier2) Digikey))
(libsource (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW))
(sheetpath (names /) (tstamps /))
(tstamp 56ACC815))
(comp (ref R7)
(value 270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56ACC81B))
(comp (ref SW2)
(value SW_INCL)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib MysensorsGW-cache) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 56AD2F30))
(comp (ref W1)
(value SWDIO)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 56D2B149))
(comp (ref W2)
(value SWCLK)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 56D2B207))
(comp (ref W3)
(value RESET)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 56D2B2A1))
(comp (ref W5)
(value "3v3 cpu")
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 56D2BC10))
(comp (ref W4)
(value GND)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 56D2BCF6))
(comp (ref P5)
(value USB_PWR_DIS)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_02X01))
(sheetpath (names /) (tstamps /))
(tstamp 56E9801B))
(comp (ref P1)
(value ANT)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 55627F44))
(comp (ref C10)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 574CA854))
(comp (ref C7)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 574CAC52))
(comp (ref R11)
(value 1M)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57C304B3))
(comp (ref C24)
(value 100nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57D1EF2C))
(comp (ref R12)
(value 1K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 583DE452)))
(libparts
(libpart (lib mysensors_regulators) (part AMS1117)
(description "1A LDO Voltage Regulator")
(docs http://www.advanced-monolithic.com/pdf/ds1117.pdf)
(footprints
(fp SMD_Packages:SOT-223))
(fields
(field (name Reference) U)
(field (name Value) AMS1117))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib memory) (part AT24CS32-STUM)
(description "32Kb (4096x8) Serial EEPROM with Unique Serial Number, SOT-23-5")
(docs http://www.atmel.com/Images/Atmel-8869-SEEPROM-AT24CS32-Datasheet.pdf)
(footprints
(fp SOT-23*)
(fp SOT-23*))
(fields
(field (name Reference) IC)
(field (name Value) AT24CS32-STUM)
(field (name Footprint) SOT-23-5))
(pins
(pin (num 1) (name SCL) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name SDA) (type BiDi))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name WP) (type input))))
(libpart (lib mysensors_mcu) (part ATSAMD21J)
(description "Atmel ATSAM D21J")
(fields
(field (name Reference) U)
(field (name Value) ATSAMD21J))
(pins
(pin (num 1) (name XIN32/PA00) (type BiDi))
(pin (num 2) (name XOUT32/PA01) (type BiDi))
(pin (num 3) (name AIN0/DAC/PA02) (type BiDi))
(pin (num 4) (name AIN1/PA03) (type BiDi))
(pin (num 5) (name PB04/AIN12) (type BiDi))
(pin (num 6) (name PB05/AIN13) (type BiDi))
(pin (num 7) (name GNDANA) (type power_in))
(pin (num 8) (name VDDANA) (type power_in))
(pin (num 9) (name PB06/AIN14) (type BiDi))
(pin (num 10) (name PB07/AIN15) (type BiDi))
(pin (num 11) (name PB08/AIN2) (type BiDi))
(pin (num 12) (name PB09/AIN3) (type BiDi))
(pin (num 13) (name TCC0_W0/AIN4/PA04) (type BiDi))
(pin (num 14) (name TCC0_W1/AIN5/PA05) (type BiDi))
(pin (num 15) (name TCC1_W0/AIN6/PA06) (type BiDi))
(pin (num 16) (name TCC1_W1/AIN7/PA07) (type BiDi))
(pin (num 17) (name SERCOM0:0/AIN16/PA08) (type BiDi))
(pin (num 18) (name SERCOM0:1/AIN17/PA09) (type BiDi))
(pin (num 19) (name SERCOM0:2/AIN18/PA10) (type BiDi))
(pin (num 20) (name SERCOM0:3/AIN19/PA11) (type BiDi))
(pin (num 21) (name VDDIO) (type power_in))
(pin (num 22) (name GND) (type power_in))
(pin (num 23) (name PB10) (type BiDi))
(pin (num 24) (name PB11) (type BiDi))
(pin (num 25) (name PB12/SERCOM4:0) (type BiDi))
(pin (num 26) (name PB13/SERCOM4:1) (type BiDi))
(pin (num 27) (name PB14/SERCOM4:2) (type BiDi))
(pin (num 28) (name PB15/SERCOM4:3) (type BiDi))
(pin (num 29) (name SERCOM2:0/PA12) (type BiDi))
(pin (num 30) (name SERCOM2:1/PA13) (type BiDi))
(pin (num 31) (name SERCOM2:2/XIN/PA14) (type BiDi))
(pin (num 32) (name SERCOM2:3/XOUT/PA15) (type BiDi))
(pin (num 33) (name GND) (type power_in))
(pin (num 34) (name VDDIO) (type power_in))
(pin (num 35) (name SERCOM1:0/PA16) (type BiDi))
(pin (num 36) (name SERCOM1:1/PA17) (type BiDi))
(pin (num 37) (name SERCOM1:2/PA18) (type BiDi))
(pin (num 38) (name SERCOM1:3/PA19) (type BiDi))
(pin (num 39) (name PB16/SERCOM5:0) (type BiDi))
(pin (num 40) (name PB17/SERCOM5:1) (type BiDi))
(pin (num 41) (name SERCOM5:2/PA20) (type BiDi))
(pin (num 42) (name SERCOM5:3/PA21) (type BiDi))
(pin (num 43) (name SERCOM3:0/PA22) (type BiDi))
(pin (num 44) (name SERCOM3:1/PA23) (type BiDi))
(pin (num 45) (name SERCOM3:2/USBDM/PA24) (type BiDi))
(pin (num 46) (name SERCOM3:3/USBDP/PA25) (type BiDi))
(pin (num 47) (name GND) (type power_in))
(pin (num 48) (name VDDIO) (type power_in))
(pin (num 49) (name PB22) (type BiDi))
(pin (num 50) (name PB23) (type BiDi))
(pin (num 51) (name PA27) (type BiDi))
(pin (num 52) (name RESET) (type power_in))
(pin (num 53) (name PA28) (type BiDi))
(pin (num 54) (name GND) (type power_in))
(pin (num 55) (name VDDCORE) (type power_out))
(pin (num 56) (name VDDIN) (type power_in))
(pin (num 57) (name SWCLK/PA30) (type BiDi))
(pin (num 58) (name SWDIO/PA31) (type BiDi))
(pin (num 59) (name PB30) (type BiDi))
(pin (num 60) (name PB31) (type BiDi))
(pin (num 61) (name PB00/AIN8) (type BiDi))
(pin (num 62) (name PB01/AIN9) (type BiDi))
(pin (num 63) (name PB02/AIN2) (type BiDi))
(pin (num 64) (name PB03/AIN3) (type BiDi))))
(libpart (lib mysensors_security) (part ATSHA204A)
(description "ATSHA204A, Secure Authentication and Validation Device, SOT-23, Vcc=3.3V")
(docs http://www.atmel.com/Images/Atmel-8885-CryptoAuth-ATSHA204A-Datasheet.pdf)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) U)
(field (name Value) ATSHA204A)
(field (name Footprint) SOT-23_Handsoldering))
(pins
(pin (num 1) (name SDA) (type BiDi))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name GND) (type power_in))))
(libpart (lib MysensorsGW-rescue) (part Battery-RESCUE-MysensorsGW)
(fields
(field (name Reference) BT)
(field (name Value) Battery-RESCUE-MysensorsGW))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X02)
(description "Connector, single row, 01x02")
(footprints
(fp Pin_Header_Straight_1X02)
(fp Pin_Header_Angled_1X02)
(fp Socket_Strip_Straight_1X02)
(fp Socket_Strip_Angled_1X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib conn) (part CONN_02X01)
(description "Connector, double row, 02x01")
(footprints
(fp Pin_Header_Straight_2X01)
(fp Pin_Header_Angled_2X01)
(fp Socket_Strip_Straight_2X01)
(fp Socket_Strip_Angled_2X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X01))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(footprints
(fp CP*)
(fp C_Axial*)
(fp C_Radial*)
(fp TantalC*)
(fp C*elec)
(fp c_elec*)
(fp SMD*_Pol))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib MysensorsGW-cache) (part CRYSTAL-RESCUE-MysensorsGW)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL-RESCUE-MysensorsGW))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part D_Schottky_x2_KCom_AAK)
(description "Dual schottky diode, common cathode")
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_x2_KCom_AAK))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name A) (type passive))
(pin (num 3) (name K) (type passive))))
(libpart (lib mysensors_connectors) (part Debug)
(description "Cortex M debug connector")
(fields
(field (name Reference) P)
(field (name Value) Debug))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type output))))
(libpart (lib MysensorsGW-cache) (part FILTER)
(fields
(field (name Reference) FB)
(field (name Value) FILTER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib MysensorsGW-rescue) (part LED-RESCUE-MysensorsGW)
(footprints
(fp LED-*)
(fp LED_*))
(fields
(field (name Reference) D)
(field (name Value) LED-RESCUE-MysensorsGW))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib mysensors_connectors) (part MYSX_2.6)
(description "Mysensors expansion connector 2.6")
(docs http://github.com/mysensors-kicad/documentation/raw/master/TheMYSXconnector.pdf)
(footprints
(fp MYSX_2.6))
(fields
(field (name Reference) P)
(field (name Value) MYSX_2.6))
(pins
(pin (num 1) (name Vraw) (type passive))
(pin (num 2) (name +3.3V) (type passive))
(pin (num 3) (name VCCio) (type passive))
(pin (num 4) (name GND) (type passive))
(pin (num 5) (name D1_DFM) (type passive))
(pin (num 6) (name D2_DTM) (type passive))
(pin (num 7) (name RST) (type passive))
(pin (num 8) (name LEGACY_ID) (type passive))
(pin (num 9) (name D3_INT) (type passive))
(pin (num 10) (name D4_INT) (type passive))
(pin (num 11) (name D5_PWM) (type passive))
(pin (num 12) (name D6_PWM) (type passive))
(pin (num 13) (name D7_SCL) (type passive))
(pin (num 14) (name D8_SDA) (type passive))
(pin (num 15) (name D9_A3) (type passive))
(pin (num 16) (name D10_A4) (type passive))
(pin (num 17) (name D11_MOSI) (type passive))
(pin (num 18) (name D12_MISO) (type passive))
(pin (num 19) (name D13_SCK) (type passive))
(pin (num 20) (name D14_CS) (type passive))
(pin (num 21) (name A5) (type passive))
(pin (num 22) (name A6) (type passive))))
(libpart (lib mysensors_radios) (part NRF24L01)
(description NRF24L01+)
(fields
(field (name Reference) U)
(field (name Value) NRF24L01))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name CE) (type input))
(pin (num 4) (name CSN) (type input))
(pin (num 5) (name SCK) (type input))
(pin (num 6) (name MOSI) (type input))
(pin (num 7) (name MISO) (type input))
(pin (num 8) (name IRQ) (type output))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib mysensors_radios) (part RFM69HW)
(description "RFM69HW, 868Mhz +20dBm HopeRF Wireless Transceiver, Vcc=3.3V")
(docs http://modtronicsaustralia.com/wp-content/uploads/2014/11/RFM69HW-V1.3.pdf)
(footprints
(fp RFM69*))
(fields
(field (name Reference) U)
(field (name Value) RFM69HW)
(field (name Footprint) mysensors_radios:RFM69HW_SMD_ThroughHole_Handsoldering))
(pins
(pin (num 1) (name RESET) (type BiDi))
(pin (num 2) (name DIO0) (type BiDi))
(pin (num 3) (name DIO1) (type BiDi))
(pin (num 4) (name DIO2) (type BiDi))
(pin (num 5) (name DIO3) (type BiDi))
(pin (num 6) (name DIO4) (type BiDi))
(pin (num 7) (name DIO5) (type BiDi))
(pin (num 8) (name 3.3V) (type power_in))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name ANA) (type passive))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name SCK) (type input))
(pin (num 13) (name MISO) (type 3state))
(pin (num 14) (name MOSI) (type input))
(pin (num 15) (name NSS) (type input))
(pin (num 16) (name NC) (type passive))))
(libpart (lib MysensorsGW-cache) (part SW_PUSH)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib MysensorsGW-cache) (part TEST-RESCUE-MysensorsGW)
(fields
(field (name Reference) W)
(field (name Value) TEST-RESCUE-MysensorsGW))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part TEST_1P)
(description point)
(fields
(field (name Reference) W)
(field (name Value) TEST_1P))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib MysensorsGW-cache) (part USB-MINI-B)
(aliases
(alias USB-MICRO-B))
(footprints
(fp USB-Mini-B-Jack))
(fields
(field (name Reference) CON)
(field (name Value) USB-MINI-B))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type BiDi))
(pin (num 3) (name D+) (type BiDi))
(pin (num 4) (name ID) (type BiDi))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name SHELL1) (type passive))
(pin (num 7) (name SHELL2) (type passive))
(pin (num 8) (name SHELL3) (type passive))
(pin (num 9) (name SHELL4) (type passive))))
(libpart (lib mysensors_network) (part W5100)
(description "Wiznet W5100")
(fields
(field (name Reference) U)
(field (name Value) W5100))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name RST) (type input))
(pin (num 4) (name CS) (type input))
(pin (num 5) (name SCK) (type input))
(pin (num 6) (name MOSI) (type input))
(pin (num 7) (name MISO) (type output))
(pin (num 8) (name N/A) (type NotConnected))
(pin (num 9) (name N/A) (type NotConnected))
(pin (num 10) (name N/A) (type NotConnected))))
(libpart (lib mysensors_connectors) (part micro_SD_Card_SPI)
(description "SD Card Reader")
(docs http://portal.fciconnect.com/Comergent//fci/drawing/10067847.pdf)
(footprints
(fp SD_Card_Receptacle))
(fields
(field (name Reference) CON)
(field (name Value) micro_SD_Card_SPI)
(field (name Footprint) MM0270S02R_SPI))
(pins
(pin (num 1) (name N/C) (type input))
(pin (num 2) (name CS) (type input))
(pin (num 3) (name DI) (type input))
(pin (num 4) (name VDD) (type input))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type input))
(pin (num 7) (name DO) (type input))
(pin (num 8) (name N/C) (type input))
(pin (num 9) (name CARD_DETECT) (type input))
(pin (num 10) (name SHELL1) (type input)))))
(libraries
(library (logical mysensors_security)
(uri /home/thomas/gits/GitHub/mysensors-kicad/mysensors_symbols/mysensors_security.lib))
(library (logical mysensors_regulators)
(uri /home/thomas/gits/GitHub/mysensors-kicad/mysensors_symbols/mysensors_regulators.lib))
(library (logical mysensors_radios)
(uri /home/thomas/gits/GitHub/mysensors-kicad/mysensors_symbols/mysensors_radios.lib))
(library (logical mysensors_network)
(uri /home/thomas/gits/GitHub/mysensors-kicad/mysensors_symbols/mysensors_network.lib))
(library (logical mysensors_connectors)
(uri /home/thomas/gits/GitHub/mysensors-kicad/mysensors_symbols/mysensors_connectors.lib))
(library (logical mysensors_mcu)