-
Notifications
You must be signed in to change notification settings - Fork 3
/
motoHUD.net
1736 lines (1736 loc) · 66.2 KB
/
motoHUD.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\wiki1\Documents\kicad\motoHUDsch\motoHUD.sch)
(date "14.10.2019 18:14:40")
(tool "Eeschema (5.0.2)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title motoHUD)
(company "Wiktor Burdecki")
(rev 2)
(date 2019-07-11)
(source motoHUD.sch)
(comment (number 1) (value ""))
(comment (number 2) (value REV2))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value STM32F103C8Tx)
(footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
(datasheet https://www.tme.eu/pl/details/stm32f103c8t6/mikrokontrolery-st/stmicroelectronics/)
(libsource (lib MCU_ST_STM32F1) (part STM32F103C8Tx) (description "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48"))
(sheetpath (names /) (tstamps /))
(tstamp 5D121749))
(comp (ref C33)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D121AF9))
(comp (ref C32)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D121B8B))
(comp (ref R53)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D121CE8))
(comp (ref Y1)
(value HC49USM-FF3F18-8M)
(footprint Crystal:Crystal_SMD_HC49-SD_HandSoldering)
(datasheet https://www.tme.eu/pl/details/hc49usm-ff3f8.00/rezonatory-kwarcowe-smd/ilsi/hc49usm-ff3f18-8-0000/)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5D121FFC))
(comp (ref Y2)
(value LFXTAL009678)
(footprint Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm)
(datasheet https://www.tme.eu/pl/details/32.768k-cfpx217/rezonatory-kwarcowe-smd/iqd-frequency-products/lfxtal009678/)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5D122014))
(comp (ref C31)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D122050))
(comp (ref C30)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1220A0))
(comp (ref R74)
(value 1,5k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D12544C))
(comp (ref D10)
(value LEDSTATUS)
(footprint LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet https://www.tme.eu/pl/details/osr51206c1e/diody-led-smd-kolorowe/optosupply/)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D125520))
(comp (ref R54)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D126208))
(comp (ref J7)
(value USB_B_Mini)
(footprint Connector_USB:USB_Mini-B_Lumberg_2486_01_Horizontal)
(datasheet https://www.tme.eu/pl/details/musb-b5-s-ra-smt/zlacza-usb-i-ieee1394/adam-tech/musb-b5-s-ra-tsmt-cs1/)
(libsource (lib Connector) (part USB_B_Mini) (description "USB Mini Type B connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1A2D37))
(comp (ref R72)
(value 22R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1A345B))
(comp (ref R71)
(value 22R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1A361D))
(comp (ref R73)
(value 1,5k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1A375F))
(comp (ref J9)
(value "LCD Connector")
(footprint motoHUD:ILI9341FFC)
(datasheet https://pl.aliexpress.com/item/32861524235.html?spm=a2g0s.9042311.0.0.60ae5c0fPdHgZW)
(libsource (lib Connector) (part Conn_01x18_Female) (description "Generic connector, single row, 01x18, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1AE24E))
(comp (ref U6)
(value M95320-WMN6P)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet https://www.tme.eu/pl/details/m95320-wmn6tp/pamieci-eeprom-szeregowe/stmicroelectronics/)
(libsource (lib Memory_EEPROM) (part M95256-WMN6P) (description "SPI EEPROM, 256Kb (32K x 8), No Identification Page, 2.5 to 5.5V, SO8"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C156E))
(comp (ref R51)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C2540))
(comp (ref R55)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C5149))
(comp (ref R52)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1CAEDC))
(comp (ref R22)
(value 7,6k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1DFECD))
(comp (ref R23)
(value 7,6k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1F201C))
(comp (ref J3)
(value THERM2)
(footprint Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-02a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5025/)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1F2023))
(comp (ref R21)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D211158))
(comp (ref M1)
(value "X27 168")
(footprint motoHUD:X27-168)
(datasheet http://www.infineon.com/dgdl/Application-Note-TLE8110EE_driving_UniPolarStepperMotor_V1.1.pdf?fileId=db3a30431be39b97011be5d0aa0a00b0)
(libsource (lib Motor) (part Stepper_Motor_bipolar) (description "4-wire bipolar stepper motor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D228980))
(comp (ref TP9)
(value USB_ID)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D22B637))
(comp (ref D8)
(value BCKLED)
(footprint LED_SMD:LED_1206_3216Metric)
(datasheet https://www.tme.eu/pl/details/fyls-1206uwc/diody-led-smd-biale/foryard/)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2326D7))
(comp (ref R65)
(value 39R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D241180))
(comp (ref R66)
(value 39R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D24123C))
(comp (ref R64)
(value 39R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2412A2))
(comp (ref R63)
(value 39R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D241308))
(comp (ref R61)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D25A75D))
(comp (ref D9)
(value BCKLED)
(footprint LED_SMD:LED_1206_3216Metric)
(datasheet https://www.tme.eu/pl/details/fyls-1206uwc/diody-led-smd-biale/foryard/)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2680DA))
(comp (ref D7)
(value BCKLED)
(footprint LED_SMD:LED_1206_3216Metric)
(datasheet https://www.tme.eu/pl/details/fyls-1206uwc/diody-led-smd-biale/foryard/)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D26824A))
(comp (ref D6)
(value BCKLED)
(footprint LED_SMD:LED_1206_3216Metric)
(datasheet https://www.tme.eu/pl/details/fyls-1206uwc/diody-led-smd-biale/foryard/)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2682BC))
(comp (ref R33)
(value 100R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D268D63))
(comp (ref R35)
(value 100R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2692FD))
(comp (ref R36)
(value 100R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D269371))
(comp (ref R34)
(value 100R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D26DA25))
(comp (ref R31)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D29C434))
(comp (ref Q2)
(value 2N7002KQ-13)
(footprint motoHUD:SOT-23)
(datasheet https://www.tme.eu/pl/details/2n7002kq-13/tranzystory-z-kanalem-n-smd/diodes-incorporated/)
(libsource (lib Device) (part Q_NMOS_DGS) (description "N-MOSFET transistor, drain/gate/source"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2E6400))
(comp (ref Q1)
(value 2N7002KQ-13)
(footprint motoHUD:SOT-23)
(datasheet https://www.tme.eu/pl/details/2n7002kq-13/tranzystory-z-kanalem-n-smd/diodes-incorporated/)
(libsource (lib Device) (part Q_NMOS_DGS) (description "N-MOSFET transistor, drain/gate/source"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2E6775))
(comp (ref C21)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2EDDA3))
(comp (ref TP5)
(value BCKL_CAP)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3107A5))
(comp (ref R41)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2612F5))
(comp (ref R42)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2614CB))
(comp (ref R43)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D279E9A))
(comp (ref R44)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D279EA1))
(comp (ref R45)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2820FF))
(comp (ref R46)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D282106))
(comp (ref U4)
(value AZ1117-3.3)
(footprint motoHUD:SOT-223)
(datasheet https://www.tme.eu/pl/details/az1117ch-3.3trg1/stabilizatory-napiecia-nieregulowane-ldo/diodes-incorporated/)
(libsource (lib Regulator_Linear) (part AZ1117-3.3) (description "1A 20V Fixed LDO Linear Regulator, 3.3V, SOT-89/SOT-223/TO-220/TO-252/TO-263"))
(sheetpath (names /) (tstamps /))
(tstamp 5D344B3F))
(comp (ref C17)
(value "10u 16v")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D363FF9))
(comp (ref C18)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D36448E))
(comp (ref R11)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D425666))
(comp (ref R12)
(value 22k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D425BF8))
(comp (ref C11)
(value 2,2u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4A6DE0))
(comp (ref D1)
(value 1N4148W-7-F)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.tme.eu/pl/details/1n4148w-7-f/diody-uniwersalne-smd/diodes-incorporated/)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4CE855))
(comp (ref D2)
(value 1N4148W-7-F)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.tme.eu/pl/details/1n4148w-7-f/diody-uniwersalne-smd/diodes-incorporated/)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5D52CD84))
(comp (ref TP3)
(value V_RTC)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D586B0C))
(comp (ref C24)
(value 0,1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D28BA6E))
(comp (ref C23)
(value 0,1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D29C336))
(comp (ref C34)
(value 0,1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2BD909))
(comp (ref F1)
(value "ESKA FUSE 0805-FF PW 0A5")
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet https://www.tme.eu/pl/details/bsmd0805-ss0.5/bezpieczniki-smd-0805-superszybkie/eska/fuse-0805-ff-pw-0a5/)
(libsource (lib Device) (part Fuse_Small) (description "Fuse, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2E7252))
(comp (ref J5)
(value SIG_RPM)
(footprint Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-02a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5025/)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D319C45))
(comp (ref R211)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D379FE4))
(comp (ref J8)
(value ICSP)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet goldpin)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D42BE39))
(comp (ref R25)
(value 5,1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CDB70))
(comp (ref R24)
(value 5,1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CDD19))
(comp (ref D3)
(value 1N4148W-7-F)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.tme.eu/pl/details/1n4148w-7-f/diody-uniwersalne-smd/diodes-incorporated/)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2DFDEF))
(comp (ref R210)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2E0387))
(comp (ref R29)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D2E0483))
(comp (ref R28)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D302D78))
(comp (ref R27)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D314531))
(comp (ref TP7)
(value PA0)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5733F6))
(comp (ref TP8)
(value PA1)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D57391B))
(comp (ref J2)
(value THERM1)
(footprint Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-02a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5025/)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1E0061))
(comp (ref J4)
(value HALL)
(footprint Connector_JST:JST_XH_B03B-XH-A_1x03_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-03a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5035/)
(libsource (lib Connector) (part Conn_01x03_Female) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D208358))
(comp (ref J1)
(value POWER)
(footprint Connector_JST:JST_XH_B03B-XH-A_1x03_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-03a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5035/)
(libsource (lib Connector) (part Conn_01x03_Female) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D689C9F))
(comp (ref J6)
(value SIGNAL)
(footprint Connector_JST:JST_XH_B03B-XH-A_1x03_P2.50mm_Vertical)
(datasheet https://www.tme.eu/pl/details/mx-5267-03a/zlacza-sygnalowe-raster-2-50mm/molex/22-03-5035/)
(libsource (lib Connector) (part Conn_01x03_Female) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D705E18))
(comp (ref C16)
(value 100u)
(footprint Capacitor_THT:CP_Radial_D8.0mm_P3.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA32123))
(comp (ref U5)
(value MCP16301)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.tme.eu/pl/details/mcp16301t-i_chy/regulatory-napiecia-uklady-dc-dc/microchip-technology/)
(libsource (lib Regulator_Switching) (part MCP16301) (description "1A, 4.0 to 30V Input, High Voltage Input integrated switch step-down regulator, SOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA683A0))
(comp (ref C12)
(value "10u 16v")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA8C051))
(comp (ref C13)
(value 0,1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAC1A01))
(comp (ref L1)
(value DLG-0403-220)
(footprint motoHUD:DLG-0403-220)
(datasheet https://www.tme.eu/pl/details/dlg-0403-220/dlawiki-smd-mocy/ferrocore/)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5DAFA655))
(comp (ref D5)
(value 1N4148W-7-F)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.tme.eu/pl/details/1n4148w-7-f/diody-uniwersalne-smd/diodes-incorporated/)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB2340A))
(comp (ref R13)
(value 51,1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DB98D26))
(comp (ref R15)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DB98E5C))
(comp (ref R14)
(value 1,5k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DC01ACD))
(comp (ref C14)
(value "10u 16v")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DC180EC))
(comp (ref C15)
(value "10u 16v")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DC181EC))
(comp (ref D4)
(value STPS1L40A)
(footprint Diode_SMD:D_SMA_Handsoldering)
(datasheet https://www.tme.eu/pl/details/stps1l40a/diody-schottky-smd/stmicroelectronics/)
(libsource (lib Diode) (part BAT48RL) (description "40V 0.35A Small Signal Schottky Diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAC1BF3))
(comp (ref R26)
(value 2,2k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DE6484A))
(comp (ref TP4)
(value V_IGN)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF01FDA))
(comp (ref TP6)
(value 5V)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF03C8A))
(comp (ref TP2)
(value 3v3)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E02857E))
(comp (ref TP1)
(value VEL)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E040D81))
(comp (ref U2)
(value LM2904DT)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.tme.eu/pl/details/lm2904dt/wzmacniacze-operacyjne-smd/stmicroelectronics/)
(libsource (lib Amplifier_Operational) (part LM2904) (description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0B8F68))
(comp (ref R62)
(value 0R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E33919A))
(comp (ref C25)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E38806A))
(comp (ref R32)
(value 0R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E40952F))
(comp (ref U3)
(value LM2904DT)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.tme.eu/pl/details/lm2904dt/wzmacniacze-operacyjne-smd/stmicroelectronics/)
(libsource (lib Amplifier_Operational) (part LM2904) (description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4563AF))
(comp (ref C22)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52D143))
(comp (ref TP10)
(value TEMP1)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E77F0FC))
(comp (ref TP11)
(value TEMP2)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E77F760))
(comp (ref TP12)
(value RPMA)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E781CD0))
(comp (ref TP16)
(value RPMD)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E78200D))
(comp (ref TP13)
(value BOOST)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E79E7E1))
(comp (ref TP15)
(value RPMC)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7A038B))
(comp (ref TP14)
(value BCKL_V)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7A13E2))
(comp (ref TP19)
(value HIBEAM)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7A3FF4))
(comp (ref TP20)
(value HIBEAM12)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8200F0))
(comp (ref TP27)
(value LCDCAP)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5EB238D6))
(comp (ref TP23)
(value CS2)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE28B76))
(comp (ref TP30)
(value LCDV)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5EEB3AE7))
(comp (ref R16)
(value 0R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EEE5E2F))
(comp (ref R17)
(value 0R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EF3F151))
(comp (ref SW1)
(value TACTM-613N-F)
(footprint motoHUD:TACTM-613N-F)
(datasheet https://www.tme.eu/pl/details/tactm-613n-f/mikroprzelaczniki-tact/ninigi/)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA294A1))
(comp (ref TP31)
(value SCK2)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9FAF2B))
(comp (ref TP32)
(value MOSI2)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9FC361))
(comp (ref TP33)
(value MISO2)
(footprint TestPoint:TestPoint_THTPad_D2.0mm_Drill1.0mm)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9FD071))
(comp (ref SW2)
(value TACTM-613N-F)
(footprint motoHUD:TACTM-613N-F)
(datasheet https://www.tme.eu/pl/details/tactm-613n-f/mikroprzelaczniki-tact/ninigi/)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA9863F)))
(libparts
(libpart (lib Amplifier_Operational) (part LM2904)
(aliases
(alias LM358)
(alias AD8620)
(alias LMC6062)
(alias LMC6082)
(alias TL062)
(alias TL072)
(alias TL082)
(alias NE5532)
(alias SA5532)
(alias RC4558)
(alias RC4560)
(alias RC4580)
(alias LMV358)
(alias TS912)
(alias TSV912IDT)
(alias TSV912IST)
(alias TLC272)
(alias TLC277)
(alias MCP602)
(alias OPA2134)
(alias OPA2340)
(alias OPA2376xxD)
(alias OPA2376xxDGK)
(alias MC33078)
(alias MC33178)
(alias LM4562)
(alias OP249)
(alias OP275)
(alias ADA4075-2)
(alias MCP6002-xP)
(alias MCP6002-xSN)
(alias MCP6002-xMS)
(alias LM7332)
(alias OPA2333xxD)
(alias OPA2333xxDGK)
(alias LMC6482)
(alias LT1492)
(alias LTC6081xMS8)
(alias LM6172)
(alias MCP6L92)
(alias NJM2043)
(alias NJM2114)
(alias NJM4556A)
(alias NJM4558)
(alias NJM4559)
(alias NJM4560)
(alias NJM4580)
(alias NJM5532)
(alias ADA4807-2ARM)
(alias OPA2691)
(alias LT6233)
(alias OPA2356xxD)
(alias OPA2356xxDGK)
(alias OPA1612AxD)
(alias MC33172)
(alias OPA1602))
(description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8")
(docs http://www.ti.com/lit/ds/symlink/lm358.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*P0.65mm*)
(fp TSSOP*4.4x3mm*P0.65mm*)
(fp MSOP*3x3mm*P0.65mm*)
(fp SSOP*3.9x4.9mm*P0.635mm*)
(fp LFCSP*2x2mm*P0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2904))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(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_01x03_Female)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Female))
(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 Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(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 Connector) (part Conn_01x18_Female)
(description "Generic connector, single row, 01x18, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x18_Female))
(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))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields