-
Notifications
You must be signed in to change notification settings - Fork 0
/
USB2CAN.kicad_sch
1909 lines (1872 loc) · 82.8 KB
/
USB2CAN.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 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, 01x02, 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_01x02_1_1"
(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 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 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 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (id 1) (at 0 -7.62 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, 01x04, 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_01x04_1_1"
(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 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 2.54 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 0 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 -2.54 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 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_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_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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(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 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_TVS" (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" "D_TVS" (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" "diode TVS thyrector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional transient-voltage-suppression diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_TVS_0_1"
(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 0.508 1.27)
(xy 0 1.27)
(xy 0 -1.27)
(xy -0.508 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.27)
(xy -2.54 -1.27)
(xy 2.54 1.27)
(xy 2.54 -1.27)
(xy -2.54 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_TVS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A1" (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 "A2" (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_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(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:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (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) (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 "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))))
)
)
)
)
(junction (at 128.778 92.202) (diameter 0) (color 0 0 0 0)
(uuid 40800b4d-424c-4738-8041-4662989d2010)
)
(junction (at 120.904 88.646) (diameter 0) (color 0 0 0 0)
(uuid 45899113-d22e-4a5b-822e-9aca23b124ee)
)
(junction (at 111.76 83.058) (diameter 0) (color 0 0 0 0)
(uuid 5290e0d7-1f24-4c0b-91ff-28c5a304ab9a)
)
(junction (at 132.08 81.28) (diameter 0) (color 0 0 0 0)
(uuid baa534a0-611b-4c48-8e86-5106dc852bd8)
)
(junction (at 132.08 76.962) (diameter 0) (color 0 0 0 0)
(uuid e77c17df-b20e-4e7d-b937-f281c75a0014)
)
(wire (pts (xy 139.192 76.962) (xy 140.462 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e592cd4-1950-44ef-9727-8e526f4c4e12)
)
(wire (pts (xy 117.856 88.138) (xy 117.856 92.202))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f3121ae-1081-4d81-b548-dceafa613e21)
)
(wire (pts (xy 179.832 124.714) (xy 183.134 124.714))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14e67dc1-811d-4723-993e-13cbb05552d8)
)
(wire (pts (xy 139.192 81.28) (xy 140.462 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25247d0c-5910-484b-9651-5750d422a450)
)
(wire (pts (xy 158.242 113.538) (xy 162.56 113.538))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2980ad59-3e64-49fa-8a4a-36acbd7fcb7c)
)
(wire (pts (xy 111.76 100.838) (xy 111.76 102.108))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 337d1242-91ab-4446-8b9e-7609c6a49e3c)
)
(wire (pts (xy 179.832 122.174) (xy 183.134 122.174))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 384702c3-195f-482f-8b1b-6010928a0ea4)
)
(wire (pts (xy 120.904 100.838) (xy 120.904 101.854))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cfddd47-0913-4692-89bb-8a69d22be5a7)
)
(wire (pts (xy 158.242 122.174) (xy 162.56 122.174))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52e7c331-459d-4250-a4a8-73489001c475)
)
(wire (pts (xy 158.242 91.694) (xy 162.56 91.694))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
)
(wire (pts (xy 132.08 76.962) (xy 132.08 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59142adb-6887-41fc-851e-9a7f51511d60)
)
(wire (pts (xy 132.08 81.28) (xy 134.112 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b04e20f-8575-4362-b040-2e2133d670c8)
)
(wire (pts (xy 180.086 91.694) (xy 183.134 91.694))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
)
(wire (pts (xy 132.08 69.596) (xy 138.684 69.596))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba)
)
(wire (pts (xy 158.242 110.998) (xy 162.56 110.998))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5db42b7d-a4cf-451a-947d-c8c7a32c68e2)
)
(wire (pts (xy 88.392 87.884) (xy 88.392 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f74c6fb-337b-40a9-9b79-933f2f30429a)
)
(wire (pts (xy 105.156 90.678) (xy 105.156 102.108))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 624c6565-c4fd-4d29-87af-f77dd1ba0898)
)
(wire (pts (xy 105.156 88.138) (xy 117.856 88.138))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66cc4ddc-a52d-4ad7-986e-68f000539802)
)
(wire (pts (xy 120.904 85.598) (xy 120.904 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c715627-9fe9-4566-9325-aed34f2a0ebd)
)
(wire (pts (xy 179.832 102.87) (xy 183.134 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
)
(wire (pts (xy 128.778 100.838) (xy 128.778 101.854))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7983b95c-14e4-4dec-ab4e-09c81071d9de)
)
(wire (pts (xy 158.242 89.154) (xy 162.56 89.154))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 830aee7f-dfce-42cd-85ef-6370f6dc02f5)
)
(wire (pts (xy 128.778 92.202) (xy 128.778 93.218))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8527ef2e-5212-4629-b6f5-b0130ab61dab)
)
(wire (pts (xy 132.08 83.058) (xy 132.08 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e715b73-353f-4cfc-aa33-1eac54b89b6c)
)
(wire (pts (xy 180.086 110.998) (xy 183.134 110.998))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b41c07c-86cf-4a62-9991-4ff0648cd1cf)
)
(wire (pts (xy 132.08 69.596) (xy 132.08 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a150f0c9-1a23-4200-b489-18791f6d5ce5)
)
(wire (pts (xy 180.086 113.538) (xy 183.134 113.538))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a46af0f9-4273-4b49-9136-a6d1ce5bd421)
)
(wire (pts (xy 117.856 92.202) (xy 128.778 92.202))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a67b97a6-51fd-4a32-8231-3fd10436b6ab)
)
(wire (pts (xy 88.392 80.518) (xy 88.392 82.804))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9ad6ea5-8293-424c-89d4-c01baf033429)
)
(wire (pts (xy 128.778 92.202) (xy 138.684 92.202))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1d39a30-006e-4167-9c23-81a57fa0c1bb)
)
(wire (pts (xy 120.904 88.646) (xy 120.904 93.218))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfec88d2-05ea-4320-9be6-2559d89ee700)
)
(wire (pts (xy 180.086 89.154) (xy 183.134 89.154))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d372e2ac-d81e-48b7-8c55-9bbe58eeffc3)
)
(wire (pts (xy 105.156 83.058) (xy 111.76 83.058))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d68589fa-205b-4356-a20d-821c85f5f45e)
)
(wire (pts (xy 179.832 100.33) (xy 183.134 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb391a95-1c1d-4613-b508-c76b8bc13a73)
)
(wire (pts (xy 158.242 124.714) (xy 162.56 124.714))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebed3b92-fe08-4514-8997-e8143f4c854d)
)
(wire (pts (xy 132.08 76.962) (xy 134.112 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edb2db40-12f7-45b3-a514-2a1299ac0231)
)
(wire (pts (xy 158.242 100.33) (xy 162.56 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee9a2826-2513-480e-a552-3d07af5bf8a5)
)
(wire (pts (xy 111.76 83.058) (xy 132.08 83.058))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eecd895d-4aa1-458c-8512-c9957fd00fad)
)
(wire (pts (xy 158.242 102.87) (xy 162.56 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
)
(wire (pts (xy 105.156 85.598) (xy 120.904 85.598))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7475c2a-e91e-435c-bec2-3307ef3e1f94)
)
(wire (pts (xy 120.904 88.646) (xy 138.684 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc052ac4-77ec-4901-baf8-c95f94903836)
)
(wire (pts (xy 111.76 83.058) (xy 111.76 93.218))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe1c93f4-4468-424b-a088-27aef08b62b4)
)
(wire (pts (xy 88.392 96.266) (xy 88.392 97.536))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff203a9b-3d2e-4e1d-a6f0-12d16e5120fb)
)
(symbol (lib_id "power:GND") (at 105.156 102.108 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 02b1295e-cf95-47ff-9c57-f8ada28f2e94)
(property "Reference" "#PWR07" (id 0) (at 105.156 108.458 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 105.156 106.6705 0))
(property "Footprint" "" (id 2) (at 105.156 102.108 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 105.156 102.108 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 69f75991-c8c0-49a9-aed8-daa6ca9a5d73))
)
(symbol (lib_id "power:GND") (at 120.904 101.854 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 14a3cbec-b1b9-4736-8e00-ba5be98954ab)
(property "Reference" "#PWR05" (id 0) (at 120.904 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 120.904 106.4165 0))
(property "Footprint" "" (id 2) (at 120.904 101.854 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 120.904 101.854 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9fa58e42-4d1f-4e7f-a5a2-6fc9857446e3))
)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 100.076 85.598 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1d6518e1-cfe9-4078-adc2-cf8e6477b5cb)
(property "Reference" "J1" (id 0) (at 100.076 80.5965 0))
(property "Value" "Conn_01x04" (id 1) (at 100.076 80.5966 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal" (id 2) (at 100.076 85.598 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 100.076 85.598 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0df798c0-963e-4340-a737-18e50763521e))
(pin "2" (uuid 8e1983d7-818b-423d-95d2-7f219e4f6ba3))
(pin "3" (uuid 6d646c30-feab-4e3e-adf0-5427b73b5f08))
(pin "4" (uuid 3f206607-332e-4c96-8963-5302804f476f))
)
(symbol (lib_id "power:GND") (at 111.76 102.108 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2e0f69a6-955c-44f2-af4d-b4ad566ef54b)
(property "Reference" "#PWR08" (id 0) (at 111.76 108.458 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 111.76 106.6705 0))
(property "Footprint" "" (id 2) (at 111.76 102.108 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 111.76 102.108 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 296ded40-ed53-4798-8db4-dad7b794226b))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 188.214 124.714 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3fcf191e-cd72-42e4-a9e1-c98dad5e982c)
(property "Reference" "J5" (id 0) (at 188.214 119.7125 0))
(property "Value" "Conn_01x02" (id 1) (at 190.246 121.5774 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (id 2) (at 188.214 124.714 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 188.214 124.714 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 408ecb62-5855-46f4-b938-61478a781515))
(pin "2" (uuid 1512b437-e608-480d-9216-180d37bc381d))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 188.214 113.538 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 53987059-06e6-4d5a-b056-eb5323cbbbc5)
(property "Reference" "J4" (id 0) (at 188.214 108.5365 0))
(property "Value" "Conn_01x02" (id 1) (at 190.246 110.4014 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (id 2) (at 188.214 113.538 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 188.214 113.538 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid da9f6783-f554-4285-88bc-8176a0da6895))
(pin "2" (uuid d8edee4e-b03e-4566-8ba4-dd3cc205d584))
)
(symbol (lib_id "power:GND") (at 88.392 97.536 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5b867f3d-ce38-4d21-95dd-fe114f76e9dc)
(property "Reference" "#PWR04" (id 0) (at 88.392 103.886 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 88.392 102.0985 0))
(property "Footprint" "" (id 2) (at 88.392 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 88.392 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5080cf4c-abda-4232-b279-44d0e6b9bde3))
)
(symbol (lib_id "Device:C_Small") (at 136.652 76.962 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
(property "Reference" "C1" (id 0) (at 134.366 75.438 90))
(property "Value" "100n" (id 1) (at 139.446 75.438 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 136.652 76.962 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 136.652 76.962 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bf4036b4-c410-489a-b46c-abee2c31db09))
(pin "2" (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9))
)
(symbol (lib_id "power:GND") (at 140.462 76.962 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 653a86ba-a1ae-4175-9d4c-c788087956d0)
(property "Reference" "#PWR01" (id 0) (at 146.812 76.962 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 143.637 77.441 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 140.462 76.962 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 140.462 76.962 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333))
)
(symbol (lib_id "power:VCC") (at 88.392 80.518 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 7147b342-4ca8-4694-a1ec-b615c151a5d0)
(property "Reference" "#PWR02" (id 0) (at 88.392 84.328 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 88.392 76.9135 0))
(property "Footprint" "" (id 2) (at 88.392 80.518 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 88.392 80.518 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 226f524c-89b4-46ed-86fd-c8ea41059fd4))
)
(symbol (lib_id "Device:D_TVS") (at 111.76 97.028 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 76862e4a-1816-475c-9943-666036c637f7)
(property "Reference" "D2" (id 0) (at 113.792 96.1195 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BV05C" (id 1) (at 112.522 100.584 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 111.76 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 111.76 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57121f1d-c971-4830-b974-00f7d706f0c9))
(pin "2" (uuid ec13b96e-bc69-4de2-80ef-a515cc44afb5))
)
(symbol (lib_id "Device:D_TVS") (at 128.778 97.028 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 8eacb9d3-c41d-4b39-abd1-0bc8f2e97411)
(property "Reference" "D4" (id 0) (at 130.81 96.1195 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BV05C" (id 1) (at 129.54 100.584 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 128.778 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 128.778 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b4afdd30-7a78-4cd8-8670-bb6dd787dcdc))
(pin "2" (uuid f46fb303-7470-41c0-b6e8-4553c1d6503f))
)
(symbol (lib_id "Mechanical:MountingHole") (at 207.264 72.644 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 91f4e768-dcf5-49ba-80cd-0c050f801a74)
(property "Reference" "H4" (id 0) (at 209.804 71.7355 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 209.804 74.5106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 207.264 72.644 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 207.264 72.644 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 188.214 91.694 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
(property "Reference" "J2" (id 0) (at 188.214 86.6925 0))
(property "Value" "Conn_01x02" (id 1) (at 190.246 88.5574 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (id 2) (at 188.214 91.694 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 188.214 91.694 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f))
(pin "2" (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a))
)
(symbol (lib_id "Device:LED") (at 88.392 92.456 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 9d2af601-5327-4706-9acb-978b65e95af5)
(property "Reference" "D1" (id 0) (at 91.313 93.135 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "LED" (id 1) (at 91.313 95.9101 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 88.392 92.456 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 88.392 92.456 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00))
(pin "2" (uuid 4c069f0b-8c76-44a0-a999-7bd72a3e8dee))
)
(symbol (lib_id "power:GND") (at 128.778 101.854 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid ac81fb15-6f1a-451b-a962-fb87ffd26f6b)
(property "Reference" "#PWR06" (id 0) (at 128.778 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 128.778 106.4165 0))
(property "Footprint" "" (id 2) (at 128.778 101.854 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.778 101.854 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 741879e3-3045-40c7-849d-7f437c35ee91))
)
(symbol (lib_id "Device:C_Small") (at 136.652 81.28 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid af6ac8e6-193c-4bd2-ac0b-7f515b538a8b)
(property "Reference" "C2" (id 0) (at 134.366 80.01 90))
(property "Value" "100n" (id 1) (at 139.446 79.756 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 136.652 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 136.652 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b6dda98-f455-4961-854e-3c4cceecffcc))
(pin "2" (uuid 42f10020-b50a-4739-a546-6b63e441c980))
)
(symbol (lib_id "power:GND") (at 140.462 81.28 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c66a19ed-90c0-4502-ae75-6a4c4ab9f297)
(property "Reference" "#PWR03" (id 0) (at 146.812 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 143.637 81.759 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 140.462 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 140.462 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8eb98c56-17e4-4de6-a3e3-06dcfa392040))
)
(symbol (lib_id "Mechanical:MountingHole") (at 198.628 72.644 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid d1ade60f-4981-42e7-a690-5438b0b6ea12)
(property "Reference" "H3" (id 0) (at 201.168 71.7355 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 201.168 74.5106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 198.628 72.644 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 198.628 72.644 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Device:D_TVS") (at 120.904 97.028 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid e0692317-3143-4681-97c6-8fbe46592f31)
(property "Reference" "D3" (id 0) (at 122.936 96.1195 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BV05C" (id 1) (at 121.666 100.584 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 120.904 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.904 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)