-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTOTEMX.kicad_sch
2877 lines (2808 loc) · 105 KB
/
TOTEMX.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 20230121) (generator eeschema)
(uuid 4d1e609f-5432-4afb-8ee7-7d2d9aaaee48)
(paper "A4")
(title_block
(title "TOTEMX split keyboard")
(date "2023-05-17")
(rev "0.1")
(comment 1 "made by GEIST")
)
(lib_symbols
(symbol "Connector_Audio:AudioJack4" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AudioJack4" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "audio jack receptacle stereo headphones TRRS connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Audio Jack, 4 Poles (TRRS)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Jack*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AudioJack4_0_1"
(rectangle (start -6.35 -5.08) (end -7.62 -7.62)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 0 -5.08)
(xy 0.635 -5.715)
(xy 1.27 -5.08)
(xy 2.54 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.715 -5.08)
(xy -5.08 -5.715)
(xy -4.445 -5.08)
(xy -4.445 2.54)
(xy 2.54 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -5.08)
(xy -1.27 -5.715)
(xy -0.635 -5.08)
(xy -0.635 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy -2.54 0)
(xy -2.54 -5.08)
(xy -3.175 -5.715)
(xy -3.81 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start 2.54 3.81) (end -6.35 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "AudioJack4_1_1"
(pin passive line (at 5.08 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "R1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "R2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "S" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "T" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push_45deg" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 3.048 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push_45deg" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, normally open, two pins, 45° tilted" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_45deg_0_1"
(circle (center -1.1684 1.1684) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.54)
(xy 2.54 -0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 2.032 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -1.524 1.524)
(xy -1.524 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.524)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.143 -1.1938) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -2.54 2.54 0) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -2.54 180) (length 0)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_SPDT" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 0 4.318 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_SPDT" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Switch, single pole double throw" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_SPDT_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 -2.54) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SW_SPDT_0_1"
(polyline
(pts
(xy -1.524 0.254)
(xy 1.651 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SW_SPDT_1_1"
(pin passive line (at 5.08 2.54 180) (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 -5.08 0 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "xiao-ble:xiao-ble" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U1" (at -19.304 17.78 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "xiao-ble" (at -19.304 15.24 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TOTEMX-footprints:xiao-rev" (at -7.62 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -7.62 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "xiao-ble_0_1"
(rectangle (start -19.05 12.7) (end 19.05 -13.97)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "xiao-ble_1_1"
(pin bidirectional line (at -21.59 7.62 0) (length 2.54)
(name "A2/0.02_H" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 21.59 -2.54 180) (length 2.54)
(name "A5_MISO/1.14" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 21.59 0 180) (length 2.54)
(name "A6_MOSI/1.15" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 21.59 2.54 180) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 21.59 5.08 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 21.59 7.62 180) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -3.81 15.24 270) (length 2.54)
(name "A31_SWDIO" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -1.27 15.24 270) (length 2.54)
(name "A30_SWCLK" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 1.27 15.24 270) (length 2.54)
(name "RESET" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 3.81 15.24 270) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -6.35 -16.51 90) (length 2.54)
(name "BAT" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 5.08 0) (length 2.54)
(name "A4/0.03_H" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -3.81 -16.51 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -1.27 -16.51 90) (length 2.54)
(name "NFC1/0.09_H" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 1.27 -16.51 90) (length 2.54)
(name "NFC2/0.10_H" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 2.54 0) (length 2.54)
(name "A10/0.28" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 0 0) (length 2.54)
(name "A11/0.29" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 -2.54 0) (length 2.54)
(name "A8_SDA/0.04_H" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 -5.08 0) (length 2.54)
(name "A9_SCL/0.05_H" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -21.59 -7.62 0) (length 2.54)
(name "B8_TX/1.11" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 21.59 -7.62 180) (length 2.54)
(name "B9_RX/1.12" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 21.59 -5.08 180) (length 2.54)
(name "A7_SCK/1.13" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "zzkeeb:Connector_HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "USB" (at -5.08 16.51 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Connector_HRO-TYPE-C-31-M-12" (at -10.16 -1.27 90)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Connector_HRO-TYPE-C-31-M-12_0_1"
(rectangle (start -11.43 15.24) (end -8.89 -17.78)
(stroke (width 0) (type default))
(fill (type background))
)
(rectangle (start 0 -17.78) (end -8.89 15.24)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "Connector_HRO-TYPE-C-31-M-12_1_1"
(pin input line (at 2.54 13.97 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -8.89 180) (length 2.54)
(name "CC2" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -11.43 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -13.97 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -16.51 180) (length 2.54)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 11.43 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 8.89 180) (length 2.54)
(name "SBU2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 6.35 180) (length 2.54)
(name "CC1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 3.81 180) (length 2.54)
(name "DN2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 1.27 180) (length 2.54)
(name "DP1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -1.27 180) (length 2.54)
(name "DN1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -3.81 180) (length 2.54)
(name "DP2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -6.35 180) (length 2.54)
(name "SBU1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 37.084 97.79) (diameter 0) (color 0 0 0 0)
(uuid 00b3b1f1-840b-4e58-9c51-e1ad591adf77)
)
(junction (at 37.084 127.762) (diameter 0) (color 0 0 0 0)
(uuid 00b96f0e-3d23-46d3-9539-57b21ac25fde)
)
(junction (at 52.832 107.95) (diameter 0) (color 0 0 0 0)
(uuid 0823ae04-2ad7-4806-a401-4c68b8704156)
)
(junction (at 47.752 112.776) (diameter 0) (color 0 0 0 0)
(uuid 12e29d99-a29a-4827-b9ec-b8b260d9bf92)
)
(junction (at 58.42 112.776) (diameter 0) (color 0 0 0 0)
(uuid 1f286613-20f3-4ad1-8f7f-2fec857054a1)
)
(junction (at 74.168 122.936) (diameter 0) (color 0 0 0 0)
(uuid 28181998-3d42-4d80-a39f-fee10e035945)
)
(junction (at 52.832 137.922) (diameter 0) (color 0 0 0 0)
(uuid 317ace68-af84-43b8-b290-af9e07d1d07c)
)
(junction (at 42.164 152.908) (diameter 0) (color 0 0 0 0)
(uuid 3194d614-da23-45a0-a903-559326649770)
)
(junction (at 79.756 97.79) (diameter 0) (color 0 0 0 0)
(uuid 3da8ef01-42c0-49b5-93b1-f1fedb484394)
)
(junction (at 74.168 137.922) (diameter 0) (color 0 0 0 0)
(uuid 3ed5dcd2-cb20-4066-bd4b-92cbbcfbc489)
)
(junction (at 79.756 112.776) (diameter 0) (color 0 0 0 0)
(uuid 461cca8b-f20d-436a-b59f-e078d16e2a04)
)
(junction (at 47.752 97.79) (diameter 0) (color 0 0 0 0)
(uuid 48e5a361-7cab-47e8-9e4b-e58699cb656b)
)
(junction (at 74.168 107.95) (diameter 0) (color 0 0 0 0)
(uuid 4c9f5d6d-df50-4f17-b925-4e9559133737)
)
(junction (at 58.42 97.79) (diameter 0) (color 0 0 0 0)
(uuid 68160d7e-f79c-4a33-a415-2f2ce85a90f5)
)
(junction (at 63.5 137.922) (diameter 0) (color 0 0 0 0)
(uuid 76078e6d-7374-4527-83cd-1d28d0ad2730)
)
(junction (at 42.164 137.922) (diameter 0) (color 0 0 0 0)
(uuid 79c9c1d5-0dde-4ddd-9ba7-a7eacbace8d3)
)
(junction (at 69.088 97.79) (diameter 0) (color 0 0 0 0)
(uuid a2f9f496-e054-41d6-86d1-dd9815f709ba)
)
(junction (at 63.5 107.95) (diameter 0) (color 0 0 0 0)
(uuid a57c4240-3d7e-4644-8613-91d0711ad577)
)
(junction (at 63.5 152.908) (diameter 0) (color 0 0 0 0)
(uuid a84297c2-23d9-40c6-b319-67cd31aee3f9)
)
(junction (at 52.832 122.936) (diameter 0) (color 0 0 0 0)
(uuid aa720e16-7104-4d9c-9058-23fe0537fe69)
)
(junction (at 37.084 112.776) (diameter 0) (color 0 0 0 0)
(uuid ad492f85-8786-4cd5-902f-00e8d0a88dcb)
)
(junction (at 74.168 152.908) (diameter 0) (color 0 0 0 0)
(uuid bba38b4a-84e7-4b81-aa45-2458ef3dd00f)
)
(junction (at 58.42 127.762) (diameter 0) (color 0 0 0 0)
(uuid c9c0eb6d-55d7-401d-a6ad-9e4ab7850d2e)
)
(junction (at 42.164 122.936) (diameter 0) (color 0 0 0 0)
(uuid e8ab7fb6-f091-4552-a7e6-d50e7d99d366)
)
(junction (at 69.088 112.776) (diameter 0) (color 0 0 0 0)
(uuid e8c905c7-3671-44e3-9f23-747f052432a1)
)
(junction (at 79.756 127.762) (diameter 0) (color 0 0 0 0)
(uuid edc870e3-145f-4db3-bb4d-01346e32d54a)
)
(junction (at 69.088 127.762) (diameter 0) (color 0 0 0 0)
(uuid f18815ce-73f9-4672-825b-5079a9024b5e)
)
(junction (at 63.5 122.936) (diameter 0) (color 0 0 0 0)
(uuid f504aeff-81ed-49d1-b963-d507a490be53)
)
(junction (at 42.164 107.95) (diameter 0) (color 0 0 0 0)
(uuid f7d58153-e90b-4d7f-ac48-c2f063a21d02)
)
(no_connect (at 137.16 127) (uuid 04dbfae4-2bce-4514-8258-ab1f6c1e3b23))
(no_connect (at 111.76 129.54) (uuid 0b0da771-ef6a-40f4-b427-7d2c7a66a063))
(no_connect (at 162.56 144.78) (uuid 3fbe79f1-dc38-4e21-bfb3-f147e34d4491))
(no_connect (at 137.16 152.4) (uuid 554cd87c-ce93-42c2-86b2-7bfe82f7057d))
(no_connect (at 162.56 142.24) (uuid 5fa3a6b5-fc8b-4ef0-a07d-c67e622071df))
(no_connect (at 137.16 129.54) (uuid 674aec26-4684-497c-a0fa-bb8d4e2e24bf))
(no_connect (at 137.16 144.78) (uuid 69b5ab58-64f7-4bef-8f0c-6b480da94832))
(no_connect (at 59.69 71.12) (uuid 6a9171bf-1129-4f13-ba59-c8308abb87ad))
(no_connect (at 62.23 71.12) (uuid 6a9171bf-1129-4f13-ba59-c8308abb87ae))
(no_connect (at 59.69 39.37) (uuid 85787ec2-9e13-474f-8322-a19f08ed4654))
(no_connect (at 57.15 39.37) (uuid 85787ec2-9e13-474f-8322-a19f08ed4655))
(no_connect (at 162.56 152.4) (uuid 90a546a1-110b-46c4-b238-76c8f795f2eb))
(no_connect (at 111.76 115.57) (uuid a6d32659-7455-4565-9229-89e3a3bbfc38))
(no_connect (at 62.23 39.37) (uuid c9372079-3e8c-4f69-9cd1-9c463e82fb6e))
(no_connect (at 162.56 127) (uuid d7fb6dcb-cff1-4ce4-8d96-8e92b41b4078))
(no_connect (at 82.55 46.99) (uuid f048eeb7-79d2-4145-b78d-f16aa32cb282))
(no_connect (at 137.16 142.24) (uuid f53a9fd0-ba38-4e16-b857-2a9eeb1bad0f))
(no_connect (at 162.56 129.54) (uuid fe0a875e-292d-4b6c-b2c2-c3043a8a3731))
(wire (pts (xy 109.22 97.79) (xy 109.22 100.33))
(stroke (width 0) (type default))
(uuid 126bb916-b7fb-4aa9-b838-632fa634c6b5)
)
(wire (pts (xy 69.088 97.79) (xy 69.088 112.776))
(stroke (width 0) (type default))
(uuid 1ffb61df-62d8-43e0-ae8e-fa3680f3601b)
)
(wire (pts (xy 52.832 137.922) (xy 63.5 137.922))
(stroke (width 0) (type default))
(uuid 24afaf9e-33aa-4f2b-b422-2fd0fdd0d8d3)
)
(wire (pts (xy 74.168 122.936) (xy 84.836 122.936))
(stroke (width 0) (type default))
(uuid 32d5959a-bf37-4ec9-9a37-fb44bee31b77)
)
(wire (pts (xy 69.088 112.776) (xy 69.088 127.762))
(stroke (width 0) (type default))
(uuid 3c9fb477-f16c-412e-92bf-1e9c37fb4383)
)
(wire (pts (xy 58.42 127.762) (xy 58.42 142.748))
(stroke (width 0) (type default))
(uuid 41f35458-cb9b-473c-80cb-9576ebea8976)
)
(wire (pts (xy 42.164 122.936) (xy 52.832 122.936))
(stroke (width 0) (type default))
(uuid 4b23f63a-546c-4c47-aa6f-c64de8ea900d)
)
(wire (pts (xy 79.756 97.79) (xy 79.756 112.776))
(stroke (width 0) (type default))
(uuid 4c6e788d-b71a-43ea-952d-068d8a8cfa7b)
)
(wire (pts (xy 37.084 127.762) (xy 37.084 142.748))
(stroke (width 0) (type default))
(uuid 4ec7e128-ecad-4d67-8313-0a6ca9b5ef31)
)
(wire (pts (xy 33.528 122.936) (xy 42.164 122.936))
(stroke (width 0) (type default))
(uuid 57be7bfd-ab51-478a-8665-85db28727cbc)
)
(wire (pts (xy 42.164 137.922) (xy 52.832 137.922))
(stroke (width 0) (type default))
(uuid 5f0b2b6d-a0fd-47a3-8667-5f226fedb517)
)
(polyline (pts (xy 24.892 154.178) (xy 28.702 154.178))
(stroke (width 0) (type default))
(uuid 672ea514-758d-4298-b818-0ee4f5667057)
)
(wire (pts (xy 74.168 107.95) (xy 84.836 107.95))
(stroke (width 0) (type default))
(uuid 719babdd-d62f-44c2-b0a4-f60c2cdb6cc3)
)
(wire (pts (xy 37.084 89.916) (xy 37.084 97.79))
(stroke (width 0) (type default))
(uuid 7cb815b1-e39e-4cb7-93b0-a95394bb3795)
)
(wire (pts (xy 79.756 89.916) (xy 79.756 97.79))
(stroke (width 0) (type default))
(uuid 7fb40e25-187a-4c82-bab3-33f70e10a38e)
)
(wire (pts (xy 42.164 152.908) (xy 63.5 152.908))
(stroke (width 0) (type default))
(uuid 811e0b87-922d-4ec0-bf13-f34571410428)
)
(wire (pts (xy 69.088 89.916) (xy 69.088 97.79))
(stroke (width 0) (type default))
(uuid 8b2f988a-e984-42da-85af-820ce9f53019)
)
(wire (pts (xy 79.756 127.762) (xy 79.756 142.748))
(stroke (width 0) (type default))
(uuid 8d4395fc-d218-4907-a342-382d187379f7)
)
(wire (pts (xy 33.528 107.95) (xy 42.164 107.95))
(stroke (width 0) (type default))
(uuid a7e9a357-f3fb-4402-b0a8-e63bb4605912)
)
(wire (pts (xy 79.756 112.776) (xy 79.756 127.762))
(stroke (width 0) (type default))
(uuid acea6535-28b8-41a9-99f9-35584955a31e)
)
(wire (pts (xy 52.832 122.936) (xy 63.5 122.936))
(stroke (width 0) (type default))
(uuid b14b0a12-2680-4d87-9794-146c00380946)
)
(wire (pts (xy 104.14 100.33) (xy 104.14 97.79))
(stroke (width 0) (type default))
(uuid b303ff48-e0ce-4900-9b5e-a0027b5b962a)
)
(wire (pts (xy 63.5 137.922) (xy 74.168 137.922))
(stroke (width 0) (type default))
(uuid b778c64d-3d78-436d-bc58-08ed813400e9)
)
(wire (pts (xy 52.832 107.95) (xy 63.5 107.95))
(stroke (width 0) (type default))
(uuid c08d7e79-bc95-4909-8000-e4ec4ab3650d)
)
(wire (pts (xy 63.5 122.936) (xy 74.168 122.936))
(stroke (width 0) (type default))
(uuid c289ba45-c605-4605-85fb-a0553c0311f5)
)
(wire (pts (xy 102.362 100.33) (xy 104.14 100.33))
(stroke (width 0) (type default))
(uuid c9134df8-e0bf-4104-bdad-d037c6f4a3d4)
)
(wire (pts (xy 47.752 97.79) (xy 47.752 112.776))
(stroke (width 0) (type default))
(uuid ca519c5d-66df-4092-8668-64a5b0539002)
)
(wire (pts (xy 109.22 100.33) (xy 110.998 100.33))
(stroke (width 0) (type default))
(uuid cbc46b60-b039-455a-80cc-b602c9518ebe)
)
(wire (pts (xy 47.752 112.776) (xy 47.752 127.762))
(stroke (width 0) (type default))
(uuid cbf513a9-3d78-44cd-a905-22ec7365f77a)
)
(wire (pts (xy 47.752 89.916) (xy 47.752 97.79))
(stroke (width 0) (type default))
(uuid ccd126c2-4ec7-4b11-b25b-b1648f177220)
)
(wire (pts (xy 42.164 107.95) (xy 52.832 107.95))
(stroke (width 0) (type default))
(uuid d14d5b98-6cbc-4f57-b3c6-b564b93c91ef)
)
(wire (pts (xy 58.42 112.776) (xy 58.42 127.762))
(stroke (width 0) (type default))
(uuid d195b07f-7261-481e-8855-902f338d654a)
)
(wire (pts (xy 69.088 127.762) (xy 69.088 142.748))
(stroke (width 0) (type default))
(uuid d8c28223-ef81-427e-b6ad-4c7d21d73414)
)
(wire (pts (xy 63.5 152.908) (xy 74.168 152.908))
(stroke (width 0) (type default))
(uuid ddfce994-01cf-493b-acaa-f3f8c788286c)
)
(wire (pts (xy 33.528 137.922) (xy 42.164 137.922))
(stroke (width 0) (type default))
(uuid e3eb3afe-6f6b-498c-8205-269675250aaf)
)
(wire (pts (xy 74.168 152.908) (xy 84.836 152.908))
(stroke (width 0) (type default))
(uuid e6430667-1d8f-48bb-b1eb-bdccb4bb6650)
)
(wire (pts (xy 58.42 97.79) (xy 58.42 112.776))
(stroke (width 0) (type default))
(uuid e7fc26fa-caa1-426b-b675-6c86bb9b7fe1)
)
(wire (pts (xy 37.084 97.79) (xy 37.084 112.776))
(stroke (width 0) (type default))
(uuid e8fd13ca-6c9c-4516-98b4-ca9239b9ec8d)
)
(wire (pts (xy 58.42 89.916) (xy 58.42 97.79))
(stroke (width 0) (type default))
(uuid e9471893-c1cd-4096-be61-75542822c4af)
)
(wire (pts (xy 63.5 107.95) (xy 74.168 107.95))
(stroke (width 0) (type default))
(uuid ebf16663-404f-445a-9f04-70e5b52b78a2)
)
(wire (pts (xy 33.528 152.908) (xy 42.164 152.908))
(stroke (width 0) (type default))
(uuid ef0fcb90-605c-451a-ad9d-6052fb6ebd37)
)
(wire (pts (xy 37.084 112.776) (xy 37.084 127.762))
(stroke (width 0) (type default))
(uuid f1dcbd82-3a85-45bf-85a8-44697d055747)
)
(wire (pts (xy 74.168 137.922) (xy 84.836 137.922))
(stroke (width 0) (type default))
(uuid f9707dfd-1a3b-49f0-9bec-e594370ae3aa)
)
(text "T O T E M X" (at 18.034 195.072 0)
(effects (font (size 15 15)) (justify left bottom))
(uuid 6b40e4bc-bae2-4f14-bc8b-354727510bc3)
)
(global_label "RX" (shape input) (at 137.16 134.62 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 00b2a04c-67c7-4ece-aaf4-de18ddfb6a95)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.5453 134.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RX" (shape input) (at 137.16 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 02247fb8-cfb8-44e3-8c11-32ea031bbbb6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.5453 139.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TX" (shape input) (at 137.16 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 03fb3e41-f81b-4d3c-a909-9a3406f2da7a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.2429 132.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TX" (shape input) (at 137.16 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0adc4e32-ebfc-4f1d-b817-550321b2535f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.2429 137.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL3" (shape input) (at 69.088 89.916 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13ab4c5a-cb03-459c-bf0e-51680c8a1678)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 69.088 82.1721 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL4" (shape input) (at 79.756 89.916 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13c3a887-e02a-444b-936d-a0583e217860)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.756 82.1721 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "BAT+" (shape input) (at 101.6 118.11 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1ab282d6-fa3c-4de7-b04b-07df5a1dc9e8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 93.7956 118.11 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL1" (shape input) (at 47.752 89.916 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1f1586c8-992b-42d5-96d7-6649ee6a8e9a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 47.752 82.1721 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 64.77 39.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1f28b97d-edd7-478f-98ef-81a131de17f3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 64.77 32.5937 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RX" (shape input) (at 162.56 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 21d4fde3-e5b3-4997-9fc6-eada892947ab)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 167.9453 139.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 82.55 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 22f10191-9efe-4979-b885-d7d6ffc87a66)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 89.3263 49.53 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 77.47 170.18 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2bd42a96-2116-4b81-bcbc-d8b1b0c9b7e0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 77.47 176.9563 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VBAT" (shape input) (at 102.362 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 44b1f409-f48e-408d-94e1-0b4025bb7265)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 95.0414 100.33 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "BAT+" (shape input) (at 54.61 71.12 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 50c77121-136a-4481-b771-b4404a28ebe1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 54.61 78.9244 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)