forked from fallberg/MySensorsNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMySensorsNode.net
2044 lines (2044 loc) · 103 KB
/
MySensorsNode.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/fallberg/gits/GitHub/MySensorsNode/MySensorsNode.sch)
(date "Sun 13 Sep 2015 03:36:32 PM CEST")
(tool "Eeschema 0.201509101502+6177~30~ubuntu14.04.1-product")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "MySensors Node")
(company "Designer: Patrick Fallberg")
(rev 1.1)
(date "Fri 17 Apr 2015")
(source MySensorsNode.sch)
(comment (number 1) (value "Copyright (c) 2015 Patrick Fallberg"))
(comment (number 2) (value "Licensed under CERN OHL v.1.2"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet http://www.mouser.com/ds/2/427/vjw1bcbascomseries-223529.pdf)
(fields
(field (name Vendor) Vishay)
(field (name "Vendor part") VJ1206Y104KXXCW1BC)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1759312)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/mc1206b104k250ct/cap-mlcc-x7r-25v-100nf-1206/dp/1759312)
(field (name Supplier2) AliExpress)
(field (name "Supplier2 part") 32323646062)
(field (name "Supplier2 link") http://www.aliexpress.com/item/200pcs-lot-CL31B104KACNNNC-Ceramic-Capacitors-CAP-CER-0-1UF-25V-10-X7R-1206/32323646062.html)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 77-VJ1206Y104KXXCBC)
(field (name "Supplier3 link") http://www.mouser.se/ProductDetail/Vishay-Vitramon/VJ1206Y104KXXCW1BC/?qs=sGAEpiMZZMs0AnBnWHyRQLWhsuYvNua173KAs7M5TbI%3d)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 1276-2742-1-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/t4zm2w)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 65-755-90)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=65-755-90))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5524E772))
(comp (ref C5)
(value 10uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet http://www.mouser.com/ds/2/427/vjw1bcbascomseries-223529.pdf)
(fields
(field (name Vendor) "Vishay / Vitramon")
(field (name "Vendor part") VJ1206V106ZXQTW1BC)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32308484869)
(field (name "Supplier1 link") http://www.aliexpress.com/item/100pcs-1206-3216-106K-10uF-16V-106-Ceramic-SMD-Capacitors-NEW-Products-and-ROHS/32308484869.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 77-VJ1206V106ZXQTBC)
(field (name "Supplier2 link") http://se.mouser.com/Search/ProductDetail.aspx?R=VJ1206V106ZXQTW1BCvirtualkey61340000virtualkey77-VJ1206V106ZXQTBC)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 1759434)
(field (name "Supplier3 link") http://se.farnell.com/multicomp/mc1206f106z100ct/cap-mlcc-y5v-10uf-1206/dp/1759434)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 399-1299-1-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/7w1z1n)
(field (name Supplier5) RS)
(field (name "Supplier5 part") 723-6616)
(field (name "Supplier5 link") http://se.rs-online.com/web/p/ceramic-multilayer-capacitors/7236616))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 552DA4D5))
(comp (ref Q2)
(value DMP3056L-7)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23_Handsoldering)
(datasheet http://www.mouser.com/ds/2/115/DMP3056L-526286.pdf)
(fields
(field (name Vendor) "Diodes Incorporated")
(field (name "Vendor part") DMP3056L-7)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32446073237)
(field (name "Supplier1 link") http://www.aliexpress.com/item/Free-Shipping-20PCS-lot-DMP3056L-7-MOSFET-P-CH-30V-4-3A-SOT23-3056-DMP3056/32446073237.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 621-DMP3056L-7)
(field (name "Supplier2 link") http://www.mouser.com/ProductDetail/Diodes-Incorporated/DMP3056L-7/?qs=sGAEpiMZZMshyDBzk1%2fWi0dsXOGve85x57LCxQMsytBvvrEFpdn1rw%3d%3d)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") DMP3056L-7DICT-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7wd8q3)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 71-397-02)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=71-397-02)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 1894624)
(field (name "Supplier5 link") http://se.farnell.com/nxp/pmv32up/mosfet-p-ch-20v-4a-sot23/dp/1894624))
(libsource (lib device) (part Q_PMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 552E2DE5))
(comp (ref U5)
(value NRF24L01)
(footprint mysensors_radios:NRF24L01)
(datasheet http://www.farnell.com/datasheets/1697510.pdf)
(fields
(field (name Vendor) MULTICOMP)
(field (name "Vendor part") 2214S-08SG-85)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1593489)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/2214s-08sg-85/socket-pcb-2-row-vert-8way/dp/1593489)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") A106657-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w1mzt)
(field (name Supplier3) RS)
(field (name "Supplier3 part") 495-8638)
(field (name "Supplier3 link") http://se.rs-online.com/web/p/pcb-sockets/4958638)
(field (name Supplier4) Mouser)
(field (name "Supplier4 part") 517-929975-01-04-RK)
(field (name "Supplier4 link") http://www.mouser.com/ProductDetail/3M-Electronic-Solutions-Division/929975-01-04-RK/?qs=sGAEpiMZZMs%252bGHln7q6pm%252bCiuHjnbsudhj3Q0sp5gbo%3d)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-006-59)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-006-59))
(libsource (lib conn) (part CONN_02X04))
(sheetpath (names /) (tstamps /))
(tstamp 552E4BE6))
(comp (ref U6)
(value AT25DF512C)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet http://www.mouser.com/ds/2/590/DS-AT25DF512C-030-534014.pdf)
(fields
(field (name Vendor) "Adesto Technologies")
(field (name "Vendor part") AT25DF512C-SSHN-B)
(field (name Supplier1) RS)
(field (name "Supplier1 part") 822-8477)
(field (name "Supplier1 link") http://se.rs-online.com/web/p/flash-memory-chips/8228477)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 988-AT25DF512CSSHN-B)
(field (name "Supplier2 link") http://www.mouser.com/Search/ProductDetail.aspx?R=AT25DF512C-SSHN-Bvirtualkey58070000virtualkey988-AT25DF512CSSHN-B)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 2414322)
(field (name "Supplier3 link") http://se.farnell.com/adesto-technologies/at45db041e-sshn-b/memory-serial-flash-4mbit-soic/dp/2414322)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 1265-1114-1-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/7wd874))
(libsource (lib mysensors_memories) (part AT25DF512C))
(sheetpath (names /) (tstamps /))
(tstamp 552E7970))
(comp (ref P2)
(value CONN_02X03)
(footprint Pin_Headers:Pin_Header_Straight_2x03)
(datasheet http://www.farnell.com/datasheets/1712126.pdf)
(fields
(field (name Vendor) HARWIN)
(field (name "Vendor part") M20-9980346)
(field (name Supplier1) RS)
(field (name "Supplier1 part") 745-7046)
(field (name "Supplier1 link") http://se.rs-online.com/web/p/pcb-headers/7457046)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 855-M20-9980346)
(field (name "Supplier2 link") http://www.mouser.se/ProductDetail/Harwin/M20-9980346/?qs=%2fha2pyFaduhF0xjSTgJg%252bkaP8L713UFDeQoHCJb4jBYifn4jgog68g%3d%3d)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 952-2121-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7w1m89)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1022230)
(field (name "Supplier4 link") http://se.farnell.com/harwin/m20-9980345/header-tht-vertical-2-54mm-6way/dp/1022230)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-006-07)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-006-07))
(libsource (lib conn) (part CONN_02X03))
(sheetpath (names /) (tstamps /))
(tstamp 552F36A8))
(comp (ref U3)
(value ATSHA204A)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23_Handsoldering)
(datasheet http://www.mouser.com/ds/2/36/Atmel-8885-CryptoAuth-ATSHA204A-Datasheet-336392.pdf)
(fields
(field (name Vendor) Atmel)
(field (name "Vendor part") ATSHA204A)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 566-ATSHA204ASTUCZ-T)
(field (name "Supplier1 link") http://www.mouser.com/Search/ProductDetail.aspx?R=ATSHA204A-STUCZ-Tvirtualkey55660000virtualkey566-ATSHA204ASTUCZ-T)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") ATSHA204A-STUCZ-TCT-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7wd837))
(libsource (lib mysensors_security) (part ATSHA204A))
(sheetpath (names /) (tstamps /))
(tstamp 552F8C01))
(comp (ref L1)
(value 4.7uH)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet http://www.yuden.co.jp/productdata/catalog/en/wound02_e.pdf)
(fields
(field (name Vendor) "Taiyo Yuden")
(field (name "Vendor part") CBC2012T4R7M)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 2215656)
(field (name "Supplier1 link") http://se.farnell.com/tdk/mlz2012m4r7wt/inductor-shielded-4-7uh-20/dp/2215656)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 587-1602-1-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/tc5dd3)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 963-CBC2012T4R7M)
(field (name "Supplier3 link") http://se.mouser.com/ProductDetail/Taiyo-Yuden/CBC2012T4R7M/?qs=sGAEpiMZZMsg%252by3WlYCkU5iuzh4MJmq07CcsYWeuPq4%3d)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 10-969-35)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=10-969-35))
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 553348BA))
(comp (ref U7)
(value ArduinoProMini)
(footprint mysensors_arduino:pro_mini)
(datasheet http://www.arduino.cc/en/uploads/Main/Arduino-Pro-Mini-schematic.pdf)
(fields
(field (name Vendor) Arduino)
(field (name "Vendor part") "Pro Mini (China model)")
(field (name Supplier1) eBay)
(field (name "Supplier1 part") 200914924969)
(field (name "Supplier1 link") http://www.ebay.com/itm/200914924969)
(field (name Supplier2) AliExpress)
(field (name "Supplier2 part") 32313595044)
(field (name "Supplier2 link") http://www.aliexpress.com/item/1pcs-lot-Pro-Mini-328-Mini-3-3V-8M-ATMEGA328-ATMEGA328P-AU-3-3V-8MHz-for/32313595044.html)
(field (name "Socket 1x12") http://se.farnell.com/multicomp/2212s-12sg-85/socket-pcb-1-row-12way/dp/1593465)
(field (name "Socket 1x2") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-839-88&toc=19754)
(field (name "Socket 1x3") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-839-89&toc=19754))
(libsource (lib mysensors_arduino) (part ArduinoProMini))
(sheetpath (names /) (tstamps /))
(tstamp 5536785D))
(comp (ref U4)
(value RFM69HW)
(footprint mysensors_radios:RFM69HW_SMD_ThroughHole_Handsoldering)
(datasheet http://modtronicsaustralia.com/wp-content/uploads/2014/11/RFM69HW-V1.3.pdf)
(fields
(field (name Vendor) "HOPE Microelectronics")
(field (name "Vendor part") RFM69HW)
(field (name Supplier1) eBay)
(field (name "Supplier1 part") 171567167962)
(field (name "Supplier1 link") http://www.ebay.com/itm/171567167962)
(field (name Supplier2) AliExpress)
(field (name "Supplier2 part") 2010762994)
(field (name "Supplier2 link") http://www.aliexpress.com/item//2010762994.html?aff_platform=aaf&sk=unUFyvvZB%3A&cpt=1441897274529&aff_trace_key=e3b1cec3d07644edbd4dddec09283fd7-1441897274529-05462-unUFyvvZB)
(field (name "2mm pin socket") http://www.mouser.com/ProductDetail/Harwin/M22-7130842/?qs=%2fha2pyFadujy23xR9E3lHxZ9vuMwSZ6%252buh9eBJP9X58%3d)
(field (name "2mm pin header") http://www.mouser.com/ProductDetail/3M-Electronic-Solutions-Division/951108-8622-AR/?qs=sGAEpiMZZMs%252bGHln7q6pm2gMDRBEY0JUX8rF61eZHD0%3d))
(libsource (lib mysensors_radios) (part RFM69HW))
(sheetpath (names /) (tstamps /))
(tstamp 553605F7))
(comp (ref ANT1)
(value CONN_01X01)
(footprint Wire_Pads:SolderWirePad_single_1-2mmDrill)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 55363F41))
(comp (ref R4)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Vishay)
(field (name "Vendor part") CRCW080510K0FKEA)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 681263963)
(field (name "Supplier1 link") http://www.aliexpress.com/item/1000-PCS-0805-10K-103-1-SMD-Chip-Resistors-Surface-Mount/681263963.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-103D)
(field (name "Supplier2 link") http://se.mouser.com/Search/ProductDetail.aspx?R=RR1220P-103-Dvirtualkey67280000virtualkey754-RR1220P-103D)
(field (name Supplier3) Elfa)
(field (name "Supplier3 part") 60-587-42)
(field (name "Supplier3 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-587-42)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1653284)
(field (name "Supplier4 link") http://se.farnell.com/susumu/rr1220p-103-d/tunnfilm-chipmotst-nd/dp/1653284)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") RR12P10.0KDCT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7wv3tf))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55490BF2))
(comp (ref R1)
(value 150K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet http://www.farnell.com/datasheets/1581132.pdf)
(fields
(field (name Vendor) "Vishay / Dale")
(field (name "Vendor part") CRCW0805150KFKEA)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32218540982)
(field (name "Supplier1 link") http://www.aliexpress.com/item/0805-SMD-Resistors-150K-150K-ohm-1-8W-1-0805-SMD-Resistors-0805-Chip-resistor-500pcs/32218540982.html)
(field (name Supplier2) Farnell)
(field (name "Supplier2 part") 2078969)
(field (name "Supplier2 link") http://se.farnell.com/welwyn/asc0805-150kft5/resistor-anti-sulphur-0805-150k/dp/2078969)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 71-CRCW0805-150K-E3)
(field (name "Supplier3 link") http://se.mouser.com/ProductDetail/Vishay-Dale/CRCW0805150KFKEA/?qs=sGAEpiMZZMvdGkrng054txEw7b1YnvGukcj15DsDxV0%3d)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 541-150KCCT-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/tcbcn3)
(field (name Supplier5) RS)
(field (name "Supplier5 part") 2508365162)
(field (name "Supplier5 link") http://se.rs-online.com/web/p/surface-mount-fixed-resistors/2508365162))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55758384))
(comp (ref RV1)
(value 1M)
(footprint Potentiometers:Potentiometer_Bourns_3296Y_3-8Zoll_Angular_ScrewUp)
(datasheet http://www.farnell.com/datasheets/1815117.pdf)
(fields
(field (name Vendor) BOURNS)
(field (name "Vendor part") 3296Y-1-105LF)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32385304606)
(field (name "Supplier1 link") http://www.aliexpress.com/item/3296Y-1000000ohm-1Mohm-3296Y-1-105LF-Multiturn-Metallic-Glass-Glaze-Potentiometer-Bourns-3296-series/32385304606.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 652-3296Y-1-105LF)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Bourns/3296Y-1-105LF/?qs=sGAEpiMZZMvygUB3GLcD7sSg8po3Zpo3B4ds1vJ8JQM%3d)
(field (name Supplier3) Elfa)
(field (name "Supplier3 part") 64-007-47)
(field (name "Supplier3 link") https://www.elfa.se/elfa3~se_sv/elfa/init.do?item=64-007-47)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 3296Y-105LF-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/tt8mj7)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 9353542)
(field (name "Supplier5 link") http://se.farnell.com/bourns/3296y-1-105lf/trimmer-25-varv-1m/dp/9353542))
(libsource (lib device) (part POT))
(sheetpath (names /) (tstamps /))
(tstamp 559987C6))
(comp (ref C8)
(value C)
(footprint Resistors_Universal:Resistor_SMD+THTuniversal_0805to1206_RM10_HandSoldering)
(fields
(field (name Vendor) "User specific")
(field (name Supplier1) "User specific"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 559E92E6))
(comp (ref P1)
(value MYSX_1.5)
(footprint mysensors_connectors:MYSX_1.5)
(datasheet http://www.mouser.com/ds/2/181/M20-998-351176.pdf)
(fields
(field (name Vendor) HARWIN)
(field (name "Vendor part") M20-9981045)
(field (name Supplier1) Elfa)
(field (name "Supplier1 part") 43-702-35)
(field (name "Supplier1 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-702-35)
(field (name Supplier2) RS)
(field (name "Supplier2 part") 681-2969)
(field (name "Supplier2 link") http://se.rs-online.com/web/p/pcb-headers/6812969)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 855-M20-9981045)
(field (name "Supplier3 link") http://www.mouser.se/ProductDetail/Harwin/M20-9981045/?qs=%2fha2pyFadujqlg98%252bRR1%2foXEmwb1N0a2JtD8074fLsjJTaqL0Cbd0A%3d%3d)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 952-2129-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/t4z5r3)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 2127560)
(field (name "Supplier5 link") http://se.farnell.com/harwin/m20-9981045/board-to-board-connector-header/dp/2127560))
(libsource (lib mysensors_connectors) (part MYSX_1.5))
(sheetpath (names /) (tstamps /))
(tstamp 55A4D0B3))
(comp (ref C4)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_HandSoldering)
(datasheet http://www.mouser.com/ds/2/40/f93-221107.pdf)
(fields
(field (name Vendor) AVX)
(field (name "Vendor part") F931C106MAA)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 647-F931C106MAA)
(field (name "Supplier1 link") http://www.mouser.se/ProductDetail/AVX/F931C106MAA/?qs=sGAEpiMZZMuEN2agSAc2puC4lhRhLeolmYomTIpwaLE%3d)
(field (name Supplier2) Farnell)
(field (name "Supplier2 part") 2493378)
(field (name "Supplier2 link") http://se.farnell.com/vishay-sprague/tp3a106k016c1700as/cap-tant-aec-q200-10uf-16v-case/dp/2493378)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 478-8237-1-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/t4q4zv))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 55A5FA76))
(comp (ref U1)
(value LD1117DT33TR)
(footprint mysensors_obscurities:d-pak-kcswalter)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
(fields
(field (name Vendor) STMicroelectronics)
(field (name "Vendor part") LD1117DT33TR)
(field (name Supplier1) RS)
(field (name "Supplier1 part") 686-9252)
(field (name "Supplier1 link") http://se.rs-online.com/web/p/low-dropout-voltage-regulators/6869252)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 511-LD1117DT33-TR)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/STMicroelectronics/LD1117DT33TR/?qs=sGAEpiMZZMvYvv22R2xfeIrtZ8xsVhPOTRtOhMdYKBM%3d)
(field (name Supplier3) AliExpress)
(field (name "Supplier3 part") 32395965284)
(field (name "Supplier3 link") http://www.aliexpress.com/item/ICIC-LD1117-LD1117DT33TR-LD1117-3-3V-TO-252-Original-authentic-and-new-Free-Shipping-IC/32395965284.html))
(libsource (lib regul) (part LD1117S33TR))
(sheetpath (names /) (tstamps /))
(tstamp 55A6076D))
(comp (ref BT3)
(value Generic)
(footprint mysensors_connectors:TerminalBlock2.54mmx2-kcswalter)
(datasheet http://www.mouser.com/ds/2/418/NG_CD_282834_C1-665080.pdf)
(fields
(field (name Vendor) "TE Connectivity")
(field (name "Vendor part") 282834-2)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 1252981306)
(field (name "Supplier1 link") http://www.aliexpress.com/item/20pcs-2-Poles-2-Pin-2-54mm-0-1-PCB-Universal-Screw-Terminal-Block-Connector-G01/1252981306.html)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") ED10561-ND)
(field (name "Supplier2 link") http://www.digikey.com/short/tzt88w)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 571-282834-2)
(field (name "Supplier3 link") http://www.mouser.se/ProductDetail/TE-Connectivity/282834-2/?qs=sGAEpiMZZMvZTcaMAxB2AJ%2f79sE4hFAYo1Yb6cyIxXA%3d))
(libsource (lib device) (part Battery))
(sheetpath (names /) (tstamps /))
(tstamp 55A65DE6))
(comp (ref C1)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeC_EIA-6032_HandSoldering)
(datasheet http://www.avx.com/docs/Catalogs/tps.pdf)
(fields
(field (name Vendor) AVX)
(field (name "Vendor part") TPSC476K016R0350)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32444935172)
(field (name "Supplier1 link") http://www.aliexpress.com/item/Free-Shipping-6032-SMD-Tantalum-Capacitor-16V-47UF-C-Type-C6032-TOL-10-5pcs-lot/32444935172.html)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 478-1773-1-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/t3t5v5)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 581-TPSC476K016R0350)
(field (name "Supplier3 link") http://se.mouser.com/ProductDetail/AVX/TPSC476K016R0350/?qs=sGAEpiMZZMuEN2agSAc2pqveSFvydLQ7xWNXjpUWqVg%3d)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1754090)
(field (name "Supplier4 link") http://se.farnell.com/vishay-sprague/tr3c476k016c0350/cap-tant-47uf-16v-case-c/dp/1754090)
(field (name Supplier5) RS)
(field (name "Supplier5 part") 407-0047)
(field (name "Supplier5 link") http://se.rs-online.com/web/p/tantalum-capacitors/4070047))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 55A66216))
(comp (ref JP2)
(value JUMPER3)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet http://www.mouser.com/ds/2/1/3m_ts0816-349901.pdf)
(fields
(field (name Vendor) HARWIN)
(field (name "Vendor part") M20-9990346)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1593412)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/2211s-03g/header-1-row-vert-3way/dp/1593412)
(field (name Supplier2) RS)
(field (name "Supplier2 part") 745-7068)
(field (name "Supplier2 link") http://se.rs-online.com/web/p/pcb-headers/7457068)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 952-2264-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7w1485)
(field (name Supplier4) Mouser)
(field (name "Supplier4 part") 517-9611036804AR)
(field (name "Supplier4 link") http://www.mouser.com/ProductDetail/3M-Electronic-Solutions-Division/961103-6804-AR/?qs=sGAEpiMZZMs%252bGHln7q6pm53vbKor1bMJoeppOe7LBrw%3d)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-004-91)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-004-91))
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 55A66EE6))
(comp (ref BT4)
(value CR123)
(footprint mysensors_connectors:CR123_holder)
(datasheet http://www.mouser.com/ds/2/215/051-743208.pdf)
(fields
(field (name Vendor) "Keystone Electronics")
(field (name "Vendor part") 1051)
(field (name Supplier1) eBay)
(field (name "Supplier1 part") 181790677824)
(field (name "Supplier1 link") http://www.ebay.com/itm/181790677824)
(field (name Supplier2) AliExpress)
(field (name "Supplier2 part") 724661148)
(field (name "Supplier2 link") http://www.aliexpress.com/item/20PCS-LOT-Plastic-Battery-Holder-Case-Box-For-CR123-CR123A-CR16340-and-CR17335-Photo-Lithium-Battery/724661148.html)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 36-1051-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/t4b3bp)
(field (name Supplier4) Mouser)
(field (name "Supplier4 part") 534-1051)
(field (name "Supplier4 link") http://www.mouser.se/ProductDetail/Keystone-Electronics/1051/?Keystone-Electronics%2f1051%2f&Keystone-Electronics%2f1051%2f&qs=sGAEpiMZZMvEjrTWH%2f8WZ5YOpCuoa01R))
(libsource (lib device) (part Battery))
(sheetpath (names /) (tstamps /))
(tstamp 55A702F9))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet http://www.farnell.com/datasheets/1825494.pdf)
(fields
(field (name Vendor) MULTICOMP)
(field (name "Vendor part") MCSH31B104K250CT)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1856619)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/mcsh31b104k250ct/cap-mlcc-x7r-100nf-25v-1206/dp/1856619)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 77-VJ1206Y104KXQPBC)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Vishay-Vitramon/VJ1206Y104KXQPW1BC/?qs=sGAEpiMZZMs0AnBnWHyRQHefeAIkSpb%2fQ4QtfI01vrc%3d)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 399-1249-1-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7w1zrd)
(field (name Supplier4) AliExpress)
(field (name "Supplier4 part") 32274650296)
(field (name "Supplier4 link") http://www.aliexpress.com/item/1206-100NF-104M-Y5V-50V-SMD-Capacitor-Multilayer-chip-ceramic-capacitor-100Pcs-Lot/32274650296.html)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 65-724-45)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=65-724-45))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 55A9EB0C))
(comp (ref R9)
(value 56K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Panasonic)
(field (name "Vendor part") ERJP06F5602V)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32218601304)
(field (name "Supplier1 link") http://www.aliexpress.com/item/0805-SMD-Resistors-56K-56K-ohm-1-8W-1-0805-SMD-Resistors-0805-Chip-resistor-500pcs/32218601304.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-563D)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Susumu/RR1220P-563-D/?qs=sGAEpiMZZMu61qfTUdNhG%2fDhcyQpRg8M1xaFMP9nk6g%3d)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 1500644RL)
(field (name "Supplier3 link") http://se.farnell.com/yageo-phycomp/rt0603fre0756kl/motst-nd-0603-1-50ppm-56k/dp/1500644RL)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 60-255-52)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-255-52)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") 541-56KACT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7v5tfw))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55AAFEAB))
(comp (ref C2)
(value 4.7uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(datasheet http://www.avx.com/docs/Catalogs/tps.pdf)
(fields
(field (name Vendor) AVX)
(field (name "Vendor part") TPSB475K025R0900)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32456411946)
(field (name "Supplier1 link") http://www.aliexpress.com/item/Free-shipping-20pcs-B-3528-4-7uF-16V-SMD-tantalum-capacitor/32456411946.html)
(field (name Supplier2) Farnell)
(field (name "Supplier2 part") 1432589RL)
(field (name "Supplier2 link") http://se.farnell.com/avx/tpsb475k025r0900/cap-tant-4-7uf-25v-case-b/dp/1432589RL)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 478-2408-1-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/t3tnrw)
(field (name Supplier4) Mouser)
(field (name "Supplier4 part") 581-TPSB475K025R0900)
(field (name "Supplier4 link") http://se.mouser.com/ProductDetail/AVX/TPSB475K025R0900/?qs=sGAEpiMZZMuEN2agSAc2pkIWJcW2hAciBvjiIg4pnBc%3d)
(field (name Supplier5) RS)
(field (name "Supplier5 part") 699-3349)
(field (name "Supplier5 link") http://se.rs-online.com/web/p/tantalum-capacitors/6993349))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 55A66528))
(comp (ref BT2)
(value JST)
(footprint mysensors_connectors:s2b-ph-kl-kcswalter)
(datasheet http://www.farnell.com/datasheets/80564.pdf)
(fields
(field (name Vendor) JST)
(field (name "Vendor part") "S2B-PH-K-S (LF)(SN)")
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 1709786094)
(field (name "Supplier1 link") http://www.aliexpress.com/item/free-shipping-2-0mm-2pin-header-wire-to-board-wire-2pin-connector/1709786094.html)
(field (name Supplier2) Farnell)
(field (name "Supplier2 part") 9491902)
(field (name "Supplier2 link") http://se.farnell.com/jst-japan-solderless-terminals/s2b-ph-k-s-lf-sn/connector-header-tht-r-a-2mm-2way/dp/9491902)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 455-1719-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7wd8fm)
(field (name Supplier4) RS)
(field (name "Supplier4 part") 820-1494)
(field (name "Supplier4 link") http://se.rs-online.com/web/p/pcb-headers/8201494)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-019-56)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-019-56))
(libsource (lib device) (part Battery))
(sheetpath (names /) (tstamps /))
(tstamp 55AC0311))
(comp (ref BT1)
(value "2.5mm jack")
(footprint mysensors_connectors:dc_socket-kcswalter)
(datasheet http://www.mouser.com/ds/2/393/rapc712x_cd-371318.pdf)
(fields
(field (name Vendor) Switchcraft)
(field (name "Vendor part") RAPC712X)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 1614043178)
(field (name "Supplier1 link") http://www.aliexpress.com/item/2-5mm-DC-Jack-DC-Socket-DC-Power-Jack-50pcs-lot-for-Compaq-Armada-4150-4150T/1614043178.html)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") CP-037B-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7wd85d)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 502-RAPC712X)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/Switchcraft/RAPC712X/?qs=%2fha2pyFaduiv7gT0zkJoWDDALrhvBCbfGdYVfdLqIXI%3d)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1608726)
(field (name "Supplier4 link") http://se.farnell.com/switchcraft/rapc712x/jack-socket-dc-250v-5a/dp/1608726)
(field (name Supplier5) RS)
(field (name "Supplier5 part") 878-6724)
(field (name "Supplier5 link") http://se.rs-online.com/web/p/dc-power-plugs/8786724))
(libsource (lib device) (part JACK_2P))
(sheetpath (names /) (tstamps /))
(tstamp 55AC20ED))
(comp (ref BT5)
(value 24.5mm)
(footprint mysensors_connectors:keystone_3009-kcswalter)
(datasheet http://www.mouser.com/ds/2/215/3039-285159.pdf)
(fields
(field (name Vendor) "Keystone Electronics")
(field (name "Vendor part") 3039)
(field (name Supplier1) Digi-Key)
(field (name "Supplier1 part") 36-3039-ND)
(field (name "Supplier1 link") http://www.digikey.se/short/t4bqwf)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 534-3039)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Keystone-Electronics/3039/?qs=sGAEpiMZZMtT9MhkajLHrg1t4FKJFDRo6aSYuA6EkaQ%3d))
(libsource (lib device) (part Battery))
(sheetpath (names /) (tstamps /))
(tstamp 55AD573A))
(comp (ref U8)
(value Si7021)
(footprint Housings_DFN_QFN:DFN-6-1EP_3x3mm_Pitch0.95mm)
(datasheet https://www.silabs.com/Support%20Documents/TechnicalDocs/Si7021-A20.pdf)
(fields
(field (name Vendor) "Silicon Labs")
(field (name "Vendor part") Si7021-A20-GM1)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 634-SI7021-A20-GM1)
(field (name "Supplier1 link") http://se.mouser.com/ProductDetail/Silicon-Laboratories/Si7021-A20-GM1/?qs=%2fha2pyFadui6Dvt2xzmSk506p8kuq9IPcwxXOGvbC6DKuSuYwfl5jiRwUNja2Nap)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 336-3141-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/t4z9dd)
(field (name Supplier3) RS)
(field (name "Supplier3 part") 865-2328)
(field (name "Supplier3 link") http://se.rs-online.com/web/p/temperature-humidity-sensors/8652328)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 2473671)
(field (name "Supplier4 link") http://se.farnell.com/silicon-labs/si7021-a20-gm1/temp-fuktighet-sensor--0-4gr-c/dp/2473671))
(libsource (lib mysensors_sensors) (part Si7021))
(sheetpath (names /) (tstamps /))
(tstamp 55B39BA0))
(comp (ref P3)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet http://www.mouser.com/ds/2/1/3m_ts0816-349901.pdf)
(fields
(field (name Vendor) HARWIN)
(field (name "Vendor part") M20-9993646)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1593412)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/2211s-03g/header-1-row-vert-3way/dp/1593412)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 952-2264-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w1485)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 517-9611036804AR)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/3M-Electronic-Solutions-Division/961103-6804-AR/?qs=sGAEpiMZZMs%252bGHln7q6pm53vbKor1bMJoeppOe7LBrw%3d)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 43-004-91)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-004-91))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 55B55DD2))
(comp (ref P4)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet http://www.mouser.com/ds/2/1/3m_ts0816-349901.pdf)
(fields
(field (name Vendor) HARWIN)
(field (name "Vendor part") M20-9993646)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 1593412)
(field (name "Supplier1 link") http://se.farnell.com/multicomp/2211s-03g/header-1-row-vert-3way/dp/1593412)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 952-2264-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w1485)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 517-9611036804AR)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/3M-Electronic-Solutions-Division/961103-6804-AR/?qs=sGAEpiMZZMs%252bGHln7q6pm53vbKor1bMJoeppOe7LBrw%3d)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 43-004-91)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-004-91))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 55B7B745))
(comp (ref U9)
(value TPS61221)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SC-70-6)
(datasheet http://www.ti.com/lit/gpn/tps61221)
(fields
(field (name Vendor) "Texas Instruments")
(field (name "Vendor part") TPS61221DCK)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32375062391)
(field (name "Supplier1 link") http://www.aliexpress.com/item/20PCS-TPS61221DCKR-TPS61221-SC70-6/32375062391.html)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") 296-41854-1-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/t4qd8p)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 595-TPS61221DCKR)
(field (name "Supplier3 link") http://www.mouser.se/ProductDetail/Texas-Instruments/TPS61221DCKR/?qs=sGAEpiMZZMtitjHzVIkrqSrJfzSN7oNP2INrRQr4QsY%3d)
(field (name Supplier4) RS)
(field (name "Supplier4 part") 812-3631)
(field (name "Supplier4 link") http://se.rs-online.com/web/p/boost-converters/8123631)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 2395700)
(field (name "Supplier5 link") http://se.farnell.com/texas-instruments/tps61221dckt/dc-dc-converter-boost-2mhz-50ma/dp/2395700))
(libsource (lib mysensors_regulators) (part TPS6122X))
(sheetpath (names /) (tstamps /))
(tstamp 55E5E6B6))
(comp (ref U2)
(value TPS61097A)
(footprint mysensors_handsoldering:SOT-23-5_Handsoldering)
(datasheet http://www.ti.com/lit/ds/symlink/tps61097a-33.pdf)
(fields
(field (name Vendor) "Texas Instruments")
(field (name "Vendor part") TPS61097A-33DBVT)
(field (name Supplier1) RS)
(field (name "Supplier1 part") 812-3619)
(field (name "Supplier1 link") http://se.rs-online.com/web/p/boost-converters/8123619)
(field (name Supplier2) AliExpress)
(field (name "Supplier2 part") 32369898019)
(field (name "Supplier2 link") http://www.aliexpress.com/item/Free-Shipping-5PCS-lot-TPS61097-33DBVT-IC-REG-BST-SYNC-3-3V-1A-SOT23-5-61097/32369898019.html)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 595-TPS61097A-33DBVT)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/Texas-Instruments/TPS61097A-33DBVT/?qs=sGAEpiMZZMtfXl%252bsADUrUCB2uhymfgl%2fcdZ3ROtzxNM%3d)
(field (name Supplier4) Digi-Key)
(field (name "Supplier4 part") 296-39431-1-ND)
(field (name "Supplier4 link") http://www.digikey.se/short/7wdq10)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 2352441)
(field (name "Supplier5 link") http://se.farnell.com/texas-instruments/tps61097-33dbvr/dc-dc-converter-boost-sot-23-5/dp/2352441))
(libsource (lib mysensors_regulators) (part TPS61097A))
(sheetpath (names /) (tstamps /))
(tstamp 552D8733))
(comp (ref C3)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_HandSoldering)
(datasheet http://www.mouser.com/ds/2/40/f93-221107.pdf)
(fields
(field (name Vendor) AVX)
(field (name "Vendor part") F931C106MAA)
(field (name Supplier1) Mouser)
(field (name "Supplier1 part") 647-F931C106MAA)
(field (name "Supplier1 link") http://www.mouser.se/ProductDetail/AVX/F931C106MAA/?qs=sGAEpiMZZMuEN2agSAc2puC4lhRhLeolmYomTIpwaLE%3d)
(field (name Supplier2) Farnell)
(field (name "Supplier2 part") 2493378)
(field (name "Supplier2 link") http://se.farnell.com/vishay-sprague/tp3a106k016c1700as/cap-tant-aec-q200-10uf-16v-case/dp/2493378)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") 478-8237-1-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/t4q4zv))
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 55F12810))
(comp (ref JP1)
(value Jumper_NO_Small)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/cgrid_III_90120_eng_dwg.pdf)
(fields
(field (name Vendor) "Wurth Electronics")
(field (name "Vendor part") 61300211121)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 2356153)
(field (name "Supplier1 link") http://se.farnell.com/wurth-elektronik/61300211121/header-2-54mm-pin-tht-vertical/dp/2356153)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") S1012EC-02-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w149z)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 710-61300211121)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/Wurth-Electronics/61300211121/?qs=sGAEpiMZZMs%252bGHln7q6pm0xQ%252bwYJLofO2aeIeJWXAx0%3d)
(field (name Supplier4) RS)
(field (name "Supplier4 part") 828-1581)
(field (name "Supplier4 link") http://se.rs-online.com/web/p/pcb-headers/8281581)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-004-90)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-004-90))
(libsource (lib device) (part Jumper_NO_Small))
(sheetpath (names /) (tstamps /))
(tstamp 55F1E4C5))
(comp (ref R8)
(value 56K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Panasonic)
(field (name "Vendor part") ERJP06F5602V)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32218601304)
(field (name "Supplier1 link") http://www.aliexpress.com/item/0805-SMD-Resistors-56K-56K-ohm-1-8W-1-0805-SMD-Resistors-0805-Chip-resistor-500pcs/32218601304.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-563D)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Susumu/RR1220P-563-D/?qs=sGAEpiMZZMu61qfTUdNhG%2fDhcyQpRg8M1xaFMP9nk6g%3d)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 1500644RL)
(field (name "Supplier3 link") http://se.farnell.com/yageo-phycomp/rt0603fre0756kl/motst-nd-0603-1-50ppm-56k/dp/1500644RL)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 60-255-52)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-255-52)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") 541-56KACT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7v5tfw))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F2ADC3))
(comp (ref R7)
(value 56K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Panasonic)
(field (name "Vendor part") ERJP06F5602V)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32218601304)
(field (name "Supplier1 link") http://www.aliexpress.com/item/0805-SMD-Resistors-56K-56K-ohm-1-8W-1-0805-SMD-Resistors-0805-Chip-resistor-500pcs/32218601304.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-563D)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Susumu/RR1220P-563-D/?qs=sGAEpiMZZMu61qfTUdNhG%2fDhcyQpRg8M1xaFMP9nk6g%3d)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 1500644RL)
(field (name "Supplier3 link") http://se.farnell.com/yageo-phycomp/rt0603fre0756kl/motst-nd-0603-1-50ppm-56k/dp/1500644RL)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 60-255-52)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-255-52)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") 541-56KACT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7v5tfw))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F2C329))
(comp (ref R6)
(value 56K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Panasonic)
(field (name "Vendor part") ERJP06F5602V)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32218601304)
(field (name "Supplier1 link") http://www.aliexpress.com/item/0805-SMD-Resistors-56K-56K-ohm-1-8W-1-0805-SMD-Resistors-0805-Chip-resistor-500pcs/32218601304.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-563D)
(field (name "Supplier2 link") http://se.mouser.com/ProductDetail/Susumu/RR1220P-563-D/?qs=sGAEpiMZZMu61qfTUdNhG%2fDhcyQpRg8M1xaFMP9nk6g%3d)
(field (name Supplier3) Farnell)
(field (name "Supplier3 part") 1500644RL)
(field (name "Supplier3 link") http://se.farnell.com/yageo-phycomp/rt0603fre0756kl/motst-nd-0603-1-50ppm-56k/dp/1500644RL)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 60-255-52)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-255-52)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") 541-56KACT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7v5tfw))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F2D1A4))
(comp (ref R5)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Vishay)
(field (name "Vendor part") CRCW080510K0FKEA)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 681263963)
(field (name "Supplier1 link") http://www.aliexpress.com/item/1000-PCS-0805-10K-103-1-SMD-Chip-Resistors-Surface-Mount/681263963.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-103D)
(field (name "Supplier2 link") http://se.mouser.com/Search/ProductDetail.aspx?R=RR1220P-103-Dvirtualkey67280000virtualkey754-RR1220P-103D)
(field (name Supplier3) Elfa)
(field (name "Supplier3 part") 60-587-42)
(field (name "Supplier3 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-587-42)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1653284)
(field (name "Supplier4 link") http://se.farnell.com/susumu/rr1220p-103-d/tunnfilm-chipmotst-nd/dp/1653284)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") RR12P10.0KDCT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7wv3tf))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F354FB))
(comp (ref R3)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Vishay)
(field (name "Vendor part") CRCW080510K0FKEA)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 681263963)
(field (name "Supplier1 link") http://www.aliexpress.com/item/1000-PCS-0805-10K-103-1-SMD-Chip-Resistors-Surface-Mount/681263963.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-103D)
(field (name "Supplier2 link") http://se.mouser.com/Search/ProductDetail.aspx?R=RR1220P-103-Dvirtualkey67280000virtualkey754-RR1220P-103D)
(field (name Supplier3) Elfa)
(field (name "Supplier3 part") 60-587-42)
(field (name "Supplier3 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-587-42)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1653284)
(field (name "Supplier4 link") http://se.farnell.com/susumu/rr1220p-103-d/tunnfilm-chipmotst-nd/dp/1653284)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") RR12P10.0KDCT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7wv3tf))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F3567D))
(comp (ref R2)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/flD-CRCW-e3_data_en.pdf)
(fields
(field (name Vendor) Vishay)
(field (name "Vendor part") CRCW080510K0FKEA)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 681263963)
(field (name "Supplier1 link") http://www.aliexpress.com/item/1000-PCS-0805-10K-103-1-SMD-Chip-Resistors-Surface-Mount/681263963.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 754-RR1220P-103D)
(field (name "Supplier2 link") http://se.mouser.com/Search/ProductDetail.aspx?R=RR1220P-103-Dvirtualkey67280000virtualkey754-RR1220P-103D)
(field (name Supplier3) Elfa)
(field (name "Supplier3 part") 60-587-42)
(field (name "Supplier3 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=60-587-42)
(field (name Supplier4) Farnell)
(field (name "Supplier4 part") 1653284)
(field (name "Supplier4 link") http://se.farnell.com/susumu/rr1220p-103-d/tunnfilm-chipmotst-nd/dp/1653284)
(field (name Supplier5) Digi-Key)
(field (name "Supplier5 part") RR12P10.0KDCT-ND)
(field (name "Supplier5 link") http://www.digikey.se/short/7wv3tf))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 55F35FD8))
(comp (ref Q1)
(value DMP3056L-7)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23_Handsoldering)
(datasheet http://www.mouser.com/ds/2/115/DMP3056L-526286.pdf)
(fields
(field (name Vendor) "Diodes Incorporated")
(field (name "Vendor part") DMP3056L-7)
(field (name Supplier1) AliExpress)
(field (name "Supplier1 part") 32446073237)
(field (name "Supplier1 link") http://www.aliexpress.com/item/Free-Shipping-20PCS-lot-DMP3056L-7-MOSFET-P-CH-30V-4-3A-SOT23-3056-DMP3056/32446073237.html)
(field (name Supplier2) Mouser)
(field (name "Supplier2 part") 621-DMP3056L-7)
(field (name "Supplier2 link") http://www.mouser.com/ProductDetail/Diodes-Incorporated/DMP3056L-7/?qs=sGAEpiMZZMshyDBzk1%2fWi0dsXOGve85x57LCxQMsytBvvrEFpdn1rw%3d%3d)
(field (name Supplier3) Digi-Key)
(field (name "Supplier3 part") DMP3056L-7DICT-ND)
(field (name "Supplier3 link") http://www.digikey.se/short/7wd8q3)
(field (name Supplier4) Elfa)
(field (name "Supplier4 part") 71-397-02)
(field (name "Supplier4 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=71-397-02)
(field (name Supplier5) Farnell)
(field (name "Supplier5 part") 1894624)
(field (name "Supplier5 link") http://se.farnell.com/nxp/pmv32up/mosfet-p-ch-20v-4a-sot23/dp/1894624))
(libsource (lib device) (part Q_PMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 55F37A43))
(comp (ref JP3)
(value Jumper_NO_Small)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/cgrid_III_90120_eng_dwg.pdf)
(fields
(field (name Vendor) "Wurth Electronics")
(field (name "Vendor part") 61300211121)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 2356153)
(field (name "Supplier1 link") http://se.farnell.com/wurth-elektronik/61300211121/header-2-54mm-pin-tht-vertical/dp/2356153)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") S1012EC-02-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w149z)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 710-61300211121)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/Wurth-Electronics/61300211121/?qs=sGAEpiMZZMs%252bGHln7q6pm0xQ%252bwYJLofO2aeIeJWXAx0%3d)
(field (name Supplier4) RS)
(field (name "Supplier4 part") 828-1581)
(field (name "Supplier4 link") http://se.rs-online.com/web/p/pcb-headers/8281581)
(field (name Supplier5) Elfa)
(field (name "Supplier5 part") 43-004-90)
(field (name "Supplier5 link") https://www.elfa.se/elfa3~se_en/elfa/init.do?item=43-004-90))
(libsource (lib device) (part Jumper_NO_Small))
(sheetpath (names /) (tstamps /))
(tstamp 55F34F52))
(comp (ref JP6)
(value Jumper_NO_Small)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(datasheet https://www1.elfa.se/data1/wwwroot/assets/datasheets/cgrid_III_90120_eng_dwg.pdf)
(fields
(field (name Vendor) "Wurth Electronics")
(field (name "Vendor part") 61300211121)
(field (name Supplier1) Farnell)
(field (name "Supplier1 part") 2356153)
(field (name "Supplier1 link") http://se.farnell.com/wurth-elektronik/61300211121/header-2-54mm-pin-tht-vertical/dp/2356153)
(field (name Supplier2) Digi-Key)
(field (name "Supplier2 part") S1012EC-02-ND)
(field (name "Supplier2 link") http://www.digikey.se/short/7w149z)
(field (name Supplier3) Mouser)
(field (name "Supplier3 part") 710-61300211121)
(field (name "Supplier3 link") http://www.mouser.com/ProductDetail/Wurth-Electronics/61300211121/?qs=sGAEpiMZZMs%252bGHln7q6pm0xQ%252bwYJLofO2aeIeJWXAx0%3d)