forked from dokuhn/openDTU-BreakoutBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenDTU.kicad_sch
1131 lines (1104 loc) · 46 KB
/
openDTU.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 283a4b35-5347-4dcf-83c3-2a0f445df24e)
(paper "A4")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_Small_0_1"
(rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.524 0.6858) (end 1.524 0.3048)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.524)
(xy -0.762 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Polarized_Small_1_1"
(pin passive line (at 0 2.54 270) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "ESP32-NodeMCU_WROOM_32:ESP32NodeMCU" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -11.43 27.94 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ESP32NodeMCU" (id 1) (at 3.81 27.94 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "ESP32-NodeMCU_WROOM_32:ESP32-NodeMCU_WROOM_32" (id 2) (at 2.54 -29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 17.78 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "RF Radio BT ESP ESP32 Espressif onboard PCB antenna" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, onboard antenna, SMD" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ESP32NodeMCU_0_0"
(text "GND" (at 11.43 7.62 0)
(effects (font (size 1.27 1.27)))
)
(text "GND" (at 11.43 22.86 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "ESP32NodeMCU_0_1"
(rectangle (start -11.43 26.67) (end 13.97 -26.67)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ESP32NodeMCU_1_1"
(pin power_in line (at -13.97 22.86 0) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 0 0) (length 2.54)
(name "G26" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -2.54 0) (length 2.54)
(name "G27" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -5.08 0) (length 2.54)
(name "G14" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -7.62 0) (length 2.54)
(name "G12" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -13.97 -10.16 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -12.7 0) (length 2.54)
(name "G13" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -15.24 0) (length 2.54)
(name "SD2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -17.78 0) (length 2.54)
(name "SD3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -20.32 0) (length 2.54)
(name "CMD" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -13.97 -22.86 0) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 20.32 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 16.51 -22.86 180) (length 2.54)
(name "CLK" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 16.51 -20.32 180) (length 2.54)
(name "SD0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 16.51 -17.78 180) (length 2.54)
(name "SD1" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -15.24 180) (length 2.54)
(name "G15" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -12.7 180) (length 2.54)
(name "G2" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -10.16 180) (length 2.54)
(name "G0" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -7.62 180) (length 2.54)
(name "G4" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -5.08 180) (length 2.54)
(name "G16" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 -2.54 180) (length 2.54)
(name "G17" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 0 180) (length 2.54)
(name "G5" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 17.78 0) (length 2.54)
(name "SP" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 2.54 180) (length 2.54)
(name "G18" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 5.08 180) (length 2.54)
(name "G19" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -13.97 -10.16 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 10.16 180) (length 2.54)
(name "G21" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 12.7 180) (length 2.54)
(name "RXD" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 15.24 180) (length 2.54)
(name "TXD" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 17.78 180) (length 2.54)
(name "G22" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 20.32 180) (length 2.54)
(name "G23" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -13.97 -10.16 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 15.24 0) (length 2.54)
(name "SN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 12.7 0) (length 2.54)
(name "G34" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 10.16 0) (length 2.54)
(name "G35" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 7.62 0) (length 2.54)
(name "G32" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 5.08 0) (length 2.54)
(name "G33" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 2.54 0) (length 2.54)
(name "G25" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "nRF24L01+PA+LNA:NRF24L01+PA+LNA_Breakout" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -8.89 12.7 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NRF24L01+PA+LNA_Breakout" (id 1) (at 3.81 12.7 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "nRF24L01+PA+LNA_Breakout:nRF24L01+PA+LNA_Breakout" (id 2) (at 3.81 15.24 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://www.nordicsemi.com/eng/content/download/2730/34105/file/nRF24L01_Product_Specification_v2_0.pdf" (id 3) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Low Power RF Transciever breakout carrier" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ultra low power 2.4GHz RF Transceiver, Carrier PCB" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "nRF24L01*Breakout*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NRF24L01+PA+LNA_Breakout_0_1"
(rectangle (start -8.89 11.43) (end 8.89 -11.43)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy 4.445 1.905)
(xy 4.445 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 4.445 2.54) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(arc (start 5.715 2.54) (mid 5.3521 3.4546) (end 4.445 3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 6.35 1.905) (mid 5.8763 3.9854) (end 3.81 4.445)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 6.985 1.27) (mid 6.453 4.548) (end 3.175 5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "NRF24L01+PA+LNA_Breakout_1_1"
(pin power_in line (at 0 -15.24 90) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 15.24 270) (length 3.81)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 3.81)
(name "CE" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 3.81)
(name "~{CSN}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input clock (at -12.7 2.54 0) (length 3.81)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 3.81)
(name "MOSI" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at -12.7 5.08 0) (length 3.81)
(name "MISO" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at -12.7 -7.62 0) (length 3.81)
(name "IRQ" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 81.407 77.343) (diameter 0) (color 0 0 0 0)
(uuid 02eb7802-b707-4c28-9c15-8a96cc4282e3)
)
(junction (at 201.041 74.93) (diameter 0) (color 0 0 0 0)
(uuid 7bbd8e1d-9fdc-4d99-8480-883530c531f3)
)
(junction (at 78.74 128.27) (diameter 0) (color 0 0 0 0)
(uuid a05adbca-0b24-48d8-adcd-4718606151fd)
)
(junction (at 78.74 110.49) (diameter 0) (color 0 0 0 0)
(uuid a787b4e4-ca7f-4dad-a42d-e7354149962b)
)
(junction (at 78.74 77.47) (diameter 0) (color 0 0 0 0)
(uuid ef3c0799-9707-4ba0-9065-ce7e671c169b)
)
(no_connect (at 86.995 123.063) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ea7))
(no_connect (at 86.995 120.523) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ea8))
(no_connect (at 86.995 107.823) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ea9))
(no_connect (at 86.995 79.883) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eaa))
(no_connect (at 86.995 92.583) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eab))
(no_connect (at 86.995 90.043) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eac))
(no_connect (at 86.995 87.503) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ead))
(no_connect (at 86.995 84.963) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eae))
(no_connect (at 86.995 82.423) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eaf))
(no_connect (at 117.475 90.043) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb0))
(no_connect (at 117.475 84.963) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb1))
(no_connect (at 117.475 87.503) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb2))
(no_connect (at 117.475 82.423) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb3))
(no_connect (at 117.475 102.743) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb4))
(no_connect (at 117.475 110.363) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb5))
(no_connect (at 117.475 112.903) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb6))
(no_connect (at 117.475 115.443) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb7))
(no_connect (at 86.995 112.903) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb8))
(no_connect (at 86.995 105.283) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eb9))
(no_connect (at 86.995 102.743) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7eba))
(no_connect (at 86.995 100.203) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ebb))
(no_connect (at 86.995 97.663) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ebc))
(no_connect (at 86.995 95.123) (uuid b75cc55e-ca8f-4ea9-8d17-77a26deb7ebd))
(wire (pts (xy 117.475 79.883) (xy 124.333 79.883))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0db5d5e3-5743-4d3c-ae52-2cb65a2840e7)
)
(wire (pts (xy 117.475 105.283) (xy 124.333 105.283))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f816dc1-0582-478a-b929-5ea0687cef8d)
)
(wire (pts (xy 205.867 74.93) (xy 201.041 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 247dc87f-ebf8-448f-ad8a-cd0d0e803b03)
)
(wire (pts (xy 183.007 100.584) (xy 188.341 100.584))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c0e82d2-81b9-4e27-aecb-4d5be0ca2ec5)
)
(wire (pts (xy 117.475 97.663) (xy 124.333 97.663))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 325e5669-5471-4be1-9d05-c25f0a224057)
)
(wire (pts (xy 78.74 110.363) (xy 86.995 110.363))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e7c7dc1-84b2-4b3f-bb9f-3577af32a9f1)
)
(wire (pts (xy 78.74 131.572) (xy 78.74 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40850b14-fbdd-455b-8a3e-3e48622e6daf)
)
(wire (pts (xy 117.475 95.123) (xy 124.333 95.123))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42b194bf-3b34-4530-bcba-f72d7ed732b3)
)
(wire (pts (xy 78.74 128.27) (xy 78.74 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a502be8-14ec-4fb7-94dd-08ea96a17278)
)
(wire (pts (xy 205.867 76.454) (xy 205.867 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 586bed91-2aef-4bca-95f8-387fb5920ec6)
)
(wire (pts (xy 183.007 98.044) (xy 188.341 98.044))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59fa4347-1857-4b57-9a24-be2a1cbc7fcf)
)
(wire (pts (xy 117.475 107.823) (xy 124.333 107.823))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a8c44ce-04cd-4165-a547-63d4f77b53c2)
)
(wire (pts (xy 183.007 108.204) (xy 188.341 108.204))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e145338-43a1-4027-bea2-59bfbc7f25cc)
)
(wire (pts (xy 205.867 81.534) (xy 205.867 83.439))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e3fd8b7-b784-429b-bb9c-3e4e56f64b2f)
)
(wire (pts (xy 78.613 72.39) (xy 78.613 77.343))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f001795-8d0c-49c4-afa6-013c85d8cb5f)
)
(wire (pts (xy 201.041 115.824) (xy 201.041 131.191))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 894359ff-b7d5-409f-b649-030d2c687815)
)
(wire (pts (xy 183.007 95.504) (xy 188.341 95.504))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98af443b-6499-4830-b119-dd322c2780c3)
)
(wire (pts (xy 183.007 105.664) (xy 188.341 105.664))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0d69524-af2d-4c9e-b05e-598b17da2446)
)
(wire (pts (xy 117.475 100.203) (xy 124.333 100.203))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b70debaa-3f31-41f3-bed0-05dd6623b6ab)
)
(wire (pts (xy 81.407 77.343) (xy 86.995 77.343))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcba67bf-b4c8-4b6b-a3a4-a700288ce231)
)
(wire (pts (xy 78.74 110.49) (xy 78.74 110.363))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcd0d2a1-ad84-457a-89ee-4ec2a8a09644)
)
(wire (pts (xy 201.041 85.344) (xy 201.041 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid beb58fe8-590f-4710-b3d2-7950db8813b8)
)
(wire (pts (xy 81.407 72.263) (xy 81.407 77.343))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7d9dac6-9c4b-4ab8-b060-9b70d2a470bd)
)
(wire (pts (xy 201.041 74.93) (xy 201.041 72.263))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d258577b-fab0-49f0-b72b-aab2d41c7cb7)
)
(wire (pts (xy 82.423 128.27) (xy 78.74 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eff6407d-b69d-4d6b-8513-dd1a05dd04a6)
)
(wire (pts (xy 183.007 92.964) (xy 188.341 92.964))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f41ac19f-9ee8-44fd-a07b-26d6f2658732)
)
(wire (pts (xy 78.613 77.343) (xy 81.407 77.343))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fcda2919-dee7-497c-a84a-7ba4692c55e9)
)
(wire (pts (xy 82.423 131.699) (xy 82.423 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ffe62e47-f9f6-4375-8a0e-c696be74c59d)
)
(label "CE" (at 124.333 107.823 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 07f6d6b4-5128-4a9e-8418-0ae01d12a523)
)
(label "IRQ" (at 124.333 105.283 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1c01bd8b-fe2a-471a-864e-417a6efb0029)
)
(label "~{CSN}" (at 124.333 100.203 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 28a09b92-2acc-41ce-b18e-945b11f65545)
)
(label "MISO" (at 124.333 95.123 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 49f41bcc-a8a9-4c05-be37-b880802279dc)
)
(label "SCK" (at 183.007 98.044 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 58e0b9f1-0832-48e1-89ed-e32b4c8ac73e)
)
(label "MOSI" (at 183.007 92.964 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 75744b21-ffbd-4318-aa35-a641a40487aa)
)
(label "~{CSN}" (at 183.007 100.584 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a65cd39a-fbe6-4b54-8b36-b2541ffd7325)
)
(label "MOSI" (at 124.333 79.883 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b6abf6e8-76fe-4a26-9b4b-6802e3c8de4d)
)
(label "MISO" (at 183.007 95.504 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bd588331-1e02-4737-8937-15278a558175)
)
(label "CE" (at 183.007 105.664 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d2065b6a-3ede-4a6a-9cab-7708769c6240)
)
(label "IRQ" (at 183.007 108.204 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f11f72b3-cfe7-45e3-8217-6439c1aa4ee9)
)
(label "SCK" (at 124.333 97.663 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f7e61827-6dcc-4672-bd76-27a9dbcdb9ab)
)
(symbol (lib_id "ESP32-NodeMCU_WROOM_32:ESP32NodeMCU") (at 100.965 100.203 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0626e94d-7e2b-4dab-a267-2ede4e5d9e77)
(property "Reference" "U1" (id 0) (at 90.424 72.136 0))
(property "Value" "ESP32NodeMCU" (id 1) (at 96.647 128.143 0))
(property "Footprint" "ESP32-NodeMCU_WROOM_32:ESP32-NodeMCU_WROOM_32" (id 2) (at 103.505 129.413 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 118.745 100.203 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2ee08a96-b685-4e2b-aad7-1f25a57521b1))
(pin "10" (uuid 443568e9-276a-4f0a-9ff5-4c7e14bc7642))
(pin "11" (uuid 9f4523ad-845c-4139-8fec-5f02b60bea04))
(pin "12" (uuid 74ab7d19-7b51-4d25-a365-b2201035faef))
(pin "13" (uuid 1a888eaf-1c2c-49f6-87b4-99fb9436e97b))
(pin "14" (uuid 32647118-a342-43fd-90c9-28bc76547539))
(pin "15" (uuid 2131eaf8-4503-4137-84b4-566b85f71dcb))
(pin "16" (uuid c2ad165c-15be-425b-90e4-1834c81f05b3))
(pin "17" (uuid 156d9747-0ea9-4887-bd79-404820ca4c3c))
(pin "18" (uuid 437a8e66-0024-47c5-8619-1f575d9fc92a))
(pin "19" (uuid 06af615d-4ab1-44d6-abc3-ccc765fe0743))
(pin "2" (uuid 5cd4f9d4-5f62-4e46-acca-63d31ad2e5ff))
(pin "20" (uuid 33b4cdf3-be2e-4095-b6f6-77ab21e767c8))
(pin "21" (uuid 30ebf8e2-aa33-4ab4-bf77-a8e4ede4bba6))
(pin "22" (uuid 8e3d6643-7977-4c3a-8c07-df032e29f424))
(pin "23" (uuid e0d33acf-cc80-429c-bafb-cf07c6942e83))
(pin "24" (uuid 95a0f5f3-eba4-4546-af53-5f5b8819930a))
(pin "25" (uuid a6d856e8-15d7-45e7-b2b1-81dd4d7fff6a))
(pin "26" (uuid 565d0f7a-6096-416f-a53d-aa035f3ae8d8))
(pin "27" (uuid b2bfc771-6621-4e88-8b13-8f830d06a96b))
(pin "28" (uuid 9ce3c79d-6437-483b-bd43-26fa37c2776e))
(pin "29" (uuid 984d668f-ab0f-4e74-bba3-edc8f6f8bc30))
(pin "3" (uuid 70f622b4-894c-4ad0-8c25-7a1e584671fb))
(pin "30" (uuid fa06834f-1450-48a5-9606-8880b3976867))
(pin "31" (uuid 895bca4a-f522-48cc-9d42-41435751bee7))
(pin "32" (uuid 43ffec37-dee8-4b0e-9687-bc934480c7dc))
(pin "33" (uuid cd7bbfe4-e13c-4a86-89cf-5a1a963b3993))
(pin "34" (uuid cc970675-b676-4953-9f20-36d4c144aac0))
(pin "35" (uuid 05c1fb97-9bca-4ef6-88e6-6b033966ea54))
(pin "36" (uuid b64f672c-d02a-4e0e-ba13-ebf3caf452e0))
(pin "37" (uuid 28e58f9c-235a-42c9-9e42-ec750a915eac))
(pin "38" (uuid 3e170482-bdd3-45a2-985a-a8a3405e9d29))
(pin "4" (uuid 6b56ed8d-bd2c-4bb4-9852-4b23ca706d94))
(pin "5" (uuid 12066be4-db4a-47f1-9998-587d1856bb4b))
(pin "6" (uuid d12eda4b-ede2-4677-a0e3-5182aecc3f40))
(pin "7" (uuid fe814326-fa27-41eb-81ac-6ad50697096e))
(pin "8" (uuid b9abe9e9-4dfd-46f6-ae43-7596bfd6d997))
(pin "9" (uuid 6c9b6a65-4345-47a4-a3e5-5c64cbb8b2e5))
)
(symbol (lib_id "Connector:TestPoint") (at 124.333 95.123 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 138fc2e0-841b-4c13-b27f-6bb74058adc3)
(property "Reference" "TP2" (id 0) (at 128.905 95.123 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 129.54 96.3929 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 124.333 100.203 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.333 100.203 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 688ab82a-8d2b-4d1b-93fe-c1c55030de94))
)
(symbol (lib_id "power:GND") (at 201.041 131.191 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 143bc83e-fa93-4e75-9e98-5045b033ac1a)
(property "Reference" "#PWR04" (id 0) (at 201.041 137.541 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 201.041 135.89 0))
(property "Footprint" "" (id 2) (at 201.041 131.191 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 201.041 131.191 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd2a07f1-4f27-4073-9322-f7ae86aa5af4))
)
(symbol (lib_id "power:GND") (at 78.74 131.572 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1d044044-3850-4c61-96c9-6bf31e5704f7)
(property "Reference" "#PWR02" (id 0) (at 78.74 137.922 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 78.74 137.16 0))
(property "Footprint" "" (id 2) (at 78.74 131.572 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 78.74 131.572 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d733ab6f-e070-4a03-ad9a-201bf0c9f84b))
)
(symbol (lib_id "Device:C_Polarized_Small") (at 205.867 78.994 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 45a05041-9552-4705-9a03-84bdba86756f)
(property "Reference" "C1" (id 0) (at 208.28 77.1778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (id 1) (at 208.28 79.7178 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 205.867 78.994 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 205.867 78.994 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manf" "https://www.reichelt.de/de/de/elko-radial-10-f-25-v-105-4-x-7-mm-rm-2-5-ga-a-10u-25-3-p228366.html?r=1" (id 4) (at 205.867 78.994 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 52e57ec2-91e5-44bd-8561-7f1d54022f4c))
(pin "2" (uuid d033bce4-506b-484a-87ad-14e2e688b29e))
)
(symbol (lib_id "power:PWR_FLAG") (at 81.407 72.263 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 536b3283-000a-432e-99b7-ba775fb60222)
(property "Reference" "#FLG0101" (id 0) (at 81.407 70.358 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 81.407 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (id 2) (at 81.407 72.263 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 81.407 72.263 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 556f4267-a46f-4d4f-8392-bf047ed5ce81))
)
(symbol (lib_id "Connector:TestPoint") (at 124.333 107.823 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6487eed5-4bbb-4c7c-a0e2-f2db5ce1a843)
(property "Reference" "TP6" (id 0) (at 128.905 107.823 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 129.54 109.0929 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 124.333 112.903 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.333 112.903 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a800a806-29c7-4309-8d7d-8a2a3c1e7451))
)
(symbol (lib_id "Connector:TestPoint") (at 124.333 97.663 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6b673ecf-c15b-4bd0-a3f7-7e07b3cef490)
(property "Reference" "TP3" (id 0) (at 129.032 97.663 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 129.54 98.9329 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 124.333 102.743 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.333 102.743 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5b100684-2c84-4854-a2f9-1b5cc087ea6d))
)
(symbol (lib_id "nRF24L01+PA+LNA:NRF24L01+PA+LNA_Breakout") (at 201.041 100.584 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 72c1858d-a088-49c1-afaf-58c9b7b6522c)
(property "Reference" "U2" (id 0) (at 192.024 87.757 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NRF24L01+PA+LNA_Breakout" (id 1) (at 201.676 113.792 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "nRF24L01+PA+LNA_Breakout:nRF24L01+PA+LNA_Breakout" (id 2) (at 204.851 85.344 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://www.nordicsemi.com/eng/content/download/2730/34105/file/nRF24L01_Product_Specification_v2_0.pdf" (id 3) (at 201.041 103.124 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c2590128-7307-4144-ac86-2602336a5355))
(pin "2" (uuid 1edb660b-8a2e-4fe3-9120-e4ab2d4faa92))
(pin "3" (uuid e843c0b2-4dae-4ba6-9b9a-e77c1afd9927))
(pin "4" (uuid 6fd83cb7-ee62-47d2-81f4-4db5632213a0))
(pin "5" (uuid 830e300c-3182-4e3f-ad30-9f84455f1aa5))
(pin "6" (uuid bdf5da21-91cd-430d-aac7-3dc5efd5cb0a))
(pin "7" (uuid 3c5f4f4b-5c2b-4c37-bf27-318884f57fe5))
(pin "8" (uuid 84caf6ee-e027-48b2-8fe1-ee5580724ed0))
)
(symbol (lib_id "Connector:TestPoint") (at 78.74 110.49 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 7d49c6c1-d16a-4f91-b21c-7492e3335374)
(property "Reference" "TP8" (id 0) (at 74.168 110.49 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 73.533 109.2201 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 78.74 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 78.74 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2911d60f-1959-4635-b539-ba14b8768712))
)
(symbol (lib_id "Connector:TestPoint") (at 124.333 79.883 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9271389f-8f34-47d5-a739-8e5c6be39255)
(property "Reference" "TP1" (id 0) (at 128.778 79.883 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 129.54 81.1529 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 124.333 84.963 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.333 84.963 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 41ec08e3-f93f-4a65-96de-1b74cd779e2b))
)
(symbol (lib_id "power:+3.3V") (at 78.613 72.39 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid cd7881ec-7c4b-4a13-beb3-1ca57ea56ce1)
(property "Reference" "#PWR01" (id 0) (at 78.613 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 79.883 68.453 0))
(property "Footprint" "" (id 2) (at 78.613 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 78.613 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a3dd994c-b9f9-4e38-9bab-389c9fecce8a))
)
(symbol (lib_id "power:+3.3V") (at 201.041 72.263 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid e433c44d-584c-4484-a1e4-b45399353c7a)
(property "Reference" "#PWR03" (id 0) (at 201.041 76.073 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 201.041 67.31 0))
(property "Footprint" "" (id 2) (at 201.041 72.263 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 201.041 72.263 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 80cd4382-921b-47cd-8db2-e3aad498bb54))
)
(symbol (lib_id "Connector:TestPoint") (at 124.333 105.283 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid e569dd78-d048-4b76-ae41-53d4cb054556)
(property "Reference" "TP5" (id 0) (at 129.032 105.283 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 129.54 106.5529 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (id 2) (at 124.333 110.363 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.333 110.363 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 53802fce-f6a2-4f0f-8398-a63499f25eac))
)