-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchedaLabNucleo64(2).net
1332 lines (1332 loc) · 53.4 KB
/
SchedaLabNucleo64(2).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\jacop\OneDrive\Condivisi\SchedaLab\SchedaLabSTM32Nucleo64\SchedaLabNucleo64\SchedaLabNucleo64.sch)
(date "11/25/21 00:21:49")
(tool "Eeschema (5.1.10)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source SchedaLabNucleo64.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Sheet2SchedaLab/) (tstamps /619AFB42/)
(title_block
(title)
(company)
(rev)
(date)
(source sheet2schedalab.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Sheet3SchedaLab/) (tstamps /61A490E9/)
(title_block
(title)
(company)
(rev)
(date)
(source sheet3schedalab.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D1)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /) (tstamps /))
(tstamp 61B13E4C))
(comp (ref R3)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61B13E58))
(comp (ref U2)
(value TS5A3159ADBVR)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf)
(libsource (lib Analog_Switch) (part TS5A3159ADBVR) (description "Single SPDT Analog Switch, 1.65-V to 5.5-V Single-Supply Operation, 1Ohm Ron, SOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 61BB6AD1))
(comp (ref U3)
(value MSGEQ7)
(footprint Package_DIP:DIP-8_W7.62mm_LongPads)
(datasheet http://mix-sig.com/images/datasheets/MSGEQ7.pdf)
(libsource (lib Audio) (part MSGEQ7) (description "Seven Band Graphic Equalizer, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 61A63DAE))
(comp (ref C1)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A66B5A))
(comp (ref C2)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A6726E))
(comp (ref C3)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A67A20))
(comp (ref D3)
(value LED)
(footprint LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 61A6AFD3))
(comp (ref R1)
(value 100)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61A6DE65))
(comp (ref R2)
(value 60R4)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61A6E5C1))
(comp (ref C4)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A6FA9D))
(comp (ref C5)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A70632))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 61A71AFB))
(comp (ref J7)
(value Conn_02x19_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x19_Odd_Even) (description "Generic connector, double row, 02x19, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A7BC48))
(comp (ref J10)
(value Conn_02x19_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x19_Odd_Even) (description "Generic connector, double row, 02x19, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A7EC14))
(comp (ref C8)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 619C1F33))
(comp (ref C9)
(value 33pF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 619C3718))
(comp (ref R7)
(value 200k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 619C3E9D))
(comp (ref C6)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 619E5458))
(comp (ref C7)
(value 1nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 619F766A))
(comp (ref R4)
(value 22k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 619F8331))
(comp (ref R5)
(value 22k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 619F8B2A))
(comp (ref J1)
(value AudioJack3)
(footprint Connector_Audio:Jack_3.5mm_CUI_SJ1-3533NG_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part AudioJack3) (description "Audio Jack, 3 Poles (Stereo / TRS)"))
(sheetpath (names /) (tstamps /))
(tstamp 619F9BF5))
(comp (ref J2)
(value AudioJack3)
(footprint Connector_Audio:Jack_3.5mm_CUI_SJ1-3533NG_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part AudioJack3) (description "Audio Jack, 3 Poles (Stereo / TRS)"))
(sheetpath (names /) (tstamps /))
(tstamp 619C7E61))
(comp (ref D4)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /) (tstamps /))
(tstamp 61A90386))
(comp (ref R6)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61A90392))
(comp (ref J6)
(value Conn_02x02_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x02_Odd_Even) (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A332DB))
(comp (ref J9)
(value Conn_02x02_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x02_Odd_Even) (description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A344ED))
(comp (ref J8)
(value Conn_02x13_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x13_Odd_Even) (description "Generic connector, double row, 02x13, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A30BAA))
(comp (ref J5)
(value Conn_01x02_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D2647F))
(comp (ref J3)
(value Conn_01x02_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D2724B))
(comp (ref J4)
(value Conn_01x02_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61D31A12))
(comp (ref U1)
(value LM6134)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib SchedaLabNucleo64-rescue) (part LM6134-LibreriaLucky) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 619DEEDD))
(comp (ref SPC1)
(value Conn_01x05_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61CB9ED5))
(comp (ref U4)
(value LM6134)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib SchedaLabNucleo64-rescue) (part LM6134-LibreriaLucky) (description ""))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619CF3A2))
(comp (ref R8)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619CF3AD))
(comp (ref C12)
(value 1nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619CF3B3))
(comp (ref R17)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619CF3CF))
(comp (ref C15)
(value 1nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619CF3D5))
(comp (ref R15)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D29))
(comp (ref R13)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D2F))
(comp (ref R14)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D35))
(comp (ref R11)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D3B))
(comp (ref C11)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D41))
(comp (ref C10)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D47))
(comp (ref C14)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D4D))
(comp (ref C13)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D53))
(comp (ref D5)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D59))
(comp (ref R10)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D65))
(comp (ref D6)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D6C))
(comp (ref R12)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5D78))
(comp (ref RV1)
(value 1k)
(footprint Potentiometer_THT:Potentiometer_Bourns_3386P_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5DBD))
(comp (ref C16)
(value 10nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5DCB))
(comp (ref R20)
(value 1k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5DDA))
(comp (ref R18)
(value 29k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 619F5DE0))
(comp (ref R25)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05C8C))
(comp (ref R24)
(value 20k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05C93))
(comp (ref R26)
(value 30k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CA2))
(comp (ref D8)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CAD))
(comp (ref R22)
(value 200)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CCA))
(comp (ref R21)
(value 20k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CD1))
(comp (ref R23)
(value 30k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CE0))
(comp (ref D7)
(value BAT54W)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(libsource (lib Diode) (part BAT54W) (description "Schottky barrier diode, SOT-323"))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61A05CEB))
(comp (ref R9)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61AEE02D))
(comp (ref R19)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61AEEA33))
(comp (ref R16)
(value 10k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet2SchedaLab/) (tstamps /619AFB42/))
(tstamp 61B19E9B))
(comp (ref U6)
(value TMP101)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet http://www.ti.com/lit/gpn/tmp101)
(libsource (lib Sensor_Temperature) (part TMP101) (description "Temperature Sensor with I2C/SMBus Interface, SOT-23-6"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A5013A))
(comp (ref C19)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A50140))
(comp (ref R28)
(value 4k7)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A50153))
(comp (ref R31)
(value 10)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A50164))
(comp (ref C21)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A5017E))
(comp (ref R30)
(value 4k7)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F5E))
(comp (ref R29)
(value 4k7)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F64))
(comp (ref C18)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F81))
(comp (ref C17)
(value 100nF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F87))
(comp (ref R27)
(value 10)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F8D))
(comp (ref R32)
(value 2k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55F9F))
(comp (ref C20)
(value 200pF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 61A55FA5))
(comp (ref U5)
(value DAC7571)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(libsource (lib LibreriaLucky) (part DAC7571) (description ""))
(sheetpath (names /Sheet3SchedaLab/) (tstamps /61A490E9/))
(tstamp 619C908E)))
(libparts
(libpart (lib Analog_Switch) (part TS5A3159DBV)
(aliases
(alias TS5A3160DBV)
(alias TS5A3159ADBVR))
(description "Single SPDT Analog Switch, 1.65-V to 5.5-V Single-Supply Operation, 1Ohm Ron, SOT-23-6")
(docs http://www.ti.com/lit/ds/symlink/ts5a3159.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) TS5A3159DBV)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name V+) (type power_in))
(pin (num 6) (name ~) (type input))))
(libpart (lib Audio) (part MSGEQ7)
(description "Seven Band Graphic Equalizer, DIP-8/SOIC-8")
(docs http://mix-sig.com/images/datasheets/MSGEQ7.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*)
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) MSGEQ7))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name OUT) (type output))
(pin (num 4) (name STROBE) (type input))
(pin (num 5) (name IN) (type input))
(pin (num 6) (name GND) (type power_out))
(pin (num 7) (name RESET) (type input))
(pin (num 8) (name CKIN) (type input))))
(libpart (lib Connector) (part AudioJack3)
(description "Audio Jack, 3 Poles (Stereo / TRS)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack3))
(pins
(pin (num R) (name ~) (type passive))
(pin (num S) (name ~) (type passive))
(pin (num T) (name ~) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x05_Male)
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x02_Odd_Even)
(description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x02_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x13_Odd_Even)
(description "Generic connector, double row, 02x13, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x13_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x19_Odd_Even)
(description "Generic connector, double row, 02x19, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x19_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(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 Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_POT)
(description Potentiometer)
(docs ~)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) R_POT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Diode) (part BAT54W)
(description "Schottky barrier diode, SOT-323")
(docs https://assets.nexperia.com/documents/data-sheet/BAT54W_SER.pdf)
(footprints
(fp SOT?323*))
(fields
(field (name Reference) D)
(field (name Value) BAT54W)
(field (name Footprint) Package_TO_SOT_SMD:SOT-323_SC-70))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name NC) (type NotConnected))
(pin (num 3) (name K) (type passive))))
(libpart (lib LibreriaLucky) (part DAC7571)
(fields
(field (name Reference) U)
(field (name Value) DAC7571)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name VOUT) (type output))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VDD) (type power_in))
(pin (num 4) (name SDA) (type BiDi))
(pin (num 5) (name SCL) (type input))
(pin (num 6) (name ADR0) (type input))))
(libpart (lib SchedaLabNucleo64-rescue) (part LM6134-LibreriaLucky)
(fields
(field (name Reference) U)
(field (name Value) LM6134-LibreriaLucky)
(field (name Footprint) Package_SO:SOIC-14_3.9x8.7mm_P1.27mm))
(pins
(pin (num 1) (name Out) (type output))
(pin (num 2) (name In-) (type input))
(pin (num 3) (name In+) (type input))
(pin (num 4) (name V+) (type power_in))
(pin (num 5) (name In+) (type input))
(pin (num 6) (name In-) (type input))
(pin (num 7) (name Out) (type output))
(pin (num 8) (name Out) (type output))
(pin (num 9) (name In-) (type input))
(pin (num 10) (name In+) (type input))
(pin (num 11) (name V-) (type power_in))
(pin (num 12) (name In+) (type input))
(pin (num 13) (name In-) (type input))
(pin (num 14) (name Out) (type output))))
(libpart (lib Sensor_Temperature) (part TMP101)
(description "Temperature Sensor with I2C/SMBus Interface, SOT-23-6")
(docs http://www.ti.com/lit/gpn/tmp101)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) TMP101)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name SCL) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ALERT) (type openCol))
(pin (num 4) (name V+) (type power_in))
(pin (num 5) (name ADD0) (type input))
(pin (num 6) (name SDA) (type BiDi)))))
(libraries
(library (logical Analog_Switch)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Analog_Switch.lib"))
(library (logical Audio)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Audio.lib"))
(library (logical Connector)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Device)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Diode)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Diode.lib"))
(library (logical LibreriaLucky)
(uri C:\Users\jacop\OneDrive\Condivisi\SchedaLab\SchedaLabSTM32Nucleo64\SchedaLabNucleo64/LibreriaLucky.lib))
(library (logical SchedaLabNucleo64-rescue)
(uri C:\Users\jacop\OneDrive\Condivisi\SchedaLab\SchedaLabSTM32Nucleo64\SchedaLabNucleo64/SchedaLabNucleo64-rescue.lib))
(library (logical Sensor_Temperature)
(uri "D:\\Program FIles\\KiCad\\share\\kicad\\library/Sensor_Temperature.lib")))
(nets
(net (code 1) (name ALERT)
(node (ref J9) (pin 3))
(node (ref J9) (pin 1))
(node (ref R28) (pin 1))
(node (ref U6) (pin 3)))
(net (code 2) (name ExtDAC_OUT)
(node (ref C20) (pin 1))
(node (ref J6) (pin 3))
(node (ref J6) (pin 1))
(node (ref U5) (pin 1))
(node (ref R32) (pin 1)))
(net (code 3) (name SCL)
(node (ref R30) (pin 2))
(node (ref U5) (pin 5))
(node (ref J7) (pin 18))
(node (ref U6) (pin 1)))
(net (code 4) (name "DAC1(2)")
(node (ref R17) (pin 2))
(node (ref J10) (pin 12)))
(net (code 5) (name "ADC2(3)")
(node (ref J8) (pin 2))
(node (ref D5) (pin 1))
(node (ref R10) (pin 1))
(node (ref J10) (pin 14)))
(net (code 6) (name "ADC2(12)")
(node (ref D8) (pin 1))
(node (ref J10) (pin 21))
(node (ref R25) (pin 1))
(node (ref J7) (pin 4)))
(net (code 7) (name "ADC2(11)")
(node (ref D7) (pin 1))
(node (ref J10) (pin 5))
(node (ref R22) (pin 1)))
(net (code 8) (name "ADC2(5)")
(node (ref J10) (pin 29))
(node (ref R6) (pin 2))
(node (ref D4) (pin 1)))
(net (code 9) (name "DAC1(1)")
(node (ref J7) (pin 31))
(node (ref R8) (pin 2)))
(net (code 10) (name "Net-(J1-PadR)")
(node (ref R4) (pin 2))
(node (ref J2) (pin R))
(node (ref J1) (pin R)))
(net (code 11) (name RST)
(node (ref J7) (pin 13))
(node (ref SPC1) (pin 1))
(node (ref U3) (pin 7)))
(net (code 12) (name +5V)
(node (ref U1) (pin 4))
(node (ref U1) (pin 4))
(node (ref C4) (pin 1))
(node (ref U4) (pin 4))
(node (ref J7) (pin 17))
(node (ref U2) (pin 1))
(node (ref U4) (pin 4))
(node (ref U1) (pin 4))
(node (ref R7) (pin 1))
(node (ref R1) (pin 1))
(node (ref C3) (pin 1))
(node (ref C6) (pin 2))
(node (ref C2) (pin 1))
(node (ref U3) (pin 1))
(node (ref C1) (pin 1))
(node (ref U4) (pin 4))
(node (ref SPC1) (pin 5))
(node (ref U4) (pin 4))
(node (ref U1) (pin 4)))
(net (code 13) (name +3V3)
(node (ref R30) (pin 1))
(node (ref D5) (pin 3))
(node (ref R29) (pin 1))
(node (ref D4) (pin 3))
(node (ref R2) (pin 1))
(node (ref C5) (pin 1))
(node (ref D6) (pin 3))
(node (ref D7) (pin 3))
(node (ref D8) (pin 3))
(node (ref R28) (pin 2))
(node (ref R31) (pin 2))
(node (ref D1) (pin 3))
(node (ref J7) (pin 15))
(node (ref R27) (pin 2)))
(net (code 14) (name STROBE)
(node (ref U3) (pin 4))
(node (ref SPC1) (pin 2))
(node (ref J10) (pin 22)))
(net (code 15) (name "Net-(D4-Pad2)")
(node (ref D4) (pin 2)))
(net (code 16) (name OSPC)
(node (ref SPC1) (pin 3))
(node (ref U3) (pin 3))
(node (ref R6) (pin 1)))
(net (code 17) (name PWM)
(node (ref D1) (pin 1))
(node (ref R3) (pin 2))
(node (ref J8) (pin 10)))
(net (code 18) (name "ODAC1(1)")
(node (ref U4) (pin 8))
(node (ref U4) (pin 9))
(node (ref J8) (pin 14))
(node (ref R9) (pin 1)))