-
Notifications
You must be signed in to change notification settings - Fork 0
/
irss.net
1580 lines (1580 loc) · 58.6 KB
/
irss.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/nazim/prj/hw/irss/irss.sch)
(date "çərşənbə axşamı, 16 aprel 2019 00:58:42")
(tool "Eeschema 4.0.7-e2-6376~58~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title MCU)
(company "(c) elecrodyssey / LGPL")
(rev 2.9.006)
(date 2018-09-30)
(source irss.sch)
(comment (number 1) (value MCU))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /MCU/) (tstamps /5CB16B33/)
(title_block
(title MCU)
(company "(c) elecrodyssey / LGPL")
(rev 2.9.006)
(date 2018-09-30)
(source mcu.sch)
(comment (number 1) (value MCU))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /SENSORS/) (tstamps /5CAF858F/)
(title_block
(title)
(company)
(rev)
(date)
(source sensors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value AZ1117-3.3)
(footprint TO_SOT_Packages_SMD:TO-252-2)
(libsource (lib regul) (part AZ1117-3.3))
(sheetpath (names /) (tstamps /))
(tstamp 5CAAEBF5))
(comp (ref C3)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5CAAF865))
(comp (ref C4)
(value 49)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-D_EIA-7343-31_Hand)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5CAB0F8A))
(comp (ref C1)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CAB2D26))
(comp (ref C2)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CAB2D2C))
(comp (ref J_DC12V1)
(value Conn_01x02)
(footprint Terminal_Blocks:TerminalBlock_Altech_AK300-2_P5.00mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 5CB39932))
(comp (ref U2)
(value AZ1117-5.0)
(footprint TO_SOT_Packages_SMD:TO-252-2)
(libsource (lib regul) (part AZ1117-5.0))
(sheetpath (names /) (tstamps /))
(tstamp 5CB399A8))
(comp (ref D1)
(value DFLS1100-7)
(footprint Diodes_SMD:D_PowerDI-123)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5CB3B32E))
(comp (ref J_MCU_JTAG1)
(value Conn_02x10_Odd_Even)
(footprint Connectors:IDC_Header_Straight_20pins)
(libsource (lib conn) (part Conn_02x10_Odd_Even))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17853))
(comp (ref R10)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17857))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17858))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17859))
(comp (ref SW_RESET1)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQPE1)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1785B))
(comp (ref C23)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1785D))
(comp (ref JP_BOOT1)
(value Jumper_NC_Dual)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib device) (part Jumper_NC_Dual))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1785E))
(comp (ref R3)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17861))
(comp (ref JP_BOOT2)
(value Jumper_NC_Dual)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib device) (part Jumper_NC_Dual))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17862))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17865))
(comp (ref L1)
(value Ferrite_Bead)
(footprint Choke_SMD:Choke_SMD_1206_Handsoldering)
(libsource (lib device) (part Ferrite_Bead))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17868))
(comp (ref C9)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1786C))
(comp (ref C6)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1786D))
(comp (ref C7)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1786E))
(comp (ref C11)
(value 2.2uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17870))
(comp (ref C13)
(value 2.2uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17871))
(comp (ref C15)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17873))
(comp (ref Y1)
(value 8MHz)
(footprint Crystals:Crystal_SMD_HC49-SD_HandSoldering)
(libsource (lib device) (part Crystal))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17874))
(comp (ref C8)
(value 20pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17875))
(comp (ref C10)
(value 20pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17876))
(comp (ref J_UART1_DBG1)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Angled_1x03_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17878))
(comp (ref LED_MCU1)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(libsource (lib device) (part LED))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1787A))
(comp (ref R9)
(value 120)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1787B))
(comp (ref C12)
(value 4.3pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1787D))
(comp (ref C14)
(value 4.3pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1787E))
(comp (ref Y3)
(value DNP32)
(footprint Crystals:Crystal_DS10_d1.0mm_l4.3mm_Vertical)
(fields
(field (name note) "alternative through hole component"))
(libsource (lib device) (part Crystal))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17880))
(comp (ref Y2)
(value " ABS25-32.768KHZ-6-T ")
(footprint Crystals:Crystal_SMD_SeikoEpson_MC306-4pin_8.0x3.2mm_HandSoldering)
(fields
(field (name note) " ABS25-32.768KHZ-6-T "))
(libsource (lib device) (part Crystal_GND23_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17881))
(comp (ref J_USBMCU1)
(value USB_B)
(footprint Connectors:USB_B_MUSB_Straight)
(libsource (lib conn) (part USB_B))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17882))
(comp (ref R14)
(value 47k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17884))
(comp (ref R15)
(value 68k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17885))
(comp (ref C16)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17888))
(comp (ref C17)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17889))
(comp (ref C18)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1788B))
(comp (ref C19)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1788C))
(comp (ref C20)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1788D))
(comp (ref C21)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB1788E))
(comp (ref R1)
(value 130)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17890))
(comp (ref U3)
(value STM32F401RETx)
(footprint Housings_QFP:LQFP-64_10x10mm_Pitch0.5mm)
(libsource (lib stm32) (part STM32F401RETx))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17892))
(comp (ref U4)
(value USBLC6-2SC6)
(footprint TO_SOT_Packages_SMD:SOT-23-6)
(libsource (lib ESD_Protection) (part USBLC6-2SC6))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB17893))
(comp (ref Q1)
(value IRLML6344TRPbF)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178BC))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178BD))
(comp (ref D2)
(value DFLS1100-7)
(footprint Diodes_SMD:D_PowerDI-123)
(libsource (lib device) (part D))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178BE))
(comp (ref R2)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178BF))
(comp (ref R6)
(value 130)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C1))
(comp (ref Q2)
(value IRLML6344TRPbF)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C2))
(comp (ref BZ1)
(value Buzzer)
(footprint Buzzers_Beepers:Buzzer_12x9.5RM7.6)
(libsource (lib device) (part Buzzer))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C3))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C5))
(comp (ref D3)
(value DFLS1100-7)
(footprint Diodes_SMD:D_PowerDI-123)
(libsource (lib device) (part D))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C6))
(comp (ref R7)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C7))
(comp (ref J_FAN12V1)
(value Conn_01x02)
(footprint Terminal_Blocks:TerminalBlock_Altech_AK300-2_P5.00mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178C9))
(comp (ref C24)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178CB))
(comp (ref C25)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178CD))
(comp (ref SW_PUSH2)
(value SW_Push)
(footprint Buttons_Switches_ThroughHole:SW_PUSH-12mm)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178CE))
(comp (ref SW_PUSH1)
(value SW_Push)
(footprint Buttons_Switches_ThroughHole:SW_PUSH-12mm)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178CF))
(comp (ref SW1)
(value Rotary_Encoder_DNP)
(footprint BTT_CONN:RotaryEncoder_Alps_EC11E_Vertical_H20mm)
(libsource (lib device) (part Rotary_Encoder_Switch))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178D1))
(comp (ref C26)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178D3))
(comp (ref C22)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178D4))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178D7))
(comp (ref R16)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178D8))
(comp (ref J_HEATERS_OUT1)
(value Conn_02x10_Odd_Even)
(footprint Connectors:IDC_Header_Straight_20pins)
(libsource (lib conn) (part Conn_02x10_Odd_Even))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178EB))
(comp (ref RV1)
(value "10k DNP")
(footprint Potentiometers:Potentiometer_Trimmer_Piher_PT-10v10_Horizontal_Px10.0mm_Py5.0mm)
(libsource (lib device) (part POT_TRIM))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178EF))
(comp (ref C5)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB178F7))
(comp (ref J_LCD1)
(value Conn_01x16)
(footprint Pin_Headers:Pin_Header_Straight_1x16_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x16))
(sheetpath (names /MCU/) (tstamps /5CB16B33/))
(tstamp 5CB35855))
(comp (ref U7)
(value MCP3551-E/MS)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib adc-dac) (part MCP3551-E/MS))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAFC2E5))
(comp (ref IC2)
(value LM4140ACM-2.0)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm4140.pdf)
(fields
(field (name Description) "2.0V LDO Volt. Reference,LM4140ACM-2.0")
(field (name Height) 1.75)
(field (name "Mouser Part Number") 926-LM4140ACM-20)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=926-LM4140ACM-20)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) LM4140ACM-2.0))
(libsource (lib LM4140ACM-2.0) (part LM4140ACM-2.0))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CB24A3A))
(comp (ref U5)
(value AZ1117-3.3)
(footprint TO_SOT_Packages_SMD:TO-252-2)
(libsource (lib regul) (part AZ1117-3.3))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE2488))
(comp (ref C29)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE316A))
(comp (ref L4)
(value Ferrite_Bead)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part Ferrite_Bead_Small))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE3EA6))
(comp (ref C34)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE4338))
(comp (ref C35)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE4432))
(comp (ref L5)
(value Ferrite_Bead)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part Ferrite_Bead_Small))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE59C6))
(comp (ref C37)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE59CF))
(comp (ref C39)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE59DC))
(comp (ref R22)
(value DNP)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE7B69))
(comp (ref C36)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE88CB))
(comp (ref C38)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE88D7))
(comp (ref R21)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE8DF4))
(comp (ref R20)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAE9718))
(comp (ref J_PTD_IN2)
(value Conn_01x02)
(footprint Terminal_Blocks:TerminalBlock_Altech_AK300-2_P5.00mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEA0A2))
(comp (ref U6)
(value MCP3551-E/MS)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib adc-dac) (part MCP3551-E/MS))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC1D1))
(comp (ref IC1)
(value LM4140ACM-2.0)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm4140.pdf)
(fields
(field (name Description) "2.0V LDO Volt. Reference,LM4140ACM-2.0")
(field (name Height) 1.75)
(field (name "Mouser Part Number") 926-LM4140ACM-20)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=926-LM4140ACM-20)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) LM4140ACM-2.0))
(libsource (lib LM4140ACM-2.0) (part LM4140ACM-2.0))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC1DD))
(comp (ref L2)
(value Ferrite_Bead)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part Ferrite_Bead_Small))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC1F5))
(comp (ref C27)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC1FB))
(comp (ref C28)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC207))
(comp (ref L3)
(value Ferrite_Bead)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part Ferrite_Bead_Small))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC220))
(comp (ref C31)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC226))
(comp (ref C33)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC232))
(comp (ref R19)
(value DNP)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC272))
(comp (ref C30)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC27D))
(comp (ref C32)
(value 0.1)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC289))
(comp (ref R18)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC29B))
(comp (ref R17)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC2A3))
(comp (ref J_PTD_IN1)
(value Conn_01x02)
(footprint Terminal_Blocks:TerminalBlock_Altech_AK300-2_P5.00mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /SENSORS/) (tstamps /5CAF858F/))
(tstamp 5CAEC2B0)))
(libparts
(libpart (lib regul) (part AZ1117-1.2)
(aliases
(alias AZ1117-1.5)
(alias AZ1117-1.8)
(alias AZ1117-2.5)
(alias AZ1117-2.85)
(alias AZ1117-3.3)
(alias AZ1117-5.0))
(description "1A 20V Fixed LDO Linear Regulator, 1.2V, SOT-89/SOT-223/TO-220/TO-252/TO-263")
(docs https://www.diodes.com/assets/Datasheets/AZ1117.pdf)
(footprints
(fp SOT?223*)
(fp SOT?89*)
(fp TO?220*)
(fp TO?252*)
(fp TO?263*))
(fields
(field (name Reference) U)
(field (name Value) AZ1117-1.2))
(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 device) (part Buzzer)
(description "Buzzer, polar")
(footprints
(fp *Buzzer*))
(fields
(field (name Reference) BZ)
(field (name Value) Buzzer))
(pins
(pin (num 1) (name -) (type passive))
(pin (num 2) (name +) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part Conn_01x02)
(description "Generic connector, single row, 01x02")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib conn) (part Conn_01x03)
(description "Generic connector, single row, 01x03")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib conn) (part Conn_01x16)
(description "Generic connector, single row, 01x16")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x16))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))))
(libpart (lib conn) (part Conn_02x10_Odd_Even)
(description "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers)")
(docs ~)
(footprints
(fp Connector*:*2x??x*mm*)
(fp Connector*:*2x???Pitch*)
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x10_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part Crystal_GND23_Small)
(description "Two pin crystal, two ground/package pins (pin2 and 3) small symbol")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND23_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part Ferrite_Bead)
(description "Ferrite bead")
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) L)
(field (name Value) Ferrite_Bead))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) L)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Jumper_NC_Dual)
(description "Dual Jumper, normally closed")
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NC_Dual))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib LM4140ACM-2.0) (part LM4140ACM-2.0)
(description "2.0V LDO Volt. Reference,LM4140ACM-2.0")
(docs http://www.ti.com/lit/ds/symlink/lm4140.pdf)
(fields
(field (name Reference) IC)
(field (name Value) LM4140ACM-2.0)
(field (name Footprint) SOIC127P600X175-8N)
(field (name Datasheet) http://www.ti.com/lit/ds/symlink/lm4140.pdf)
(field (name Description) "2.0V LDO Volt. Reference,LM4140ACM-2.0")
(field (name Height) 1.75)
(field (name "Mouser Part Number") 926-LM4140ACM-20)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=926-LM4140ACM-20)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) LM4140ACM-2.0))
(pins
(pin (num 1) (name GND) (type BiDi))
(pin (num 2) (name VIN) (type BiDi))
(pin (num 3) (name EN) (type BiDi))
(pin (num 4) (name GND_1) (type BiDi))
(pin (num 5) (name NC) (type BiDi))
(pin (num 6) (name VREF) (type BiDi))
(pin (num 7) (name GND_2) (type BiDi))
(pin (num 8) (name GND_3) (type BiDi))))
(libpart (lib adc-dac) (part MCP3550-50-E/MS)
(aliases
(alias MCP3551-E/MS))
(description "Single Delta-Sigma 22bit Analog to Digital Converter, SPI Interface, 50Hz Rejection, MSOP-8")
(docs http://ww1.microchip.com/downloads/en/devicedoc/21950c.pdf)
(footprints
(fp MSOP*))
(fields
(field (name Reference) U)
(field (name Value) MCP3550-50-E/MS))
(pins
(pin (num 1) (name Vref) (type input))
(pin (num 2) (name Vin+) (type passive))
(pin (num 3) (name Vin-) (type passive))
(pin (num 4) (name Vss) (type power_in))
(pin (num 5) (name SCK) (type input))
(pin (num 6) (name SDO/~RDY~) (type output))
(pin (num 7) (name ~CS~) (type input))
(pin (num 8) (name Vdd) (type power_in))))
(libpart (lib device) (part POT_TRIM)
(description Trim-Potentiometer)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) POT_TRIM))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFETwith substrate diode (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part R_Small)
(description "Resistor, small symbol")
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Rotary_Encoder_Switch)
(description "Rotary encoder, dual channel, incremental quadrate outputs, with switch")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) Rotary_Encoder_Switch))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name C) (type input))
(pin (num 3) (name B) (type input))
(pin (num 4) (name ~) (type input))
(pin (num 5) (name ~) (type input))))