-
Notifications
You must be signed in to change notification settings - Fork 0
/
std_board.net
3100 lines (3100 loc) · 119 KB
/
std_board.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/thmalmeida/Acervo/Dropbox/Circuits/ESP32/design/std_board/std_board.sch)
(date "sex 12 nov 2021 16:18:50")
(tool "Eeschema 5.99.0+really5.1.10+dfsg1-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source std_board.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R2)
(value 470)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570B1454))
(comp (ref Opto1)
(value Optocoupler)
(footprint Package_DIP:DIP-6_W7.62mm)
(fields
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part Optocoupler-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570B1468))
(comp (ref R3)
(value 680)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570B14A9))
(comp (ref R4)
(value 39)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570D4FDC))
(comp (ref C16)
(value "10 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5710D529))
(comp (ref VR3)
(value VR_Micro)
(footprint Varistor:RV_Disc_D12mm_W3.9mm_P7.5mm)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") no)
(field (name "Rated Power [W]") 0.1)
(field (name "Rated Voltage [V]") 120))
(libsource (lib std_board-rescue) (part VR_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5710D560))
(comp (ref 24Vac_In1)
(value PowerSupply)
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(libsource (lib std_board-rescue) (part Connector_2-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5710D585))
(comp (ref T1)
(value TRIAC_Micro)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(fields
(field (name Manufacturer) BT136)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part TRIAC_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570B1449))
(comp (ref F3)
(value Fuse)
(footprint Fuse:Fuse_1812_4532Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MSMD0805-050)
(field (name "Placed Onboard?") yes)
(field (name "Rated Current [A]") 0.5)
(field (name "Rated Voltage [V]") 6))
(libsource (lib std_board-rescue) (part Fuse-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 571828FB))
(comp (ref J31)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57185A9C))
(comp (ref R52)
(value "3.3 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57206AAB))
(comp (ref IC2)
(value ACS712)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(fields
(field (name Manufacturer) Allegro)
(field (name Module) xx)
(field (name "Part Number") ACS712)
(field (name "Placed Onboard?") yes)
(field (name "Rated Current [A]") 20))
(libsource (lib std_board-rescue) (part ACS712-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5720B807))
(comp (ref R46)
(value 120)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5743567B))
(comp (ref R60)
(value "120 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 574358F7))
(comp (ref R47)
(value "180 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57435B5E))
(comp (ref R38)
(value "6.8 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 574CEE6D))
(comp (ref C8)
(value "47 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D4EDA))
(comp (ref C9)
(value "47 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D538B))
(comp (ref C10)
(value "47 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D5628))
(comp (ref C11)
(value "47 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D5B53))
(comp (ref R20)
(value "56 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D5F32))
(comp (ref R21)
(value "56 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D6343))
(comp (ref R22)
(value "56 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D6600))
(comp (ref R23)
(value "56 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D6AC5))
(comp (ref R25)
(value "33 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D7CDD))
(comp (ref R17)
(value "560 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D739B))
(comp (ref R18)
(value "560 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0D6D14))
(comp (ref R27)
(value "220 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57EBE6EA))
(comp (ref J4)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57EBE699))
(comp (ref R28)
(value "220 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57EAF888))
(comp (ref R26)
(value "33 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57EA1A7F))
(comp (ref J5)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57E8B6D5))
(comp (ref C12)
(value "10 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 57EBE6DD))
(comp (ref R34)
(value "33 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B25AA))
(comp (ref R31)
(value "560 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B25B9))
(comp (ref R32)
(value "560 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B25C8))
(comp (ref R36)
(value "220 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B260C))
(comp (ref J11)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B2637))
(comp (ref R37)
(value "220 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B2654))
(comp (ref R35)
(value "33 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B266D))
(comp (ref J12)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B268E))
(comp (ref T7)
(value NPN_MMBT222A)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name Manufacturer) mmmm)
(field (name Module) MM)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part NPN-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B269C))
(comp (ref R6)
(value 360)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DD3D))
(comp (ref Opto2)
(value Optocoupler)
(footprint Package_DIP:DIP-6_W7.62mm)
(fields
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name manf#) MOC3021M))
(libsource (lib std_board-rescue) (part Optocoupler-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DD59))
(comp (ref R8)
(value 680)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DD86))
(comp (ref R9)
(value 47)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DD96))
(comp (ref T2)
(value TRIAC_Micro)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(fields
(field (name Manufacturer) MMMM)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part TRIAC_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DDAE))
(comp (ref J2)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DDB8))
(comp (ref R10)
(value "1 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D53DDC7))
(comp (ref Opto3)
(value Optocoupler)
(footprint Package_DIP:DIP-6_W7.62mm)
(fields
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name manf#) MOC3021M))
(libsource (lib std_board-rescue) (part Optocoupler-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5FE158))
(comp (ref R13)
(value 680)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5FE185))
(comp (ref R14)
(value 47)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5FE195))
(comp (ref J3)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5FE1B7))
(comp (ref R15)
(value "1 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5FE1C6))
(comp (ref T4)
(value NPN_MMBT222A)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name Manufacturer) mmmm)
(field (name Module) MM)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part NPN-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D8F9297))
(comp (ref T5)
(value NPN_MMBT222A)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name Manufacturer) mmmm)
(field (name Module) MM)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part NPN-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D8F99F5))
(comp (ref T6)
(value NPN_MMBT222A)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name Manufacturer) mmmm)
(field (name Module) MM)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes))
(libsource (lib std_board-rescue) (part NPN-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D8FA0D2))
(comp (ref C15)
(value "10 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9400FE))
(comp (ref C14)
(value "10 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D94055F))
(comp (ref C3)
(value "10 nF")
(footprint Capacitor_THT:C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9F7E0F))
(comp (ref C1)
(value "10 nF")
(footprint Capacitor_THT:C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9F8396))
(comp (ref C5)
(value "10 nF")
(footprint Capacitor_THT:C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9F884D))
(comp (ref J16)
(value J_PRess)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD3C702))
(comp (ref D4)
(value Diode)
(footprint Diode_SMD:D_SMA)
(fields
(field (name Manufacturer) MM)
(field (name Module) mmmm)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Current [A]") 10)
(field (name "Reverse voltage [V]") 350))
(libsource (lib std_board-rescue) (part Diode-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9717D7))
(comp (ref +5V_In2)
(value +5V)
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(libsource (lib std_board-rescue) (part Conn_2_thm-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DF67572))
(comp (ref R61)
(value "120 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DBC7E39))
(comp (ref R49)
(value "180 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DBC7E48))
(comp (ref C20)
(value "1 uF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DBC7E52))
(comp (ref C18)
(value "1 nF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5720D846))
(comp (ref C17)
(value "0.1 uF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5720E720))
(comp (ref C19)
(value "1 uF")
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 574366EA))
(comp (ref R39)
(value "2.2 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5720627C))
(comp (ref D3)
(value Led_Micro)
(footprint LED_SMD:LED_0805_2012Metric)
(fields
(field (name Manufacturer) MM)
(field (name Module) mmmm)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") "1 m"))
(libsource (lib std_board-rescue) (part Led_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63A66F3B))
(comp (ref D2)
(value Led_Micro)
(footprint LED_SMD:LED_0805_2012Metric)
(fields
(field (name Manufacturer) MM)
(field (name Module) mmmm)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") "1 m"))
(libsource (lib std_board-rescue) (part Led_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 63A6766C))
(comp (ref BMP280_1)
(value BMP280)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(fields
(field (name Manufacturer) MM)
(field (name Module) mm)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") no))
(libsource (lib std_board-rescue) (part CONN_4X1-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DC159CA))
(comp (ref DHT11_1)
(value DHT11)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(fields
(field (name Manufacturer) MM)
(field (name Module) mm)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") no))
(libsource (lib std_board-rescue) (part CONN_4X1-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DC50763))
(comp (ref J10)
(value J_DHT11)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DC8AD71))
(comp (ref R29)
(value R_Micro)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DE26DD8))
(comp (ref R30)
(value R_Micro)
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DE26FF4))
(comp (ref D1)
(value Led_Micro)
(footprint LED_SMD:LED_0805_2012Metric)
(fields
(field (name Manufacturer) MM)
(field (name Module) mmmm)
(field (name "Part Number") pppp)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") "1 m"))
(libsource (lib std_board-rescue) (part Led_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 637DD3E3))
(comp (ref J1)
(value Jumper)
(footprint thmalmeida:J_0603)
(libsource (lib std_board-rescue) (part Jumper-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570F3C14))
(comp (ref R1)
(value 330)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 570F405A))
(comp (ref C2)
(value "47 nF")
(footprint Capacitor_THT:C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BD288))
(comp (ref R5)
(value "1 k")
(footprint Resistor_SMD:R_0805_2012Metric)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF94A3F))
(comp (ref R7)
(value 470)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(fields
(field (name Manufacturer) VISHAY)
(field (name Module) xx)
(field (name "Part Number") MCT08050F1001C)
(field (name "Placed Onboard?") yes)
(field (name "Rated Power [W]") 0.1)
(field (name "Tolerance [%]") 5))
(libsource (lib std_board-rescue) (part R_Micro-thmalmeida) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EBAE004))
(comp (ref C4)
(value "47 nF")
(footprint Capacitor_THT:C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT)
(fields
(field (name Manufacture) yyyy)
(field (name Module) xxx)
(field (name "Part Number") xxxx)
(field (name "Placed Onboard?") yes)
(field (name "Rated Voltage [V]") xx))
(libsource (lib std_board-rescue) (part C_Micro-RESCUE-[GenericBoard]_standard_pcb-[GenericBoard]-standard-pcb-rescue) (description ""))