-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathesc.net
1049 lines (1049 loc) · 34.5 KB
/
esc.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/fablab/KiCad/Sven/ESC/esc.sch)
(date "Fr 04 Dez 2015 08:18:56 CET")
(tool "Eeschema 0.201511171411+6319~30~ubuntu15.10.1-product")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Brushless ESC 30A")
(company)
(rev 0.1)
(date)
(source esc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value "(C) Philipp Hörauf"))
(comment (number 3) (value "(C) Toni Bratsch"))
(comment (number 4) (value "(C) Sven T. Schneider")))))
(components
(comp (ref IC5)
(value ATMEGA8-AI)
(footprint Housings_QFP:TQFP-32_7x7mm_Pitch0.8mm)
(libsource (lib atmel) (part ATMEGA8-AI))
(sheetpath (names /) (tstamps /))
(tstamp 564436E4))
(comp (ref C10)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5644461D))
(comp (ref C14)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564447A1))
(comp (ref C15)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56444938))
(comp (ref C16)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56444956))
(comp (ref P2)
(value CONN_01X03)
(footprint Socket_Strips:Socket_Strip_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 564452D4))
(comp (ref P1)
(value CONN_01X03)
(footprint Socket_Strips:Socket_Strip_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 56445545))
(comp (ref P3)
(value CONN_01X02)
(footprint Socket_Strips:Socket_Strip_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 564456C5))
(comp (ref R1)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56445B48))
(comp (ref R6)
(value 1)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56447238))
(comp (ref R7)
(value 1k5)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564472A8))
(comp (ref C7)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56447780))
(comp (ref C3)
(value 220µ)
(footprint Capacitors_ThroughHole:C_Radial_D8_L13_P3.8)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 56448322))
(comp (ref C4)
(value 10µ)
(footprint Capacitors_SMD:C_1206)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56448E53))
(comp (ref C5)
(value 10µ)
(footprint Capacitors_SMD:C_1206)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56448FAD))
(comp (ref R2)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56449896))
(comp (ref C12)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5644B5D1))
(comp (ref C13)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5644BA1E))
(comp (ref R12)
(value 100)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5644BA6A))
(comp (ref Q4)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 5645A4E6))
(comp (ref R4)
(value 18k)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5645B08B))
(comp (ref R5)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5645B23F))
(comp (ref R3)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5645B3A7))
(comp (ref Q3)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 56497E4C))
(comp (ref IC2)
(value LM25101)
(footprint sven:8-MSOP)
(libsource (lib esc-cache) (part LM25101))
(sheetpath (names /) (tstamps /))
(tstamp 5649D9D6))
(comp (ref Q2)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 5649F320))
(comp (ref Q1)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 5649F36B))
(comp (ref C2)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A0A82))
(comp (ref C1)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A0FEA))
(comp (ref Q8)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6533))
(comp (ref R9)
(value 18k)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A653D))
(comp (ref R11)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A6543))
(comp (ref R8)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A6549))
(comp (ref Q7)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6565))
(comp (ref IC3)
(value LM25101)
(footprint sven:8-MSOP)
(libsource (lib esc-cache) (part LM25101))
(sheetpath (names /) (tstamps /))
(tstamp 564A6575))
(comp (ref Q6)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6596))
(comp (ref Q5)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A659C))
(comp (ref C8)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A65A6))
(comp (ref C6)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A65AD))
(comp (ref Q12)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6A8E))
(comp (ref R14)
(value 18k)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A6A98))
(comp (ref R15)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A6A9E))
(comp (ref R13)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564A6AA4))
(comp (ref Q11)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6AC0))
(comp (ref IC4)
(value LM25101)
(footprint sven:8-MSOP)
(libsource (lib esc-cache) (part LM25101))
(sheetpath (names /) (tstamps /))
(tstamp 564A6AD0))
(comp (ref Q10)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6AF1))
(comp (ref Q9)
(value MOSFET_N)
(footprint Sven:SO8_WITH_Heatpipes_New)
(libsource (lib esc-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 564A6AF7))
(comp (ref C11)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A6B01))
(comp (ref C9)
(value 1µ)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib esc-cache) (part CP2))
(sheetpath (names /) (tstamps /))
(tstamp 564A6B08))
(comp (ref D1)
(value DIODE)
(footprint Diodes_SMD:SMA_Handsoldering)
(libsource (lib esc-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 564B6381))
(comp (ref R16)
(value 3k3)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564BCA97))
(comp (ref R17)
(value "0 Bridge")
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564BE4B3))
(comp (ref Y1)
(value RESONATEUR)
(footprint toni:CerOsc_3,2x1,3)
(libsource (lib Resonator_3pins) (part RESONATEUR))
(sheetpath (names /) (tstamps /))
(tstamp 564BEC06))
(comp (ref U2)
(value "LM2940 10V")
(footprint toni:SOT223_GND_VO_VI)
(libsource (lib regul) (part LM2931AZ-5.0))
(sheetpath (names /) (tstamps /))
(tstamp 564C8939))
(comp (ref C18)
(value 10µ)
(footprint Capacitors_SMD:C_1206)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564C973A))
(comp (ref C17)
(value 470n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564C985E))
(comp (ref P4)
(value CONN_02X02)
(footprint Socket_Strips:Socket_Strip_Straight_2x02)
(libsource (lib conn) (part CONN_02X02))
(sheetpath (names /) (tstamps /))
(tstamp 564CB360))
(comp (ref R21)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B1277))
(comp (ref R22)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B1464))
(comp (ref R20)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B1C36))
(comp (ref R19)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B1E68))
(comp (ref R18)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B272A))
(comp (ref R10)
(value R)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564B287A))
(comp (ref P5)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 564C4523))
(comp (ref P6)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 564C47FE))
(comp (ref R27)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564C95B9))
(comp (ref R28)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564C9864))
(comp (ref R25)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564CA584))
(comp (ref R26)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564CA6CE))
(comp (ref R23)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564CAD18))
(comp (ref R24)
(value PD)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564CAE4E))
(comp (ref C19)
(value 10µ)
(footprint Capacitors_SMD:C_1206)
(libsource (lib esc-rescue) (part C-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 564EF8ED))
(comp (ref D2)
(value LED)
(footprint LEDs:LED-0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56535D91))
(comp (ref R29)
(value 100)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 5653622E))
(comp (ref D3)
(value LED)
(footprint LEDs:LED-0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56537251))
(comp (ref R30)
(value 100)
(footprint Resistors_SMD:R_0603)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56537368))
(comp (ref U3)
(value LTV-356T)
(footprint toni:SO-4)
(libsource (lib opto) (part LTV-817))
(sheetpath (names /) (tstamps /))
(tstamp 56545590))
(comp (ref R31)
(value Bridge)
(footprint Resistors_SMD:R_1210_HandSoldering)
(libsource (lib esc-rescue) (part R-RESCUE-esc))
(sheetpath (names /) (tstamps /))
(tstamp 56556617))
(comp (ref U1)
(value LD1117S50TR)
(footprint TO_SOT_Packages_SMD:SOT-223)
(libsource (lib regul) (part LD1117S50TR))
(sheetpath (names /) (tstamps /))
(tstamp 565C07C9)))
(libparts
(libpart (lib atmel) (part ATMEGA8-AI)
(aliases
(alias ATMEGA8A-A))
(description "TQFP32, 8k Flash, 1k SRAM, 512B EEPROM")
(docs http://www.atmel.com/images/atmel-2486-8-bit-avr-microcontroller-atmega8_l_datasheet.pdf)
(footprints
(fp TQFP32))
(fields
(field (name Reference) IC)
(field (name Value) ATMEGA8-AI)
(field (name Footprint) TQFP32))
(pins
(pin (num 1) (name "(INT1)PD3") (type BiDi))
(pin (num 2) (name "(XCK/T0)PD4") (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VCC) (type power_in))
(pin (num 7) (name "PB6(XTAL1/TOSC1)") (type BiDi))
(pin (num 8) (name "PB7(XTAL2/TOSC2)") (type BiDi))
(pin (num 9) (name "(T1)PD5") (type BiDi))
(pin (num 10) (name "(AIN0)PD6") (type BiDi))
(pin (num 11) (name "(AIN1)PD7") (type BiDi))
(pin (num 12) (name "(ICP)PB0") (type BiDi))
(pin (num 13) (name "(OC1A)PB1") (type BiDi))
(pin (num 14) (name "(~SS~/OC1B)PB2") (type BiDi))
(pin (num 15) (name "(MOSI/OC2)PB3") (type BiDi))
(pin (num 16) (name "(MISO)PB4") (type BiDi))
(pin (num 17) (name "(SCK)PB5") (type BiDi))
(pin (num 18) (name AVCC) (type power_in))
(pin (num 19) (name ADC6) (type BiDi))
(pin (num 20) (name AREF) (type BiDi))
(pin (num 21) (name AGND) (type power_in))
(pin (num 22) (name ADC7) (type BiDi))
(pin (num 23) (name "(ADC0)PC0") (type BiDi))
(pin (num 24) (name "(ADC1)PC1") (type BiDi))
(pin (num 25) (name "(ADC2)PC2") (type BiDi))
(pin (num 26) (name "(ADC3)PC3") (type BiDi))
(pin (num 27) (name "(ADC4/SDA)PC4") (type BiDi))
(pin (num 28) (name "(ADC5/SCL)PC5") (type BiDi))
(pin (num 29) (name "PC6(~RESET~)") (type BiDi))
(pin (num 30) (name "(RXD)PD0") (type BiDi))
(pin (num 31) (name "(TXD)PD1") (type BiDi))
(pin (num 32) (name "(INT0)PD2") (type BiDi))))
(libpart (lib esc-rescue) (part C-RESCUE-esc)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C-RESCUE-esc))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X01)
(description "Connector 01x01")
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_01X02)
(description "Connector 01x02")
(footprints
(fp Pin_Header_Straight_1X02)
(fp Pin_Header_Angled_1X02)
(fp Socket_Strip_Straight_1X02)
(fp Socket_Strip_Angled_1X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_02X02)
(description "Connector 02x02")
(footprints
(fp Pin_Header_Straight_2X02)
(fp Pin_Header_Angled_2X02)
(fp Socket_Strip_Straight_2X02)
(fp Socket_Strip_Angled_2X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))))
(libpart (lib esc-cache) (part CP2)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) CP2))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib esc-cache) (part DIODE)
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODE))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib regul) (part LD1117S33TR)
(aliases
(alias LD1117S33CTR)
(alias LD1117S12TR)
(alias LD1117S12CTR)
(alias LD1117S18TR)
(alias LD1117S18CTR)
(alias LD1117S25TR)
(alias LD1117S25CTR)
(alias LD1117S50TR)
(alias LD1117S50CTR))
(description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT223")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
(footprints
(fp SOT223))
(fields
(field (name Reference) U)
(field (name Value) LD1117S33TR)
(field (name Footprint) SOT-223))
(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 LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(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 esc-cache) (part LM25101)
(fields
(field (name Reference) IC)
(field (name Value) LM25101))
(pins
(pin (num 1) (name VDD) (type input))
(pin (num 2) (name HB) (type output))
(pin (num 3) (name HO) (type output))
(pin (num 4) (name HS) (type input))
(pin (num 5) (name HI) (type input))
(pin (num 6) (name LI) (type input))
(pin (num 7) (name Vss) (type input))
(pin (num 8) (name LO) (type output))
(pin (num PAD) (name PAD) (type input))))
(libpart (lib regul) (part LM2931AZ-5.0)
(aliases
(alias LM2931Z-5.0))
(description "LM2931, 100mA Low drop-out regulator, Fixed Output 5V")
(docs http://www.ti.com/lit/ds/symlink/lm2931-n.pdf)
(footprints
(fp TO92-123))
(fields
(field (name Reference) U)
(field (name Value) LM2931AZ-5.0)
(field (name Footprint) TO92-123))
(pins
(pin (num 1) (name VO) (type power_out))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib opto) (part LTV-817)
(description "DIP-4, DC Optocoupler, Vce 35V, CTR 50%")
(docs http://www.us.liteon.com/downloads/LTV-817-827-847.PDF)
(footprints
(fp DIP-4*))
(fields
(field (name Reference) U)
(field (name Value) LTV-817)
(field (name Footprint) DIP-4))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))))
(libpart (lib esc-cache) (part MOS_N)
(aliases
(alias MOSFET_N))
(fields
(field (name Reference) Q)
(field (name Value) MOS_N))
(pins
(pin (num D) (name D) (type passive))
(pin (num G) (name G) (type input))
(pin (num S) (name S) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib esc-rescue) (part R-RESCUE-esc)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R-RESCUE-esc))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Resonator_3pins) (part RESONATEUR)
(fields
(field (name Reference) Y)
(field (name Value) RESONATEUR))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical esc-rescue)
(uri /home/fablab/KiCad/Sven/ESC/esc-rescue.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical regul)
(uri /usr/share/kicad/library/regul.lib))
(library (logical opto)
(uri /usr/share/kicad/library/opto.lib))
(library (logical atmel)
(uri /usr/share/kicad/library/atmel.lib))
(library (logical Resonator_3pins)
(uri /home/fablab/KiCad/Sven/PhilippsKicadBauteile/Schaltplansymbole/Resonator_3pins.lib))
(library (logical esc-cache)
(uri /home/fablab/KiCad/Sven/ESC/esc-cache.lib)))
(nets
(net (code 1) (name V_BAT)
(node (ref P4) (pin 3))
(node (ref C3) (pin 1))
(node (ref P4) (pin 1))
(node (ref Q5) (pin D))
(node (ref Q1) (pin D))
(node (ref Q2) (pin D))
(node (ref D1) (pin 1))
(node (ref P3) (pin 2))
(node (ref Q9) (pin D))
(node (ref Q10) (pin D))
(node (ref Q6) (pin D)))
(net (code 2) (name C)
(node (ref C11) (pin 2))
(node (ref R14) (pin 1))
(node (ref Q9) (pin S))
(node (ref Q10) (pin S))
(node (ref Q11) (pin D))
(node (ref IC4) (pin 4))
(node (ref Q12) (pin D))
(node (ref P2) (pin 3)))
(net (code 3) (name GND)
(node (ref IC3) (pin PAD))
(node (ref Q11) (pin S))
(node (ref R27) (pin 1))
(node (ref IC3) (pin 7))
(node (ref P5) (pin 1))
(node (ref R28) (pin 1))
(node (ref R24) (pin 1))
(node (ref R23) (pin 1))
(node (ref C19) (pin 2))
(node (ref R31) (pin 1))
(node (ref Q12) (pin S))
(node (ref C17) (pin 2))
(node (ref C18) (pin 2))
(node (ref R15) (pin 2))
(node (ref R26) (pin 1))
(node (ref R25) (pin 1))
(node (ref Q7) (pin S))
(node (ref U2) (pin 2))
(node (ref R11) (pin 2))
(node (ref Q4) (pin S))
(node (ref R5) (pin 2))
(node (ref Q3) (pin S))
(node (ref IC4) (pin 7))
(node (ref IC4) (pin PAD))
(node (ref C9) (pin 2))
(node (ref C3) (pin 2))
(node (ref C6) (pin 2))
(node (ref P3) (pin 1))
(node (ref C1) (pin 2))
(node (ref Q8) (pin S))
(node (ref IC2) (pin PAD))
(node (ref IC2) (pin 7)))
(net (code 4) (name "Net-(IC4-Pad8)")
(node (ref R22) (pin 2))
(node (ref IC4) (pin 8)))
(net (code 5) (name C-)
(node (ref IC4) (pin 6))
(node (ref IC5) (pin 9))
(node (ref R28) (pin 2)))
(net (code 6) (name C+)
(node (ref IC4) (pin 5))
(node (ref R27) (pin 2))
(node (ref IC5) (pin 2)))
(net (code 7) (name /C_Highside_Gate)
(node (ref Q10) (pin G))
(node (ref R21) (pin 1))
(node (ref Q9) (pin G)))
(net (code 8) (name "Net-(IC5-Pad7)")
(node (ref Y1) (pin 1))
(node (ref IC5) (pin 7)))
(net (code 9) (name "Net-(IC5-Pad8)")
(node (ref Y1) (pin 3))
(node (ref IC5) (pin 8)))
(net (code 10) (name "Net-(IC5-Pad14)")
(node (ref IC5) (pin 14))
(node (ref R17) (pin 1)))
(net (code 11) (name "Net-(IC4-Pad3)")
(node (ref IC4) (pin 3))
(node (ref R21) (pin 2)))
(net (code 12) (name "Net-(IC5-Pad15)")
(node (ref IC5) (pin 15)))
(net (code 13) (name "Net-(IC5-Pad16)")
(node (ref IC5) (pin 16)))
(net (code 14) (name "Net-(IC5-Pad17)")
(node (ref IC5) (pin 17)))
(net (code 15) (name +5V)
(node (ref U3) (pin 4))
(node (ref IC5) (pin 6))
(node (ref C5) (pin 1))
(node (ref R7) (pin 2))
(node (ref R12) (pin 2))
(node (ref R30) (pin 2))
(node (ref U1) (pin 2))
(node (ref R16) (pin 2))
(node (ref C10) (pin 1))
(node (ref IC5) (pin 4)))
(net (code 16) (name "Net-(IC5-Pad29)")
(node (ref R16) (pin 1))
(node (ref IC5) (pin 29)))
(net (code 17) (name "Net-(D1-Pad2)")
(node (ref R6) (pin 2))
(node (ref D1) (pin 2)))
(net (code 18) (name "Net-(C11-Pad1)")
(node (ref IC4) (pin 2))
(node (ref C11) (pin 1)))
(net (code 19) (name "Net-(C2-Pad1)")
(node (ref C2) (pin 1))
(node (ref IC2) (pin 2)))
(net (code 20) (name "Net-(C8-Pad1)")
(node (ref C8) (pin 1))
(node (ref IC3) (pin 2)))
(net (code 21) (name B)
(node (ref C8) (pin 2))
(node (ref IC3) (pin 4))
(node (ref Q6) (pin S))
(node (ref Q5) (pin S))
(node (ref P2) (pin 2))
(node (ref Q7) (pin D))
(node (ref R9) (pin 1))
(node (ref Q8) (pin D)))
(net (code 22) (name "Net-(IC3-Pad8)")
(node (ref R20) (pin 2))
(node (ref IC3) (pin 8)))
(net (code 23) (name B-)
(node (ref R26) (pin 2))
(node (ref IC3) (pin 6))
(node (ref IC5) (pin 27)))
(net (code 24) (name B+)
(node (ref R25) (pin 2))
(node (ref IC3) (pin 5))
(node (ref IC5) (pin 28)))
(net (code 25) (name S_C)
(node (ref R14) (pin 2))
(node (ref C14) (pin 1))
(node (ref R15) (pin 1))
(node (ref R13) (pin 1))
(node (ref C15) (pin 2))
(node (ref IC5) (pin 22)))
(net (code 26) (name 9V)
(node (ref C6) (pin 1))
(node (ref C1) (pin 1))
(node (ref U2) (pin 1))
(node (ref P4) (pin 2))
(node (ref C18) (pin 1))
(node (ref IC4) (pin 1))
(node (ref C9) (pin 1))
(node (ref IC2) (pin 1))
(node (ref C19) (pin 1))
(node (ref IC3) (pin 1)))
(net (code 27) (name M)
(node (ref R8) (pin 2))
(node (ref IC5) (pin 10))
(node (ref R3) (pin 2))
(node (ref R13) (pin 2)))
(net (code 28) (name "Net-(D3-Pad2)")
(node (ref R30) (pin 1))
(node (ref D3) (pin 2)))
(net (code 29) (name "Net-(D2-Pad2)")
(node (ref R29) (pin 1))
(node (ref D2) (pin 2)))
(net (code 30) (name "Net-(IC5-Pad31)")
(node (ref R29) (pin 2))
(node (ref IC5) (pin 31)))
(net (code 31) (name "Net-(R1-Pad1)")
(node (ref R1) (pin 1))
(node (ref U3) (pin 1)))
(net (code 32) (name A-)
(node (ref IC2) (pin 6))
(node (ref IC5) (pin 12))
(node (ref R24) (pin 2)))
(net (code 33) (name A+)
(node (ref IC2) (pin 5))
(node (ref R23) (pin 2))
(node (ref IC5) (pin 26)))
(net (code 34) (name /VBat_to_10V)
(node (ref P4) (pin 4))
(node (ref C17) (pin 1))
(node (ref U2) (pin 3)))
(net (code 35) (name /C_Lowside_Gate)
(node (ref Q11) (pin G))
(node (ref Q12) (pin G))
(node (ref R22) (pin 1)))
(net (code 36) (name /B_Lowside_Gate)
(node (ref Q7) (pin G))
(node (ref R20) (pin 1))
(node (ref Q8) (pin G)))
(net (code 37) (name /B_Highside_Gate)
(node (ref R19) (pin 1))
(node (ref Q6) (pin G))
(node (ref Q5) (pin G)))
(net (code 38) (name "Net-(IC3-Pad3)")
(node (ref R19) (pin 2))
(node (ref IC3) (pin 3)))
(net (code 39) (name "Net-(IC2-Pad3)")
(node (ref IC2) (pin 3))
(node (ref R10) (pin 2)))
(net (code 40) (name "Net-(IC2-Pad8)")
(node (ref IC2) (pin 8))
(node (ref R18) (pin 2)))
(net (code 41) (name /INPUT_SIGNAL)
(node (ref P1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 42) (name "Net-(IC5-Pad11)")
(node (ref IC5) (pin 11)))
(net (code 43) (name "Net-(P1-Pad2)")
(node (ref P1) (pin 2)))
(net (code 44) (name A)
(node (ref Q3) (pin D))
(node (ref C2) (pin 2))
(node (ref Q1) (pin S))
(node (ref P2) (pin 1))
(node (ref IC2) (pin 4))
(node (ref R4) (pin 1))
(node (ref Q2) (pin S))
(node (ref Q4) (pin D)))
(net (code 45) (name "Net-(C4-Pad1)")
(node (ref C4) (pin 1))
(node (ref U1) (pin 3))
(node (ref R6) (pin 1)))
(net (code 46) (name S_PWR)
(node (ref IC5) (pin 24))
(node (ref R7) (pin 1))
(node (ref C7) (pin 1)))
(net (code 47) (name "Net-(IC5-Pad13)")
(node (ref IC5) (pin 13)))
(net (code 48) (name "Net-(IC5-Pad25)")
(node (ref IC5) (pin 25)))
(net (code 49) (name "Net-(C13-Pad2)")
(node (ref IC5) (pin 18))
(node (ref C13) (pin 2))
(node (ref R12) (pin 1)))
(net (code 50) (name "Net-(C12-Pad1)")
(node (ref C12) (pin 1))
(node (ref IC5) (pin 20)))
(net (code 51) (name S_A)