-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BLE-Bee_v11.kicad_sch
1488 lines (1456 loc) · 60.8 KB
/
BLE-Bee_v11.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 827d4612-ec2d-472b-8b7a-6e06bddc7bad)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x10" (id 1) (at 0 -15.24 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x10_1_1"
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 11.43) (end 1.27 -13.97)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 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" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "blebee-rescue:NINA-B3-corelib" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 3.81 34.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NINA-B3-corelib" (id 1) (at -11.43 29.21 90)
(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)
)
(symbol "NINA-B3-corelib_0_1"
(rectangle (start -10.16 33.02) (end 10.16 -40.64)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "NINA-B3-corelib_1_1"
(pin passive line (at -12.7 21.59 0) (length 2.54)
(name "RED" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 35.56 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 25.4 180) (length 2.54)
(name "SWCLK" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 22.86 180) (length 2.54)
(name "SWDIO" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 5.08 0) (length 2.54)
(name "UART_DTR" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 2.54 0) (length 2.54)
(name "UART_DSR" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 13.97 0) (length 2.54)
(name "SW_2" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "RESET_N" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -11.43 0) (length 2.54)
(name "IO_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 0 0) (length 2.54)
(name "UART_RTS" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -2.54 0) (length 2.54)
(name "UART_CTS" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin output line (at -12.7 -5.08 0) (length 2.54)
(name "UART_TXD" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "UART_RXD" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -21.59 0) (length 2.54)
(name "IO24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -24.13 0) (length 2.54)
(name "IO25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -26.67 0) (length 2.54)
(name "IO27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -31.75 0) (length 2.54)
(name "NFC1" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -34.29 0) (length 2.54)
(name "NFC2" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -13.97 0) (length 2.54)
(name "IO_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 3.81 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 35.56 270) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 16.51 180) (length 2.54)
(name "IO32" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 13.97 180) (length 2.54)
(name "IO33" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 11.43 180) (length 2.54)
(name "IO34" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 8.89 180) (length 2.54)
(name "IO35" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 6.35 180) (length 2.54)
(name "IO36" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 3.81 180) (length 2.54)
(name "IO37" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 1.27 180) (length 2.54)
(name "IO38" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -1.27 180) (length 2.54)
(name "IO39" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -16.51 0) (length 2.54)
(name "IO_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -3.81 180) (length 2.54)
(name "IO40" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -6.35 180) (length 2.54)
(name "IO41" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -8.89 180) (length 2.54)
(name "IO42" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -11.43 180) (length 2.54)
(name "IO43" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -13.97 180) (length 2.54)
(name "IO44" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -16.51 180) (length 2.54)
(name "IO45" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -19.05 180) (length 2.54)
(name "IO46" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -21.59 180) (length 2.54)
(name "IO47" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -24.13 180) (length 2.54)
(name "IO48" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -26.67 180) (length 2.54)
(name "IO49" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -19.05 0) (length 2.54)
(name "IO_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -29.21 180) (length 2.54)
(name "IO50" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -31.75 180) (length 2.54)
(name "IO51" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -34.29 180) (length 2.54)
(name "IO52" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 6.35 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 30.48 180) (length 2.54)
(name "USB_DP" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 27.94 180) (length 2.54)
(name "USB_DM" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 8.89 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 -43.18 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 19.05 0) (length 2.54)
(name "GREEN/SW_1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 16.51 0) (length 2.54)
(name "BLUE" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 35.56 270) (length 2.54)
(name "VCCIO" (effects (font (size 1.27 1.27))))
(number "9" (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))))
)
)
)
)
(junction (at 143.51 45.72) (diameter 0) (color 0 0 0 0)
(uuid 073bced5-114e-4f49-b6e8-19d873f77f41)
)
(junction (at 113.03 45.72) (diameter 0) (color 0 0 0 0)
(uuid 33cf8393-12ad-4d32-b046-a9f92b419cdb)
)
(junction (at 144.78 139.7) (diameter 0) (color 0 0 0 0)
(uuid 4cca82e0-9bfb-4d4e-80ab-469e06aec4b0)
)
(junction (at 142.24 139.7) (diameter 0) (color 0 0 0 0)
(uuid 4d3052b8-5ff7-40c7-a37d-19ef34e3aef8)
)
(junction (at 147.32 139.7) (diameter 0) (color 0 0 0 0)
(uuid 542f5e8f-b31b-4ce5-8af7-990846f72322)
)
(junction (at 151.13 45.72) (diameter 0) (color 0 0 0 0)
(uuid 566901dc-cdb1-48e3-9165-3d1910ae6327)
)
(junction (at 151.13 53.34) (diameter 0) (color 0 0 0 0)
(uuid 627b4206-4c6a-4f31-9d74-402bb9ab99ee)
)
(junction (at 139.7 139.7) (diameter 0) (color 0 0 0 0)
(uuid 8045307e-8cd4-4281-b289-34e2a1f351f0)
)
(junction (at 137.16 45.72) (diameter 0) (color 0 0 0 0)
(uuid 863600a4-1c55-43a2-a063-14bc68b441ba)
)
(junction (at 134.62 45.72) (diameter 0) (color 0 0 0 0)
(uuid aa87668a-429b-4cef-a4a3-a5cbdf106b67)
)
(junction (at 137.16 139.7) (diameter 0) (color 0 0 0 0)
(uuid afa97cc7-19e1-46c3-b3d2-42d6237c8de4)
)
(junction (at 140.97 139.7) (diameter 0) (color 0 0 0 0)
(uuid b3eed3d4-9167-440a-a7a9-860a414930b9)
)
(junction (at 113.03 50.8) (diameter 0) (color 0 0 0 0)
(uuid caa9c827-4372-4a2e-8a95-cfb15bdf5da5)
)
(junction (at 158.75 53.34) (diameter 0) (color 0 0 0 0)
(uuid cb42fd1b-5cac-4f9a-931b-2bdb926f1839)
)
(no_connect (at 128.27 107.95) (uuid 098a3bd5-3936-4d71-8686-57e6cf0304e2))
(no_connect (at 153.67 85.09) (uuid 0ce7f80a-c33c-41da-b4ad-c94fec0bd914))
(no_connect (at 128.27 120.65) (uuid 11469345-460c-4b04-9940-91fd2724f4c7))
(no_connect (at 128.27 118.11) (uuid 12eaffc5-fc9b-4d19-8b6e-dd75742d1c15))
(no_connect (at 82.55 116.84) (uuid 12fc1ae4-3f6b-4700-9ff2-3f6a395c35ba))
(no_connect (at 82.55 96.52) (uuid 1861450d-e718-4eee-89be-56d3334bef29))
(no_connect (at 82.55 93.98) (uuid 1d257dac-277d-4b80-9286-dd0e04ef5f8d))
(no_connect (at 153.67 110.49) (uuid 1d6c76bf-8423-4cbb-84b3-1834736a1b00))
(no_connect (at 153.67 95.25) (uuid 29143fa6-84f5-4bee-926c-e22b901ceb10))
(no_connect (at 153.67 107.95) (uuid 2d62c0d0-dba5-4ed5-84ee-b39201d3076d))
(no_connect (at 153.67 123.19) (uuid 2e6aeaf4-454a-42a0-a0bf-e600919ab157))
(no_connect (at 82.55 88.9) (uuid 30467172-ed0e-400c-ad21-d3a86c230201))
(no_connect (at 82.55 83.82) (uuid 38ecdee2-49d2-4ec9-b664-af6f843820c3))
(no_connect (at 153.67 100.33) (uuid 46e16ecd-86ea-4f7c-9b2f-ef9e3d16d7b8))
(no_connect (at 153.67 118.11) (uuid 4914a36a-899c-456a-ba74-58191036730a))
(no_connect (at 82.55 114.3) (uuid 57b283bc-79be-4d97-82ad-ea48b1f32aa7))
(no_connect (at 128.27 130.81) (uuid 5d1032ee-a165-44da-9904-c7ff88cd394c))
(no_connect (at 153.67 115.57) (uuid 62ca7c87-6b4a-494c-8065-9f5c20c35951))
(no_connect (at 82.55 109.22) (uuid 64453496-9e85-405b-b551-1fff319609d5))
(no_connect (at 153.67 80.01) (uuid 66ae9f71-6157-4c5d-a73c-098667f4227b))
(no_connect (at 153.67 105.41) (uuid 6720da0c-fa95-44ea-9182-a5bf2ee7afa3))
(no_connect (at 139.7 60.96) (uuid 684dee07-4a34-4a44-9602-5dd2e38404c6))
(no_connect (at 153.67 130.81) (uuid 6a22c128-687a-4827-b091-e2100b2d2ebc))
(no_connect (at 128.27 128.27) (uuid 756470c6-8226-4d79-8826-198287fb1fa4))
(no_connect (at 153.67 97.79) (uuid 775336d8-2c1c-43ba-9c11-823438b7e8bd))
(no_connect (at 82.55 91.44) (uuid 79ad0d22-0d4e-4650-9c36-1eb7c702018b))
(no_connect (at 153.67 125.73) (uuid 7a6ca566-ae43-4884-97b1-8423326091d3))
(no_connect (at 153.67 92.71) (uuid 7b5fc003-35db-420f-b25d-63168474a732))
(no_connect (at 128.27 96.52) (uuid 7f45c785-a94b-486c-9806-c88c4ef105f3))
(no_connect (at 153.67 73.66) (uuid 7f61998d-e04d-4388-b7dc-a68602295164))
(no_connect (at 153.67 120.65) (uuid 8be9ba90-0a97-4470-8244-6d5ec9fe2cee))
(no_connect (at 153.67 87.63) (uuid 8cc76379-50b0-4db6-920b-fcae05b66004))
(no_connect (at 153.67 128.27) (uuid 8ea2a3b7-069c-4353-a0c1-62d27cceab96))
(no_connect (at 128.27 123.19) (uuid 979efad7-ea64-448b-8417-2682300501fe))
(no_connect (at 153.67 68.58) (uuid b1d4c709-7d8c-49aa-98e0-609887198b75))
(no_connect (at 153.67 90.17) (uuid b8c81b2d-2762-45f6-87a5-bf7fe91502ea))
(no_connect (at 153.67 71.12) (uuid bf057173-9741-4001-b5ef-8295ad203027))
(no_connect (at 153.67 66.04) (uuid bf2c3654-7559-4d29-8fb3-a35f3b6b927b))
(no_connect (at 82.55 121.92) (uuid c2e7b9dd-a9c2-439f-b387-1e722f2be34f))
(no_connect (at 82.55 127) (uuid d02d23f0-499f-4e9a-b7cb-898d512a90ec))
(no_connect (at 153.67 82.55) (uuid d1ae81b4-e945-4c98-aae2-7c5c5aca713c))
(no_connect (at 82.55 119.38) (uuid d7c9b678-7911-4314-a624-fdbb36f648a8))
(no_connect (at 153.67 113.03) (uuid d7f96400-081d-45e5-8891-b25eda0c770b))
(no_connect (at 153.67 102.87) (uuid e9eea5ae-2198-4604-bfb0-8af46ab8a2b7))
(wire (pts (xy 124.46 106.68) (xy 125.73 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04d246a1-64e6-4bfc-b11f-604a321015eb)
)
(wire (pts (xy 110.49 91.44) (xy 99.06 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21c49677-9bb0-4dc2-8fb6-85bc6218ae5f)
)
(wire (pts (xy 82.55 132.08) (xy 99.06 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23948f06-675e-4328-9b46-46a687f0f576)
)
(wire (pts (xy 99.06 111.76) (xy 82.55 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23e541cd-d5fc-4809-b685-034083e7e79a)
)
(wire (pts (xy 140.97 144.78) (xy 140.97 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26e26007-be9b-4562-9585-ed88e242b320)
)
(wire (pts (xy 99.06 91.44) (xy 99.06 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2af6efba-52ab-4796-8815-ec1b510ffddb)
)
(wire (pts (xy 128.27 77.47) (xy 113.03 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b6601f3-7805-445c-bf17-c93f75e7c737)
)
(wire (pts (xy 142.24 139.7) (xy 144.78 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30d78a8a-040f-4f3e-aaa0-dac019e1b733)
)
(wire (pts (xy 128.27 80.01) (xy 118.11 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32923bdf-5b28-491e-8abc-a77917cfc40d)
)
(wire (pts (xy 128.27 91.44) (xy 118.11 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 346b470c-a03d-4ee6-ac4d-6be1163c3994)
)
(wire (pts (xy 113.03 45.72) (xy 113.03 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e873c51-477e-4cd7-8e34-b436c9127fa3)
)
(wire (pts (xy 128.27 104.14) (xy 125.73 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c7596da-81db-4c6c-b3cc-149abacbeb42)
)
(wire (pts (xy 124.46 101.6) (xy 128.27 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c8ca357-1877-4711-ba07-bc798a32f782)
)
(wire (pts (xy 82.55 129.54) (xy 87.63 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fb3da54-8e33-4ce0-9a77-572e465d6599)
)
(wire (pts (xy 140.97 139.7) (xy 142.24 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d976369-8e53-4a00-a86c-403095408422)
)
(wire (pts (xy 113.03 59.69) (xy 113.03 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6877c41e-591b-4151-8af4-1c15da71f91a)
)
(wire (pts (xy 134.62 45.72) (xy 137.16 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6893f5f6-c3be-403b-8e46-327b07ff9047)
)
(wire (pts (xy 143.51 53.34) (xy 151.13 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a3d719c-7f6e-40e1-b5a1-d5e1e14ee2be)
)
(wire (pts (xy 113.03 77.47) (xy 113.03 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d167844-4756-4896-b825-2ab424f9b33b)
)
(wire (pts (xy 110.49 93.98) (xy 106.68 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f10eb3a-ff8a-4263-b377-4c979707fcd4)
)
(wire (pts (xy 143.51 45.72) (xy 137.16 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75e4e38c-1490-4ad0-a7f7-7044064a84e8)
)
(wire (pts (xy 118.11 59.69) (xy 118.11 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75f266ff-bb85-4d21-a3f1-6cb779ff37de)
)
(wire (pts (xy 125.73 106.68) (xy 125.73 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7977b63b-b5a9-4ba7-85f7-63be22a9a35e)
)
(wire (pts (xy 118.11 50.8) (xy 113.03 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cc88537-3ae5-4883-b89d-52787ca19dd6)
)
(wire (pts (xy 107.95 74.93) (xy 107.95 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83abc281-50cb-48bb-8e44-6469265be44c)
)
(wire (pts (xy 137.16 45.72) (xy 137.16 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83d142e2-ebcf-4918-ae70-70e55af57059)
)
(wire (pts (xy 128.27 93.98) (xy 118.11 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8812019b-4133-41f7-baa7-66e164c2420d)
)
(wire (pts (xy 144.78 139.7) (xy 147.32 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a51051a6-f7ee-4281-91d3-accbad229e96)
)
(wire (pts (xy 111.76 99.06) (xy 128.27 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acfed2fa-592d-4d69-9f4e-1752f6ff4919)
)
(wire (pts (xy 107.95 59.69) (xy 107.95 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af754c33-7822-4d14-948e-3c47d8c177e6)
)
(wire (pts (xy 106.68 124.46) (xy 82.55 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bae15c03-da1d-4a1e-8de5-343327fe3982)
)
(wire (pts (xy 118.11 80.01) (xy 118.11 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c157d72a-9058-4d2c-a239-c24f6b0b203a)
)
(wire (pts (xy 113.03 45.72) (xy 134.62 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2cbfa2c-518d-4373-a9f6-679a9183d546)
)
(wire (pts (xy 134.62 139.7) (xy 137.16 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c465286d-ca85-48e3-8fd7-1751f852dca5)
)
(wire (pts (xy 143.51 45.72) (xy 151.13 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6c995cb-60b7-4579-a4d8-23e949c4a708)
)
(wire (pts (xy 124.46 101.6) (xy 124.46 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb47c083-fe68-4078-8de3-3be43b4d9267)
)
(wire (pts (xy 134.62 45.72) (xy 134.62 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb4e6ef9-3bf9-4621-a972-dc161771ff67)
)
(wire (pts (xy 151.13 45.72) (xy 158.75 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbe5d9ac-0dbf-4beb-8ed7-500b3437b302)
)
(wire (pts (xy 113.03 40.64) (xy 113.03 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d07e1f47-3e65-4752-97bb-31449426a438)
)
(wire (pts (xy 137.16 139.7) (xy 139.7 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d09f3f8c-874e-4493-aa59-c6e94111d3d2)
)
(wire (pts (xy 151.13 53.34) (xy 158.75 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3864351-6d69-4ebb-89b4-b7d46648eeed)
)
(wire (pts (xy 107.95 50.8) (xy 113.03 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9024db0-a95d-4638-9003-526bcd20037f)
)
(wire (pts (xy 106.68 93.98) (xy 106.68 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e450da72-98c3-4b02-bd53-9f12a50ec903)
)
(wire (pts (xy 139.7 139.7) (xy 140.97 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebd4451c-4265-4c46-b902-087f9e359f33)
)
(wire (pts (xy 128.27 74.93) (xy 107.95 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa3a8fb1-33fe-41c9-b1f6-c7a21b6eb27a)
)
(wire (pts (xy 147.32 139.7) (xy 149.86 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff9e4083-ec6d-464d-9bbf-5bbcab9e6a77)
)
(text "Released under the Creative Commons Attribution Share-Alike \nLicense. http://creativecommons.org/licenses/by-sa/4.0/\n\nDesigned by Kliment Yanev for Watterott electronic"
(at 179.07 179.07 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e5d3570f-70d2-4dcb-8a26-2e8b7d7317c4)
)
(label "RX" (at 82.55 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 12d8f9b7-8804-4c98-a9ef-a92d5dc963e4)
)
(label "RESET" (at 82.55 86.36 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 27d9761c-f3c8-4151-a57f-d29cb9d2407f)
)
(label "3V3" (at 113.03 40.64 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2dc389d0-d2f3-467e-b2de-8dedc36c4c80)
)
(label "SCK" (at 128.27 110.49 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 365946bf-699b-41f0-a7c3-684dc03fa33b)
)
(label "MISO" (at 128.27 113.03 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 372f7e30-c773-4278-b448-9703d0bbb68a)
)
(label "TX" (at 116.84 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 50a8583a-4726-410b-8992-b77a315245a3)
)
(label "3V3" (at 82.55 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7bbc0029-73f8-4489-bf2d-0b53ca6b852a)
)
(label "SW1" (at 95.25 129.54 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7fa8d415-b461-4cee-a540-c4ed7555eaf1)
)
(label "SW1" (at 113.03 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 896cb768-c253-4b59-b4a5-548a86e5e1dd)
)
(label "MOSI" (at 128.27 115.57 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid baa6854b-78fb-4bdc-8754-979b449b6762)
)
(label "CS" (at 87.63 124.46 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c14329ec-b454-4d77-ba67-f6c5ab6e96fc)
)
(label "RX" (at 116.84 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c901b8a5-e7c0-4180-8a16-a50447c2ee6d)
)
(label "INT" (at 93.98 111.76 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cb66857b-cb00-4620-bb31-2b88b81666a9)
)
(label "RESET" (at 128.27 86.36 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d898b310-1163-433f-91cd-764981a0d840)
)
(label "SW2" (at 128.27 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid deb79c54-bdf6-40d0-8e43-a9c1e0e5de20)
)
(label "TX" (at 82.55 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fae3032e-a8a4-4e52-95b2-4eeefe69ef99)
)
(label "SW2" (at 106.68 132.08 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ffd14834-2b79-4793-b6a7-cf98fa5ae3fc)
)
(symbol (lib_id "blebee-rescue:NINA-B3-corelib") (at 140.97 96.52 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000601acc9a)
(property "Reference" "U1" (id 0) (at 140.97 56.3626 0))
(property "Value" "NINA-B3" (id 1) (at 140.97 58.674 0))
(property "Footprint" "corelib:NINA-B3x2" (id 2) (at 140.97 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 140.97 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c2b74c50-cf91-41f9-b46c-c75cb6624450))