-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEBS_logic_SMD.net
2103 lines (2103 loc) · 82.7 KB
/
EBS_logic_SMD.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 C:\Users\match\Documents\kicad\EBS\EBS_logic_SMD.sch)
(date "28.12.2021 20:04:53")
(tool "Eeschema (5.1.12)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source EBS_logic_SMD.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /power/) (tstamps /5FBD7083/)
(title_block
(title)
(company)
(rev)
(date)
(source power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /logic/) (tstamps /5FBFABB8/)
(title_block
(title)
(company)
(rev)
(date)
(source logic.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /supervisor/) (tstamps /6048DA8B/)
(title_block
(title)
(company)
(rev)
(date)
(source supervisor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/)
(title_block
(title)
(company)
(rev)
(date)
(source CAN.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value LM2596S-5)
(footprint Package_TO_SOT_SMD:TO-263-5_TabPin3)
(datasheet http://www.ti.com/lit/ds/symlink/lm2596.pdf)
(libsource (lib Regulator_Switching) (part LM2596S-5) (description "5V 3A Step-Down Voltage Regulator, TO-263"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBD7466))
(comp (ref F1)
(value Fuse)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBD9079))
(comp (ref D1)
(value D_Schottky_Small)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDAC6E))
(comp (ref D2)
(value D_Schottky_Small)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDB850))
(comp (ref C5)
(value 220u)
(footprint Capacitor_SMD:CP_Elec_6.3x5.8)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDC81E))
(comp (ref C1)
(value 22pF)
(footprint Capacitor_SMD:CP_Elec_6.3x5.8)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDC9B6))
(comp (ref 100uF1)
(value CP_Small)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDD3A0))
(comp (ref L1)
(value 33u)
(footprint Inductor_SMD:L_12x12mm_H8mm)
(datasheet ~)
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBDF8E2))
(comp (ref U2)
(value LM1117-3.3)
(footprint Package_TO_SOT_SMD:SOT-223)
(datasheet http://www.ti.com/lit/ds/symlink/lm1117.pdf)
(libsource (lib Regulator_Linear) (part LM1117-3.3) (description "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-220/TO-252/TO-263/SOT-223"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBE2362))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBE2699))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 5FBE308E))
(comp (ref D19)
(value D_Zener_Small)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 604ECFD6))
(comp (ref R16)
(value 47k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 604F4F6D))
(comp (ref R17)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 604F562E))
(comp (ref R34)
(value 47k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 60966683))
(comp (ref R33)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 609676EB))
(comp (ref K1)
(value SANYOU_SRD_Form_C)
(footprint Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C)
(datasheet http://www.sanyourelay.ca/public/products/pdf/SRD.pdf)
(libsource (lib Relay) (part SANYOU_SRD_Form_C) (description "Sanyo SRD relay, Single Pole Miniature Power Relay,"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 6096CB3E))
(comp (ref Q1)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.onsemi.com/pub/Collateral/BC818-D.pdf)
(libsource (lib Transistor_BJT) (part BC817) (description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 609719AC))
(comp (ref D30)
(value D)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 609729CF))
(comp (ref J1)
(value POWER)
(footprint Connector_Molex:Molex_Micro-Fit_3.0_43650-0200_1x02_P3.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /power/) (tstamps /5FBD7083/))
(tstamp 6093BE71))
(comp (ref U6)
(value 74HC00D,653)
(footprint KiCAD:SOIC127P600X175-14N)
(fields
(field (name MPN) 74HC00D,653)
(field (name OC_FARNELL) -)
(field (name OC_NEWARK) 78R6252)
(field (name PACKAGE) SOIC-14)
(field (name SUPPLIER) NXP))
(libsource (lib EBS_logic_SMD-rescue) (part 74HC00D,653-74HC00D_653) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC078FA))
(comp (ref U7)
(value MM74HC74AM)
(footprint KiCAD:SOIC127P600X175-14N)
(fields
(field (name MPN) MM74HC74AM)
(field (name OC_FARNELL) 1013960)
(field (name OC_NEWARK) 78K6086)
(field (name PACKAGE) SOIC-14)
(field (name SUPPLIER) Fairchild))
(libsource (lib EBS_logic_SMD-rescue) (part MM74HC74AM-MM74HC74AM) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC0791C))
(comp (ref IC1)
(value 74HC08D,653)
(footprint KiCAD:SOIC127P600X175-14N)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT08.pdf)
(fields
(field (name Description) "74HC(T)08 - Quad 2-input AND gate@en-us")
(field (name Height) 1.75)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) 74HC08D,653)
(field (name "Mouser Part Number") 771-74HC08D-T)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Nexperia/74HC08D653?qs=P62ublwmbi%2FQCxm29EB%2FyA%3D%3D))
(libsource (lib EBS_logic_SMD-rescue) (part 74HC08D,653-SamacSys_Parts) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC68BEC))
(comp (ref IC2)
(value 74HC32D,653)
(footprint KiCAD:SOIC127P600X175-14N)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT32.pdf)
(fields
(field (name Description) "74HC32; 74HCT32 - Quad 2-input OR gate@en-us")
(field (name Height) 1.75)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) 74HC32D,653)
(field (name "Mouser Part Number") 771-74HC32D-T)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Nexperia/74HC32D653?qs=P62ublwmbi%252BAqOZlJ9G15Q%3D%3D))
(libsource (lib EBS_logic_SMD-rescue) (part 74HC32D,653-SamacSys_Parts) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC7E84B))
(comp (ref R8)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC9E912))
(comp (ref R12)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC9F30F))
(comp (ref D13)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC9F6B1))
(comp (ref D14)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC9FEEE))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FCA06A8))
(comp (ref R5)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD175BE))
(comp (ref R9)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD175C4))
(comp (ref D7)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD175CA))
(comp (ref D8)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD175D0))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD175D6))
(comp (ref R6)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD1D70E))
(comp (ref R10)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD1D714))
(comp (ref D9)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD1D71A))
(comp (ref D10)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD1D720))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD1D726))
(comp (ref R7)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2300C))
(comp (ref R11)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD23012))
(comp (ref D11)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD23018))
(comp (ref D12)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2301E))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD23024))
(comp (ref R1)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2B53A))
(comp (ref R3)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2B540))
(comp (ref D3)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2B546))
(comp (ref D4)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2B54C))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD2B552))
(comp (ref R2)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD3EF93))
(comp (ref R4)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD3EF99))
(comp (ref D5)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD3EF9F))
(comp (ref D6)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD3EFA5))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD3EFAB))
(comp (ref D17)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDA694E))
(comp (ref R15)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDA752C))
(comp (ref D18)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDA7FFD))
(comp (ref D15)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDF0141))
(comp (ref R14)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDF0147))
(comp (ref D16)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FDF014D))
(comp (ref U5)
(value NE555D)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/ne555.pdf)
(libsource (lib EBS_logic_SMD-rescue) (part NE555D-Timer) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD95F31))
(comp (ref U3)
(value LTC1726IS8-5PBF)
(footprint ltc:SO-8_S)
(fields
(field (name MANUFACTURER_PART_NUMBER) ltc1726is85#pbf)
(field (name VENDOR) "Linear Technology"))
(libsource (lib EBS_logic_SMD-rescue) (part LTC1726IS8-5PBF-LTC1726IS8-5PBF) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FD988CB))
(comp (ref C13)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FE10430))
(comp (ref C14)
(value 1nF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FE114F7))
(comp (ref C12)
(value 100uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FF3C27A))
(comp (ref R13)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FF52A5C))
(comp (ref J2)
(value TEST_INPUT)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Male) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 60278D0E))
(comp (ref J3)
(value TEST_SDC)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 6030146D))
(comp (ref U4)
(value 74HC157D,653)
(footprint KiCAD:SOIC127P600X175-16N)
(fields
(field (name MPN) 74HC157D,653)
(field (name OC_FARNELL) 1085334)
(field (name OC_NEWARK) 99K0583)
(field (name PACKAGE) SOIC-16)
(field (name SUPPLIER) NXP))
(libsource (lib EBS_logic_SMD-rescue) (part 74HC157D,653-74HC157D_653) (description ""))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 5FC07905))
(comp (ref R18)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 60880A90))
(comp (ref R19)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 60881AD8))
(comp (ref J4)
(value Conn_01x06_Female)
(footprint Connector_Molex:Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Female) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /logic/) (tstamps /5FBFABB8/))
(tstamp 61D8754E))
(comp (ref U8)
(value STM32F103RETx)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00191185.pdf)
(libsource (lib MCU_ST_STM32F1) (part STM32F103RETx) (description "ARM Cortex-M3 MCU, 512KB flash, 64KB RAM, 72MHz, 2-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6048E1B9))
(comp (ref C15)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 604904D1))
(comp (ref C16)
(value 22p)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60490DFA))
(comp (ref C17)
(value 22p)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60491827))
(comp (ref Y1)
(value Crystal)
(footprint Crystal:Crystal_SMD_HC49-SD)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60491B89))
(comp (ref SW1)
(value SW_Push)
(footprint Button_Switch_THT:SW_PUSH_6mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60492968))
(comp (ref R21)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60493F1D))
(comp (ref C18)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60498621))
(comp (ref C21)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60499555))
(comp (ref C22)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60499846))
(comp (ref C23)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60499A98))
(comp (ref L2)
(value 10u)
(footprint Inductor_SMD:L_2816_7142Metric_Pad3.20x4.45mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6049A082))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 604A595A))
(comp (ref D22)
(value LED)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 604B2922))
(comp (ref R25)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 604B449D))
(comp (ref R20)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 604E2D29))
(comp (ref R22)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60679E02))
(comp (ref R32)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608F5DCC))
(comp (ref R28)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608F5DD2))
(comp (ref D28)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608F5DD8))
(comp (ref R31)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608FD2F6))
(comp (ref R27)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608FD2FC))
(comp (ref D26)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608FD302))
(comp (ref D27)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608FD308))
(comp (ref C27)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608FD30E))
(comp (ref R30)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6090DAD6))
(comp (ref R24)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6090DADC))
(comp (ref D24)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6090DAE2))
(comp (ref D25)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6090DAE8))
(comp (ref C26)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6090DAEE))
(comp (ref R29)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 609222F5))
(comp (ref R23)
(value 4.7k)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 609222FB))
(comp (ref D20)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60922301))
(comp (ref D21)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60922307))
(comp (ref C20)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 6092230D))
(comp (ref Q2)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.onsemi.com/pub/Collateral/BC818-D.pdf)
(libsource (lib Transistor_BJT) (part BC817) (description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 609DB452))
(comp (ref C28)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608F5DE4))
(comp (ref D29)
(value 4V)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 608F5DDE))
(comp (ref R38)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60A07051))
(comp (ref R37)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60A0F2A9))
(comp (ref R36)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60A12D83))
(comp (ref R35)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60A16A60))
(comp (ref J8)
(value PROGRAMMER)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 60B55531))
(comp (ref H1)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 61D4E764))
(comp (ref H2)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 61D4F9B9))
(comp (ref H3)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 61D4FDE9))
(comp (ref H4)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 61D502A1))
(comp (ref J5)
(value SENSOR+CAN)
(footprint Connector_Molex:Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Female) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /supervisor/) (tstamps /6048DA8B/))
(tstamp 61D5145F))
(comp (ref U9)
(value MCP2562-H-SN)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/25167A.pdf)
(libsource (lib Interface_CAN_LIN) (part MCP2562-H-SN) (description "High-Speed CAN Transceiver, 1Mbps, 5V supply, Vio pin, -40C to +150C, SOIC-8"))
(sheetpath (names /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/))
(tstamp 604A7E7D))
(comp (ref C24)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/))
(tstamp 604A8E1A))
(comp (ref C25)
(value 100n)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/))
(tstamp 604A9A75))
(comp (ref R26)
(value R_Small)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/))
(tstamp 604AA267))
(comp (ref D23)
(value D_TVS_x2_AAC)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part D_TVS_x2_AAC) (description "Bidirectional dual transient-voltage-suppression diode, center on pin 3"))
(sheetpath (names /supervisor/CAN/) (tstamps /6048DA8B/604A78EF/))
(tstamp 604AAD47)))
(libparts
(libpart (lib Connector) (part Conn_01x02_Female)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x05_Male)
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))