-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCJMCU2.net
962 lines (962 loc) · 32.2 KB
/
CJMCU2.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
(export (version D)
(design
(source /Users/elab/Desktop/CJMCU_2/CJMCU.sch)
(date "2016 December 19, Monday 12:01:07")
(tool "Eeschema 4.0.4-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source CJMCU.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U4)
(value MPU6050)
(footprint TPS730:ttnlt745pv)
(libsource (lib microcontrollers) (part MPU6050))
(sheetpath (names /) (tstamps /))
(tstamp 58207122))
(comp (ref C17)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820720A))
(comp (ref C13)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820755A))
(comp (ref C14)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 582075B9))
(comp (ref C15)
(value 2,2nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58207A42))
(comp (ref U3)
(value HMC5883L)
(footprint TPS730:modulo_hmc5883)
(libsource (lib contrib) (part HMC5883L))
(sheetpath (names /) (tstamps /))
(tstamp 5820808F))
(comp (ref C12)
(value 0,22uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820841B))
(comp (ref C16)
(value 4,7uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820872C))
(comp (ref U2)
(value STM32F103C8T6)
(footprint TPS730:STM32F103C8T6)
(libsource (lib microcontrollers) (part STM32F103C8T6))
(sheetpath (names /) (tstamps /))
(tstamp 58209683))
(comp (ref C2)
(value 22pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820BA43))
(comp (ref C3)
(value 22pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820BA92))
(comp (ref R6)
(value 1M)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5820BADC))
(comp (ref Y1)
(value 8MHz)
(footprint TPS730:crystal-ABM)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 5820BB25))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5820C039))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5820C7EC))
(comp (ref C7)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5820C936))
(comp (ref P1)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5821ADE0))
(comp (ref R4)
(value BOOT)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821C01F))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821C242))
(comp (ref R1)
(value 551)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821C786))
(comp (ref R2)
(value 551)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821C7F1))
(comp (ref R3)
(value 551)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821C92E))
(comp (ref D1)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5821CF2E))
(comp (ref D2)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5821CFE4))
(comp (ref D3)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5821D061))
(comp (ref R10)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821F059))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5821F19B))
(comp (ref R9)
(value 1k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5822047F))
(comp (ref D4)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58220518))
(comp (ref P9)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 58226ED7))
(comp (ref R17)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58227CE7))
(comp (ref R18)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58227D9A))
(comp (ref P12)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5822A030))
(comp (ref P10)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5822A0E5))
(comp (ref P13)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5822A196))
(comp (ref P11)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5822A248))
(comp (ref Q3)
(value IRLML2502)
(footprint TPS730:SOT_23)
(libsource (lib transistors) (part IRLML2502))
(sheetpath (names /) (tstamps /))
(tstamp 5822C0D2))
(comp (ref Q1)
(value IRLML2502)
(footprint TPS730:SOT_23)
(libsource (lib transistors) (part IRLML2502))
(sheetpath (names /) (tstamps /))
(tstamp 5822C1A6))
(comp (ref Q2)
(value IRLML2502)
(footprint TPS730:SOT_23)
(libsource (lib transistors) (part IRLML2502))
(sheetpath (names /) (tstamps /))
(tstamp 5822C609))
(comp (ref Q4)
(value IRLML2502)
(footprint TPS730:SOT_23)
(libsource (lib transistors) (part IRLML2502))
(sheetpath (names /) (tstamps /))
(tstamp 5822C6C8))
(comp (ref R20)
(value 20k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5822CCF1))
(comp (ref R13)
(value 20k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5822CDE8))
(comp (ref R12)
(value 20k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5822D307))
(comp (ref R19)
(value 20k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5822D3DE))
(comp (ref U1)
(value TPS73033DBVT)
(footprint TPS730:TPS73033DBVT)
(libsource (lib contrib) (part TPS73033DBVT))
(sheetpath (names /) (tstamps /))
(tstamp 58231A32))
(comp (ref C1)
(value 4,7uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58232911))
(comp (ref C4)
(value 475)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58233CAB))
(comp (ref C5)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58234D4B))
(comp (ref C6)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58234E20))
(comp (ref C9)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58239E41))
(comp (ref C10)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58239F3D))
(comp (ref C11)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5823A01E))
(comp (ref C8)
(value 0,1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5823A101))
(comp (ref W2)
(value NRF24L01)
(footprint TPS730:nrf)
(libsource (lib contrib) (part NRF24L01))
(sheetpath (names /) (tstamps /))
(tstamp 5823CCFE))
(comp (ref W1)
(value ESP8266)
(footprint TPS730:WIFI)
(libsource (lib CJMCU-cache) (part "WIFI(TX&RX)"))
(sheetpath (names /) (tstamps /))
(tstamp 5836C8F2))
(comp (ref P2)
(value CONN_01X04)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 58416E9C))
(comp (ref P4)
(value CONN_01X02)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 5848097C))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58483357))
(comp (ref D5)
(value D)
(footprint Diodes_SMD:D_0603)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 584834F6))
(comp (ref Q5)
(value Q_PMOS_DGS)
(footprint Power_Integrations:SO-8)
(libsource (lib device) (part Q_PMOS_DGS))
(sheetpath (names /) (tstamps /))
(tstamp 584A79F0))
(comp (ref P3)
(value CONN_01X05)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 584A94B0)))
(libparts
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X02)
(description "Connector, single row, 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_01X04)
(description "Connector, single row, 01x04")
(footprints
(fp Pin_Header_Straight_1X04)
(fp Pin_Header_Angled_1X04)
(fp Socket_Strip_Straight_1X04)
(fp Socket_Strip_Angled_1X04))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X04))
(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 conn) (part CONN_01X05)
(description "Connector, single row, 01x05")
(footprints
(fp Pin_Header_Straight_1X05)
(fp Pin_Header_Angled_1X05)
(fp Socket_Strip_Straight_1X05)
(fp Socket_Strip_Angled_1X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X05))
(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))
(pin (num 5) (name P5) (type passive))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal_*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp Diode_*)
(fp D-Pak_TO252AA)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib contrib) (part HMC5883L)
(fields
(field (name Reference) U)
(field (name Value) HMC5883L))
(pins
(pin (num 1) (name SCL) (type unspc))
(pin (num 2) (name VDD) (type unspc))
(pin (num 3) (name NC) (type unspc))
(pin (num 4) (name SI) (type unspc))
(pin (num 5) (name NC) (type unspc))
(pin (num 6) (name NC) (type unspc))
(pin (num 7) (name NC) (type unspc))
(pin (num 8) (name SETP) (type unspc))
(pin (num 9) (name GND) (type unspc))
(pin (num 10) (name C1) (type unspc))
(pin (num 11) (name GND) (type unspc))
(pin (num 12) (name SETC) (type unspc))
(pin (num 13) (name VDDIO) (type unspc))
(pin (num 14) (name NC) (type unspc))
(pin (num 15) (name DRDY) (type unspc))
(pin (num 16) (name SDA) (type unspc))))
(libpart (lib transistors) (part IRLML2502)
(fields
(field (name Reference) Q)
(field (name Value) IRLML2502))
(pins
(pin (num 1) (name 1) (type unspc))
(pin (num 2) (name 2) (type unspc))
(pin (num 3) (name 3) (type unspc))))
(libpart (lib device) (part LED)
(footprints
(fp LED-*)
(fp LED_*))
(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 microcontrollers) (part MPU6050)
(fields
(field (name Reference) U)
(field (name Value) MPU6050))
(pins
(pin (num 1) (name clkIN) (type unspc))
(pin (num 2) (name 2) (type unspc))
(pin (num 3) (name 3) (type unspc))
(pin (num 4) (name 4) (type unspc))
(pin (num 5) (name 5) (type unspc))
(pin (num 6) (name auxDA) (type unspc))
(pin (num 7) (name auxCL) (type unspc))
(pin (num 8) (name vlogic) (type unspc))
(pin (num 9) (name AD0) (type unspc))
(pin (num 10) (name regOUT) (type unspc))
(pin (num 11) (name FS) (type unspc))
(pin (num 12) (name INT) (type unspc))
(pin (num 13) (name VDD) (type unspc))
(pin (num 14) (name 14) (type unspc))
(pin (num 15) (name 15) (type unspc))
(pin (num 16) (name 16) (type unspc))
(pin (num 17) (name 17) (type unspc))
(pin (num 18) (name GND) (type unspc))
(pin (num 19) (name clkIN) (type unspc))
(pin (num 20) (name cpOUT) (type unspc))
(pin (num 21) (name RES) (type unspc))
(pin (num 22) (name clkOUT) (type unspc))
(pin (num 23) (name SCL) (type unspc))
(pin (num 24) (name SDA) (type unspc))))
(libpart (lib contrib) (part NRF24L01)
(fields
(field (name Reference) P)
(field (name Value) NRF24L01))
(pins
(pin (num 1) (name 1) (type unspc))
(pin (num 2) (name 2) (type unspc))
(pin (num 3) (name 3) (type unspc))
(pin (num 4) (name VCC) (type unspc))
(pin (num 5) (name GND) (type unspc))
(pin (num 6) (name 6) (type unspc))
(pin (num 7) (name 7) (type unspc))
(pin (num 8) (name 8) (type unspc))))
(libpart (lib device) (part Q_PMOS_DGS)
(description "Transistor P-MOSFET (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_PMOS_DGS))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name G) (type input))
(pin (num 3) (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 microcontrollers) (part STM32F103C8T6)
(fields
(field (name Reference) U)
(field (name Value) STM32F103C8T6))
(pins
(pin (num 1) (name VBAT) (type unspc))
(pin (num 2) (name PC13-TAMPER-RTC) (type unspc))
(pin (num 3) (name PC14-OSC32_IN) (type unspc))
(pin (num 4) (name PC15-OSC32_OUT) (type unspc))
(pin (num 5) (name OSC_IN/PD0) (type unspc))
(pin (num 6) (name OSC_OUT/PD1) (type unspc))
(pin (num 7) (name NRST) (type unspc))
(pin (num 8) (name VSSA) (type unspc))
(pin (num 9) (name VDDA) (type unspc))
(pin (num 10) (name PA0-WKUP) (type unspc))
(pin (num 11) (name PA1) (type unspc))
(pin (num 12) (name PA2) (type unspc))
(pin (num 13) (name PA3) (type unspc))
(pin (num 14) (name PA4) (type unspc))
(pin (num 15) (name PA5) (type unspc))
(pin (num 16) (name PA6) (type unspc))
(pin (num 17) (name PA7) (type unspc))
(pin (num 18) (name PB0) (type unspc))
(pin (num 19) (name PB1) (type unspc))
(pin (num 20) (name PB2/BOOT1) (type unspc))
(pin (num 21) (name PB10) (type unspc))
(pin (num 22) (name PB11) (type unspc))
(pin (num 23) (name VSS_1) (type unspc))
(pin (num 24) (name VDD_1) (type unspc))
(pin (num 25) (name PB12) (type unspc))
(pin (num 26) (name PB13) (type unspc))
(pin (num 27) (name PB14) (type unspc))
(pin (num 28) (name PB15) (type unspc))
(pin (num 29) (name PA8) (type unspc))
(pin (num 30) (name PA9) (type unspc))
(pin (num 31) (name PA10) (type unspc))
(pin (num 32) (name PA11) (type unspc))
(pin (num 33) (name PA12) (type unspc))
(pin (num 34) (name PA13/JTMS7/SWDIO) (type unspc))
(pin (num 35) (name VSS_2) (type unspc))
(pin (num 36) (name VDD_2) (type unspc))
(pin (num 37) (name PA14/JTCK/SWCLK) (type unspc))
(pin (num 38) (name PA15/JTDI) (type unspc))
(pin (num 39) (name PB3/JTDO) (type unspc))
(pin (num 40) (name PB4/JNTTRST) (type unspc))
(pin (num 41) (name PB5) (type unspc))
(pin (num 42) (name PB6) (type unspc))
(pin (num 43) (name PB7) (type unspc))
(pin (num 44) (name BOOT0) (type unspc))
(pin (num 45) (name PB8) (type unspc))
(pin (num 46) (name PB9) (type unspc))
(pin (num 47) (name VSS_3) (type unspc))
(pin (num 48) (name VDD_3) (type unspc))))
(libpart (lib contrib) (part TPS73033DBVT)
(fields
(field (name Reference) U)
(field (name Value) TPS73033DBVT))
(pins
(pin (num 1) (name IN) (type unspc))
(pin (num 2) (name EN) (type unspc))
(pin (num 3) (name GND) (type unspc))
(pin (num 4) (name NR) (type unspc))
(pin (num 5) (name OUT) (type unspc))))
(libpart (lib CJMCU-cache) (part "WIFI(TX&RX)")
(fields
(field (name Reference) U)
(field (name Value) "WIFI(TX&RX)"))
(pins
(pin (num 2) (name GND) (type unspc))
(pin (num 8) (name RX) (type unspc))
(pin (num 9) (name TX) (type unspc))
(pin (num 10) (name VCC) (type unspc)))))
(libraries
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical transistors)
(uri "/Library/Application Support/kicad/library/transistors.lib"))
(library (logical conn)
(uri "/Library/Application Support/kicad/library/conn.lib"))
(library (logical microcontrollers)
(uri "/Library/Application Support/kicad/library/microcontrollers.lib"))
(library (logical CJMCU-cache)
(uri /Users/elab/Desktop/CJMCU_2/CJMCU-cache.lib))
(library (logical contrib)
(uri "/Library/Application Support/kicad/library/contrib.lib")))
(nets
(net (code 1) (name VCC)
(node (ref D5) (pin 1))
(node (ref U1) (pin 1))
(node (ref U1) (pin 2))
(node (ref Q5) (pin 1))
(node (ref P13) (pin 1))
(node (ref P10) (pin 1))
(node (ref P12) (pin 1))
(node (ref P11) (pin 1))
(node (ref C1) (pin 1)))
(net (code 2) (name "Net-(D4-Pad2)")
(node (ref D4) (pin 2))
(node (ref R9) (pin 1)))
(net (code 3) (name GND)
(node (ref P3) (pin 3))
(node (ref R14) (pin 1))
(node (ref C15) (pin 1))
(node (ref C5) (pin 2))
(node (ref R11) (pin 1))
(node (ref C7) (pin 2))
(node (ref P2) (pin 1))
(node (ref W1) (pin 2))
(node (ref C17) (pin 2))
(node (ref C9) (pin 2))
(node (ref C10) (pin 2))
(node (ref C11) (pin 2))
(node (ref C8) (pin 2))
(node (ref U4) (pin 18))
(node (ref U2) (pin 47))
(node (ref U2) (pin 35))
(node (ref U2) (pin 23))
(node (ref U2) (pin 8))
(node (ref C16) (pin 1))
(node (ref C6) (pin 2))
(node (ref C14) (pin 2))
(node (ref C13) (pin 2))
(node (ref U1) (pin 3))
(node (ref C1) (pin 2))
(node (ref C4) (pin 2))
(node (ref U3) (pin 11))
(node (ref U3) (pin 9))
(node (ref W2) (pin 5))
(node (ref U4) (pin 11))
(node (ref U4) (pin 9))
(node (ref U4) (pin 1))
(node (ref Q3) (pin 3))
(node (ref Q1) (pin 3))
(node (ref Q2) (pin 3))
(node (ref Q4) (pin 3))
(node (ref R4) (pin 1))
(node (ref R5) (pin 1))
(node (ref P1) (pin 2))
(node (ref D4) (pin 1))
(node (ref C2) (pin 1))
(node (ref C3) (pin 2)))
(net (code 4) (name /SCL)
(node (ref U3) (pin 1))
(node (ref U2) (pin 42))
(node (ref U4) (pin 23))
(node (ref R17) (pin 2))
(node (ref P9) (pin 1)))
(net (code 5) (name /SDA)
(node (ref U3) (pin 16))
(node (ref U4) (pin 24))
(node (ref P9) (pin 2))
(node (ref U2) (pin 43))
(node (ref R18) (pin 2)))
(net (code 6) (name /PB1)
(node (ref U2) (pin 19))
(node (ref R20) (pin 1)))
(net (code 7) (name "Net-(Q4-Pad2)")
(node (ref Q4) (pin 2))
(node (ref R20) (pin 2)))
(net (code 8) (name "Net-(Q2-Pad2)")
(node (ref R13) (pin 1))
(node (ref Q2) (pin 2)))
(net (code 9) (name /PB0)
(node (ref U2) (pin 18))
(node (ref R13) (pin 2)))
(net (code 10) (name "Net-(Q1-Pad2)")
(node (ref R12) (pin 1))
(node (ref Q1) (pin 2)))
(net (code 11) (name /PB8)
(node (ref R12) (pin 2))
(node (ref U2) (pin 45)))
(net (code 12) (name /PB9)
(node (ref R19) (pin 1))
(node (ref U2) (pin 46)))
(net (code 13) (name "Net-(Q3-Pad2)")
(node (ref R19) (pin 2))
(node (ref Q3) (pin 2)))
(net (code 14) (name "Net-(P12-Pad2)")
(node (ref P12) (pin 2))
(node (ref Q3) (pin 1)))
(net (code 15) (name "Net-(P10-Pad2)")
(node (ref P10) (pin 2))
(node (ref Q1) (pin 1)))
(net (code 16) (name "Net-(P11-Pad2)")
(node (ref P11) (pin 2))
(node (ref Q2) (pin 1)))
(net (code 17) (name "Net-(P13-Pad2)")
(node (ref Q4) (pin 1))
(node (ref P13) (pin 2)))
(net (code 18) (name /BOOT1)
(node (ref R5) (pin 2))
(node (ref U2) (pin 20)))
(net (code 19) (name /PC13)
(node (ref U2) (pin 2))
(node (ref R1) (pin 1)))
(net (code 20) (name /PC14)
(node (ref R2) (pin 1))
(node (ref U2) (pin 3)))
(net (code 21) (name /PC15)
(node (ref R3) (pin 2))
(node (ref U2) (pin 4)))
(net (code 22) (name "Net-(D1-Pad1)")
(node (ref D1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 23) (name "Net-(D2-Pad1)")
(node (ref R2) (pin 2))
(node (ref D2) (pin 1)))
(net (code 24) (name +3V3)
(node (ref U2) (pin 48))
(node (ref R8) (pin 2))
(node (ref U2) (pin 36))
(node (ref U2) (pin 9))
(node (ref U2) (pin 1))
(node (ref U3) (pin 13))
(node (ref U4) (pin 13))
(node (ref C17) (pin 1))
(node (ref R7) (pin 2))
(node (ref C13) (pin 1))
(node (ref U4) (pin 8))
(node (ref U3) (pin 4))
(node (ref U3) (pin 2))
(node (ref W2) (pin 4))
(node (ref D3) (pin 2))
(node (ref R9) (pin 2))
(node (ref C9) (pin 1))
(node (ref C10) (pin 1))
(node (ref C11) (pin 1))
(node (ref C8) (pin 1))
(node (ref P3) (pin 2))
(node (ref C5) (pin 1))
(node (ref C6) (pin 1))
(node (ref U1) (pin 5))
(node (ref W1) (pin 10))
(node (ref C4) (pin 1))
(node (ref R10) (pin 1))
(node (ref R17) (pin 1))
(node (ref R18) (pin 1))
(node (ref U2) (pin 24))
(node (ref D1) (pin 2))
(node (ref D2) (pin 2)))
(net (code 25) (name "Net-(D3-Pad1)")
(node (ref D3) (pin 1))
(node (ref R3) (pin 1)))
(net (code 26) (name /PB12/SPI2_NSS)
(node (ref U2) (pin 25)))
(net (code 27) (name /PB13/SPI2_SCK)
(node (ref U2) (pin 26)))
(net (code 28) (name /PB14/SPI2_MISO)
(node (ref U2) (pin 27)))
(net (code 29) (name /PB15/SPI2_MOSI)
(node (ref U2) (pin 28)))
(net (code 30) (name /PB11)
(node (ref U2) (pin 22)))
(net (code 31) (name /PB10)
(node (ref U2) (pin 21)))
(net (code 32) (name /PB5)
(node (ref U2) (pin 41)))
(net (code 33) (name /PB4_JNTRST)
(node (ref U2) (pin 40)))
(net (code 34) (name /PB3_JTDO)
(node (ref U2) (pin 39)))
(net (code 35) (name /BOOT0)
(node (ref R4) (pin 2)))
(net (code 36) (name /PA13_JTMS)
(node (ref R10) (pin 2))
(node (ref U2) (pin 34))
(node (ref P2) (pin 3)))
(net (code 37) (name /PA14_JTCK)
(node (ref P2) (pin 2))
(node (ref U2) (pin 37))
(node (ref R11) (pin 2)))
(net (code 38) (name "Net-(U2-Pad13)")
(node (ref W1) (pin 9))
(node (ref U2) (pin 13)))
(net (code 39) (name "Net-(U2-Pad12)")
(node (ref W1) (pin 8))
(node (ref U2) (pin 12)))
(net (code 40) (name /RESET)
(node (ref R8) (pin 1))
(node (ref C7) (pin 1))
(node (ref U2) (pin 7))
(node (ref P2) (pin 4)))
(net (code 41) (name +BATT)
(node (ref P4) (pin 1))
(node (ref P1) (pin 1)))
(net (code 42) (name /PA4)
(node (ref U2) (pin 14))
(node (ref W2) (pin 6)))
(net (code 44) (name "Net-(P4-Pad2)")
(node (ref Q5) (pin 3))
(node (ref P4) (pin 2)))
(net (code 45) (name +5V)
(node (ref R14) (pin 2))
(node (ref D5) (pin 2))
(node (ref Q5) (pin 2))
(node (ref P3) (pin 1)))
(net (code 46) (name "Net-(U1-Pad4)")
(node (ref U1) (pin 4)))
(net (code 47) (name /PA8)
(node (ref U2) (pin 29))
(node (ref W2) (pin 1)))
(net (code 48) (name /PA7/SP11_MOSI)
(node (ref U2) (pin 17))
(node (ref W2) (pin 2)))
(net (code 49) (name /PA11)
(node (ref U2) (pin 32))
(node (ref W2) (pin 3)))
(net (code 50) (name /PA5/SP11_SCK)
(node (ref U2) (pin 15))
(node (ref W2) (pin 7)))
(net (code 51) (name /PA6/SP11_MISO)
(node (ref W2) (pin 8))
(node (ref U2) (pin 16)))
(net (code 52) (name "Net-(U2-Pad11)")
(node (ref U2) (pin 11)))
(net (code 53) (name "Net-(U2-Pad10)")
(node (ref U2) (pin 10)))
(net (code 54) (name /PA9/USART1__TX)
(node (ref P3) (pin 5))
(node (ref U2) (pin 30)))
(net (code 55) (name /PA10/USART1_RX)
(node (ref U2) (pin 31))
(node (ref P3) (pin 4)))
(net (code 56) (name /PA12/CS)
(node (ref U2) (pin 33)))
(net (code 57) (name "Net-(R7-Pad1)")
(node (ref U2) (pin 44))
(node (ref R7) (pin 1)))
(net (code 58) (name /PA15)
(node (ref U2) (pin 38)))
(net (code 59) (name "Net-(U4-Pad15)")
(node (ref U4) (pin 15)))
(net (code 60) (name "Net-(U4-Pad16)")
(node (ref U4) (pin 16)))
(net (code 61) (name "Net-(U4-Pad17)")
(node (ref U4) (pin 17)))
(net (code 62) (name "Net-(U4-Pad19)")
(node (ref U4) (pin 19)))
(net (code 63) (name "Net-(U4-Pad2)")
(node (ref U4) (pin 2)))
(net (code 64) (name "Net-(U4-Pad3)")
(node (ref U4) (pin 3)))
(net (code 65) (name "Net-(U4-Pad4)")
(node (ref U4) (pin 4)))
(net (code 66) (name "Net-(U4-Pad5)")
(node (ref U4) (pin 5)))
(net (code 67) (name "Net-(U4-Pad6)")
(node (ref U4) (pin 6)))
(net (code 68) (name "Net-(U4-Pad7)")
(node (ref U4) (pin 7)))
(net (code 69) (name "Net-(U4-Pad21)")
(node (ref U4) (pin 21)))
(net (code 70) (name "Net-(U4-Pad12)")
(node (ref U4) (pin 12)))
(net (code 71) (name "Net-(U4-Pad22)")
(node (ref U4) (pin 22)))
(net (code 72) (name "Net-(U4-Pad14)")
(node (ref U4) (pin 14)))
(net (code 73) (name "Net-(U3-Pad6)")
(node (ref U3) (pin 6)))
(net (code 74) (name "Net-(U3-Pad7)")
(node (ref U3) (pin 7)))
(net (code 75) (name "Net-(C16-Pad2)")
(node (ref U3) (pin 10))
(node (ref C16) (pin 2)))
(net (code 76) (name /SETC)
(node (ref C12) (pin 2))
(node (ref U3) (pin 12)))
(net (code 77) (name "Net-(U3-Pad14)")
(node (ref U3) (pin 14)))
(net (code 78) (name "Net-(U3-Pad15)")
(node (ref U3) (pin 15)))
(net (code 79) (name "Net-(C12-Pad1)")
(node (ref C12) (pin 1))
(node (ref U3) (pin 8)))
(net (code 80) (name "Net-(C14-Pad1)")
(node (ref U4) (pin 10))
(node (ref C14) (pin 1)))
(net (code 81) (name "Net-(C15-Pad2)")
(node (ref U4) (pin 20))
(node (ref C15) (pin 2)))
(net (code 82) (name "Net-(U3-Pad3)")
(node (ref U3) (pin 3)))
(net (code 83) (name "Net-(U3-Pad5)")
(node (ref U3) (pin 5)))
(net (code 84) (name "Net-(C2-Pad2)")
(node (ref C2) (pin 2))
(node (ref U2) (pin 5))
(node (ref R6) (pin 1))
(node (ref Y1) (pin 1)))
(net (code 85) (name "Net-(C3-Pad1)")
(node (ref U2) (pin 6))
(node (ref C3) (pin 1))
(node (ref R6) (pin 2))
(node (ref Y1) (pin 2)))))