-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathXpressoSmoothie.net
1689 lines (1689 loc) · 53.3 KB
/
XpressoSmoothie.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/chris/gitspace/XpressoSmoothie/XpressoSmoothie.sch)
(date "Tue 08 Apr 2014 12:02:35 PM EDT")
(tool "eeschema (2013-mar-13)-testing"))
(components
(comp (ref D7)
(value 1N4007)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 519652D7))
(comp (ref J15)
(value HEADER_4)
(fields
(field (name Explanation) I2C))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 5194D38D))
(comp (ref C14)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 5193B0D6))
(comp (ref C13)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 5193B0D1))
(comp (ref C1)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 51911758))
(comp (ref D6)
(value POWER_4)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5190124B))
(comp (ref R18)
(value 1k8)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51901247))
(comp (ref Q4)
(value "IRLB 8743")
(libsource (lib RMC) (part MOSFET_N_RMC))
(sheetpath (names /) (tstamps /))
(tstamp 51901111))
(comp (ref J22)
(value HEADER_2)
(fields
(field (name Explanation) LOAD))
(libsource (lib w_connectors) (part HEADER_2))
(sheetpath (names /) (tstamps /))
(tstamp 5190101D))
(comp (ref C8)
(value 1u/50v)
(footprint SM1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51900DCA))
(comp (ref F2)
(value FUSE)
(libsource (lib device) (part FUSE))
(sheetpath (names /) (tstamps /))
(tstamp 51900D31))
(comp (ref F1)
(value FUSE)
(libsource (lib device) (part FUSE))
(sheetpath (names /) (tstamps /))
(tstamp 51900D2D))
(comp (ref J11)
(value Pwr_in)
(fields
(field (name Explanation) Power_in))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 51900CCE))
(comp (ref C16)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519000EB))
(comp (ref C15)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519000E8))
(comp (ref C9)
(value 10u)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 518FFD3B))
(comp (ref C11)
(value 10u)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 518FFD38))
(comp (ref C10)
(value 10u)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 518FFD18))
(comp (ref R12)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 518FFCA3))
(comp (ref R11)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 518FFC9F))
(comp (ref R10)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 518FFC9C))
(comp (ref SW2)
(value SW_PUSH)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 518FF94F))
(comp (ref SW1)
(value SW_PUSH)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 518FF94A))
(comp (ref R1)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 518FEBD7))
(comp (ref J4)
(value HEADER_3X2)
(fields
(field (name Explanation) MS123))
(libsource (lib w_connectors) (part HEADER_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 518FE9BA))
(comp (ref J1)
(value HEADER_4)
(fields
(field (name Explanation) MOTOR_OUT))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 518FE799))
(comp (ref U1)
(value POLOLU_A4988)
(libsource (lib pololu_a4988x) (part POLOLU_A4988))
(sheetpath (names /) (tstamps /))
(tstamp 518FE66A))
(comp (ref D8)
(value 1N4007)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 51985914))
(comp (ref D5)
(value POWER_3)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 51985921))
(comp (ref R23)
(value 1k8)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51985927))
(comp (ref Q3)
(value "IRLB 8743")
(libsource (lib RMC) (part MOSFET_N_RMC))
(sheetpath (names /) (tstamps /))
(tstamp 51985933))
(comp (ref J21)
(value HEADER_2)
(fields
(field (name Explanation) LOAD))
(libsource (lib w_connectors) (part HEADER_2))
(sheetpath (names /) (tstamps /))
(tstamp 51985939))
(comp (ref D2)
(value 1N4007)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 519859DF))
(comp (ref D4)
(value POWER_2)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 519859EC))
(comp (ref R21)
(value 1k8)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 519859F2))
(comp (ref Q2)
(value "IRLB 8743")
(libsource (lib RMC) (part MOSFET_N_RMC))
(sheetpath (names /) (tstamps /))
(tstamp 519859FE))
(comp (ref J20)
(value HEADER_2)
(fields
(field (name Explanation) LOAD))
(libsource (lib w_connectors) (part HEADER_2))
(sheetpath (names /) (tstamps /))
(tstamp 51985A04))
(comp (ref D1)
(value 1N4007)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 51985A2E))
(comp (ref D3)
(value POWER_1)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 51985A3B))
(comp (ref R19)
(value 1k8)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51985A41))
(comp (ref Q1)
(value "IRLB 8743")
(libsource (lib RMC) (part MOSFET_N_RMC))
(sheetpath (names /) (tstamps /))
(tstamp 51985A4D))
(comp (ref J19)
(value HEADER_2)
(fields
(field (name Explanation) LOAD))
(libsource (lib w_connectors) (part HEADER_2))
(sheetpath (names /) (tstamps /))
(tstamp 51985A53))
(comp (ref C17)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51988EED))
(comp (ref C2)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 51989EEE))
(comp (ref R2)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51989EF4))
(comp (ref J5)
(value HEADER_3X2)
(fields
(field (name Explanation) MS123))
(libsource (lib w_connectors) (part HEADER_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 51989F04))
(comp (ref J2)
(value HEADER_4)
(fields
(field (name Explanation) MOTOR_OUT))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 51989F11))
(comp (ref U2)
(value POLOLU_A4988)
(libsource (lib pololu_a4988x) (part POLOLU_A4988))
(sheetpath (names /) (tstamps /))
(tstamp 51989F23))
(comp (ref C18)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51989F2A))
(comp (ref C3)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 51989FAF))
(comp (ref R5)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51989FB5))
(comp (ref J9)
(value HEADER_3X2)
(fields
(field (name Explanation) MS123))
(libsource (lib w_connectors) (part HEADER_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 51989FC5))
(comp (ref J7)
(value HEADER_4)
(fields
(field (name Explanation) MOTOR_OUT))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 51989FD2))
(comp (ref U3)
(value POLOLU_A4988)
(libsource (lib pololu_a4988x) (part POLOLU_A4988))
(sheetpath (names /) (tstamps /))
(tstamp 51989FE4))
(comp (ref C19)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51989FEB))
(comp (ref C4)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 5198A070))
(comp (ref R6)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A076))
(comp (ref J10)
(value HEADER_3X2)
(fields
(field (name Explanation) MS123))
(libsource (lib w_connectors) (part HEADER_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 5198A086))
(comp (ref J8)
(value HEADER_4)
(fields
(field (name Explanation) MOTOR_OUT))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 5198A093))
(comp (ref U4)
(value POLOLU_A4988)
(libsource (lib pololu_a4988x) (part POLOLU_A4988))
(sheetpath (names /) (tstamps /))
(tstamp 5198A0A5))
(comp (ref C20)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5198A0AC))
(comp (ref C12)
(value 100u)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 5198A161))
(comp (ref R13)
(value 4k7)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A167))
(comp (ref J14)
(value HEADER_3X2)
(fields
(field (name Explanation) MS123))
(libsource (lib w_connectors) (part HEADER_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 5198A177))
(comp (ref J12)
(value HEADER_4)
(fields
(field (name Explanation) MOTOR_OUT))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 5198A184))
(comp (ref U5)
(value POLOLU_A4988)
(libsource (lib pololu_a4988x) (part POLOLU_A4988))
(sheetpath (names /) (tstamps /))
(tstamp 5198A196))
(comp (ref C21)
(value 220n)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5198A19D))
(comp (ref R3)
(value 1k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A222))
(comp (ref R4)
(value 1k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A5DE))
(comp (ref R8)
(value 1k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A5EB))
(comp (ref R9)
(value 1k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A5F8))
(comp (ref R14)
(value 1k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198A605))
(comp (ref U12)
(value LM1117-3.3)
(footprint TO-220)
(libsource (lib regul) (part LM317AT))
(sheetpath (names /) (tstamps /))
(tstamp 5198DDFC))
(comp (ref C22)
(value 1u)
(footprint SM1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51992585))
(comp (ref J3)
(value HEADER_3)
(fields
(field (name Explanation) "select mcu supply"))
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 51972ED2))
(comp (ref J26)
(value USB)
(libsource (lib conn) (part USB))
(sheetpath (names /) (tstamps /))
(tstamp 5197E8F8))
(comp (ref Hole1)
(value CONN_1)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5197EDF9))
(comp (ref Hole2)
(value CONN_1)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5197EE17))
(comp (ref Hole3)
(value CONN_1)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5197EE1D))
(comp (ref Hole4)
(value CONN_1)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5197EE23))
(comp (ref Th2)
(value CONN_2)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 519825B8))
(comp (ref Th1)
(value CONN_2)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 519825D1))
(comp (ref Th0)
(value CONN_2)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 519825D7))
(comp (ref C6)
(value 1u/50v)
(footprint SM1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5196F07A))
(comp (ref R7)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51988301))
(comp (ref R15)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51988739))
(comp (ref R16)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198874F))
(comp (ref R24)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5198875B))
(comp (ref R25)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51988767))
(comp (ref U7)
(value LM7809CT)
(footprint TO-220)
(libsource (lib regul) (part LM7812CT))
(sheetpath (names /) (tstamps /))
(tstamp 5198EACF))
(comp (ref R29)
(value 680)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 519902B8))
(comp (ref D11)
(value V_GATES)
(fields
(field (name Explanation) green))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 519902BE))
(comp (ref R30)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 519902CD))
(comp (ref D12)
(value 3V3)
(fields
(field (name Explanation) green))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 519902D3))
(comp (ref J27)
(value HEADER_4)
(fields
(field (name Explanation) Ethernet))
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 51991D45))
(comp (ref U10)
(value TC4422A)
(libsource (lib fet_driver) (part TC4422A))
(sheetpath (names /) (tstamps /))
(tstamp 519A861A))
(comp (ref U11)
(value TC4422A)
(libsource (lib fet_driver) (part TC4422A))
(sheetpath (names /) (tstamps /))
(tstamp 519A864C))
(comp (ref U9)
(value TC4422A)
(libsource (lib fet_driver) (part TC4422A))
(sheetpath (names /) (tstamps /))
(tstamp 519A8663))
(comp (ref U8)
(value TC4422A)
(libsource (lib fet_driver) (part TC4422A))
(sheetpath (names /) (tstamps /))
(tstamp 519A867A))
(comp (ref C5)
(value 1u/50v)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519A91C9))
(comp (ref C7)
(value 1u/50v)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519AADB9))
(comp (ref C23)
(value 1u/50v)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519AADBF))
(comp (ref C24)
(value 1u/50v)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 519AB24B))
(comp (ref M2)
(value LOGO_OSHW)
(footprint OSHW_logo_10)
(libsource (lib RMC) (part LOGO_OSHW))
(sheetpath (names /) (tstamps /))
(tstamp 519E49E2))
(comp (ref M1)
(value LOGO_OSHW)
(footprint OSHW_logo_large)
(libsource (lib RMC) (part LOGO_OSHW))
(sheetpath (names /) (tstamps /))
(tstamp 519E49F1))
(comp (ref J28)
(value MICROSD-MOLEX)
(libsource (lib microsd-molex) (part MICROSD-MOLEX))
(sheetpath (names /) (tstamps /))
(tstamp 51A55C9B))
(comp (ref SW3)
(value SW_PUSH)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 51DC7888))
(comp (ref J29)
(value HEADER_4)
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 51DCB9D5))
(comp (ref J6)
(value LPCXPRESSO_1769_HEADER)
(libsource (lib w_connectors) (part LPCXPRESSO_1769_HEADER))
(sheetpath (names /) (tstamps /))
(tstamp 5298DB4B))
(comp (ref J30)
(value HEADER_4)
(libsource (lib w_connectors) (part HEADER_4))
(sheetpath (names /) (tstamps /))
(tstamp 5299367F))
(comp (ref J13)
(value HEADER_6)
(libsource (lib w_connectors) (part HEADER_6))
(sheetpath (names /) (tstamps /))
(tstamp 5299525B))
(comp (ref R20)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52996089))
(comp (ref D15)
(value LED1)
(fields
(field (name Explanation) RED))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 52996090))
(comp (ref R26)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 529960A4))
(comp (ref D13)
(value LED2)
(fields
(field (name Explanation) RED))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 529960AB))
(comp (ref R17)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 529960B9))
(comp (ref D14)
(value LED3)
(fields
(field (name Explanation) RED))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 529960C0))
(comp (ref R22)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 529960CE))
(comp (ref D9)
(value LED4)
(fields
(field (name Explanation) RED))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 529960D5))
(comp (ref J16)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF256))
(comp (ref J17)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF265))
(comp (ref J18)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF274))
(comp (ref J23)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF3B6))
(comp (ref J24)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF3BC))
(comp (ref J25)
(value HEADER_3)
(libsource (lib w_connectors) (part HEADER_3))
(sheetpath (names /) (tstamps /))
(tstamp 529CF3C2))
(comp (ref R32)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53443E6F))
(comp (ref R31)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53443E88))
(comp (ref R28)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53443E97))
(comp (ref R27)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53443EA6)))
(libparts
(libpart (lib device) (part C)
(description "Condensateur non polarise")
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CP1)
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part DIODE)
(description "Diode simple")
(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 device) (part FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(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 A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part R)
(description Resistance)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SW_PUSH)
(description "Push Button")
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part CONN_1)
(description "1 pin")
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib conn) (part CONN_2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))))
(libpart (lib conn) (part USB)
(fields
(field (name Reference) J)
(field (name Value) USB))
(pins
(pin (num 1) (name Vbus) (type power_out))
(pin (num 2) (name D-) (type BiDi))
(pin (num 3) (name D+) (type BiDi))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name Shield_1) (type passive))
(pin (num 6) (name Shield_2) (type passive))))
(libpart (lib regul) (part LM317T)
(description "LM317T, 1.5A 35V Adjustable Linear Regulator, TO-220")
(docs http://www.national.com/ds/LM/LM117.pdf)
(footprints
(fp TO*))
(fields
(field (name Reference) U)
(field (name Value) LM317T)
(field (name Footprint) TO-220))
(pins
(pin (num 1) (name ADJ) (type input))
(pin (num 2) (name OUT) (type power_out))
(pin (num 3) (name IN) (type input))))
(libpart (lib regul) (part LM7805CT)
(description "LM7805CT, Positive 1A 35V Linear Regulator, Fixed Output 5V, TO-220")
(docs http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
(footprints
(fp TO*))
(fields
(field (name Reference) U)
(field (name Value) LM7805CT)
(field (name Footprint) TO-220))
(pins
(pin (num 1) (name IN) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name OUT) (type power_out))))
(libpart (lib w_connectors) (part HEADER_2)
(fields
(field (name Reference) J)
(field (name Value) HEADER_2))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib w_connectors) (part HEADER_3)
(fields
(field (name Reference) J)
(field (name Value) HEADER_3))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib w_connectors) (part HEADER_3x2)
(fields
(field (name Reference) J)
(field (name Value) HEADER_3x2))
(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))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib w_connectors) (part HEADER_4)
(fields
(field (name Reference) J)
(field (name Value) HEADER_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 w_connectors) (part HEADER_6)
(fields
(field (name Reference) J)
(field (name Value) HEADER_6))
(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))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib w_connectors) (part LPCXpresso_1769_Header)
(fields
(field (name Reference) J)
(field (name Value) LPCXpresso_1769_Header))
(pins
(pin (num 1) (name GRND) (type passive))
(pin (num 2) (name VIN) (type passive))
(pin (num 3) (name VB) (type passive))
(pin (num 4) (name RESET) (type passive))
(pin (num 5) (name P0.9/MOSI1) (type passive))
(pin (num 6) (name P0.8/MISO1) (type passive))
(pin (num 7) (name P0.7/SCK) (type passive))
(pin (num 8) (name P0.6/SSEL1) (type passive))
(pin (num 9) (name P0.0/TXD3/SDA1) (type passive))
(pin (num 10) (name P0.1/RXD3/SCL1) (type passive))
(pin (num 11) (name P0.18/MOSI0) (type passive))
(pin (num 12) (name P0.17/MISO0) (type passive))
(pin (num 13) (name P0.15/TXD1/SCK0) (type passive))
(pin (num 14) (name P0.16/RXD1/SSEL0) (type passive))
(pin (num 15) (name P0.23/AD0.0) (type passive))
(pin (num 16) (name P0.24/AD0.1) (type passive))
(pin (num 17) (name P0.25/AD0.2) (type passive))
(pin (num 18) (name PO.26/AD0.3/AOUT) (type passive))
(pin (num 19) (name P1.30/AD0.4) (type passive))
(pin (num 20) (name P1.31/AD0.5) (type passive))
(pin (num 21) (name P0.2) (type passive))
(pin (num 22) (name P0.3) (type passive))
(pin (num 23) (name P0.21) (type passive))
(pin (num 24) (name P0.22) (type passive))
(pin (num 25) (name P0.27) (type passive))
(pin (num 26) (name P0.28) (type passive))
(pin (num 27) (name P2.13) (type passive))
(pin (num 28) (name VIO3V3) (type passive))
(pin (num 29) (name NOT_USED) (type NotConnected))
(pin (num 30) (name NOT_USED) (type NotConnected))
(pin (num 31) (name NOT_USED) (type NotConnected))
(pin (num 32) (name RD-) (type passive))
(pin (num 33) (name RD+) (type passive))
(pin (num 34) (name TD-) (type passive))
(pin (num 35) (name TD+) (type passive))
(pin (num 36) (name USB-D-) (type passive))
(pin (num 37) (name USB-D+) (type passive))
(pin (num 38) (name P0.4/CAN_RX2) (type passive))
(pin (num 39) (name P0.5/CAN_TX2) (type passive))
(pin (num 40) (name P0.10/TXD2/SDA2) (type passive))
(pin (num 41) (name P0.11/RXD2/SCL2) (type passive))
(pin (num 42) (name P2.0/PWM1.1) (type passive))
(pin (num 43) (name P2.1/PWM1.2) (type passive))
(pin (num 44) (name P2.2/PWM1.3) (type passive))
(pin (num 45) (name P2.3/PWM1.4) (type passive))
(pin (num 46) (name P2.4/PWM1.5) (type passive))
(pin (num 47) (name P2.5/PWM1.6) (type passive))
(pin (num 48) (name P2.6) (type passive))
(pin (num 49) (name P2.7) (type passive))
(pin (num 50) (name P2.8) (type passive))
(pin (num 51) (name P2.10) (type passive))
(pin (num 52) (name P2.11) (type passive))
(pin (num 53) (name P2.12) (type passive))
(pin (num 54) (name GND) (type passive))
(pin (num 101) (name P1.18) (type passive))
(pin (num 102) (name P1.19) (type passive))
(pin (num 103) (name P1.20) (type passive))
(pin (num 104) (name P1.21) (type passive))
(pin (num 105) (name P1.22) (type passive))
(pin (num 106) (name P1.23) (type passive))
(pin (num 107) (name P1.24) (type passive))
(pin (num 108) (name P1.25) (type passive))
(pin (num 109) (name P1.26) (type passive))
(pin (num 110) (name P1.27) (type passive))
(pin (num 111) (name P1.28) (type passive))
(pin (num 112) (name P1.29) (type passive))
(pin (num 113) (name P3.25) (type passive))
(pin (num 114) (name P3.26) (type passive))
(pin (num 115) (name P4.28) (type passive))
(pin (num 116) (name P4.29) (type passive))
(pin (num 117) (name P0.19) (type passive))
(pin (num 118) (name P0.20) (type passive))
(pin (num 119) (name P2.9) (type passive))))
(libpart (lib fet_driver) (part TC4422A)
(footprints
(fp SOIC)
(fp DIP))
(fields
(field (name Reference) U)
(field (name Value) TC4422A))
(pins
(pin (num 1) (name VDD) (type input))
(pin (num 2) (name IN) (type input))
(pin (num 3) (name DIS) (type NotConnected))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name GND) (type input))
(pin (num 6) (name OUT) (type passive))
(pin (num 7) (name OUT) (type output))
(pin (num 8) (name VDD) (type input))))
(libpart (lib microsd-molex) (part microsd-molex)
(fields
(field (name Reference) J)
(field (name Value) microsd-molex))
(pins
(pin (num 1) (name DAT2/NC_-_NC) (type input))
(pin (num 2) (name DAT3/CS_-_CD/CS) (type input))
(pin (num 3) (name CMD/DI_-_MOSI) (type input))
(pin (num 4) (name VDD) (type input))
(pin (num 5) (name CLK_-_SCLK) (type input))
(pin (num 6) (name GND) (type input))
(pin (num 7) (name DAT0/D0_-_MISO) (type input))
(pin (num 8) (name DAT1/IRQ_-_NC/IRQ) (type input))
(pin (num DET) (name DET) (type input))
(pin (num GND) (name GND) (type input))
(pin (num POL) (name POL) (type input))))
(libpart (lib pololu_a4988x) (part POLOLU_A4988)
(footprints
(fp SWDIP8_.6W))
(fields
(field (name Reference) U)
(field (name Value) POLOLU_A4988))
(pins