-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutputs.kicad_sch
2351 lines (2294 loc) · 80.3 KB
/
Outputs.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 46c9691c-6953-424f-9638-7444cd6cf284)
(paper "A4")
(lib_symbols
(symbol "Device:D_Filled" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Filled" (at 0 -2.54 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 "Sim.Device" "D" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=K 2=A" (at 0 0 0)
(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, filled shape" (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_Filled_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(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))
(fill (type outline))
)
)
(symbol "D_Filled_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" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "chips:VNLD5160" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 6.35 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNLD5160TR-E" (at 12.7 -11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 13.97 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C377942" (at 11.43 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VNLD5160_1_1"
(rectangle (start 5.08 2.54) (end 22.86 -10.16)
(stroke (width 0) (type default))
(fill (type background))
)
(pin input line (at 0 0 0) (length 5.08)
(name "IN1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 0 -2.54 0) (length 5.08)
(name "STATUS1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -5.08 0) (length 5.08)
(name "IN2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 0 -7.62 0) (length 5.08)
(name "STATUS2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 27.94 -7.62 180) (length 5.08)
(name "S2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 27.94 -5.08 180) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 27.94 -2.54 180) (length 5.08)
(name "S1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 27.94 0 180) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "misc:+12V_RAW" (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" "+12V_RAW" (at 0 3.556 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 \"+12V_RAW\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_RAW_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 "+12V_RAW_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V_RAW" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (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" "global power" (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))))
)
)
)
)
(junction (at 105.41 86.36) (diameter 0) (color 0 0 0 0)
(uuid 0f9e743a-316f-4d78-a946-a075543cb79d)
)
(junction (at 240.03 95.25) (diameter 0) (color 0 0 0 0)
(uuid 1c3d6503-726d-4a9d-a72e-3736c17b668e)
)
(junction (at 52.07 86.36) (diameter 0) (color 0 0 0 0)
(uuid 231cb423-1a82-466e-ac9f-e3d4b89f2d4c)
)
(junction (at 189.23 95.25) (diameter 0) (color 0 0 0 0)
(uuid 2f259ff5-77f2-4153-8232-0012b8261800)
)
(junction (at 58.42 53.34) (diameter 0) (color 0 0 0 0)
(uuid 371e72fb-c263-4b31-85f4-442fcebb74c5)
)
(junction (at 99.06 93.98) (diameter 0) (color 0 0 0 0)
(uuid 439c5853-9482-4c53-ac10-8976c2ba1140)
)
(junction (at 106.68 48.26) (diameter 0) (color 0 0 0 0)
(uuid 5fd8ea28-6159-4f9c-bafd-6e9f97d96c13)
)
(junction (at 50.8 127) (diameter 0) (color 0 0 0 0)
(uuid 61ba5f92-f1f9-4611-aa32-f30df425a7cf)
)
(junction (at 226.06 57.15) (diameter 0) (color 0 0 0 0)
(uuid 62b872ba-a303-49db-8cc4-9bf3db9b902e)
)
(junction (at 50.8 48.26) (diameter 0) (color 0 0 0 0)
(uuid 71fe2a69-882e-413c-8099-d9b67d48c26d)
)
(junction (at 104.14 132.08) (diameter 0) (color 0 0 0 0)
(uuid 729f2f5a-af2f-4ba2-bb30-5f00141a16c0)
)
(junction (at 104.14 127) (diameter 0) (color 0 0 0 0)
(uuid 73a730f0-df7d-4546-b6a0-45b444218571)
)
(junction (at 186.69 54.61) (diameter 0) (color 0 0 0 0)
(uuid 7c085a4a-760b-4503-b944-95de4a1fc76a)
)
(junction (at 106.68 53.34) (diameter 0) (color 0 0 0 0)
(uuid 89dacb42-02a4-417c-b632-78abd6a3c20d)
)
(junction (at 97.79 55.88) (diameter 0) (color 0 0 0 0)
(uuid b04fa772-2793-429d-8d07-bc727034bb84)
)
(junction (at 97.79 134.62) (diameter 0) (color 0 0 0 0)
(uuid b809153b-885c-499e-9fa0-6806d54e24f9)
)
(junction (at 237.49 49.53) (diameter 0) (color 0 0 0 0)
(uuid cd123a28-00cf-4d56-8f9a-8d823a901a11)
)
(junction (at 240.03 90.17) (diameter 0) (color 0 0 0 0)
(uuid d0a1fbc8-69a4-4544-9a37-390642cd0dd8)
)
(junction (at 237.49 54.61) (diameter 0) (color 0 0 0 0)
(uuid d293dc1f-8d48-44e2-a7f2-8ee1ee209069)
)
(junction (at 228.6 97.79) (diameter 0) (color 0 0 0 0)
(uuid d8abca70-daba-46dd-9164-d50dd039bd85)
)
(junction (at 59.69 91.44) (diameter 0) (color 0 0 0 0)
(uuid db3f4981-2bb7-4ec9-940a-2e66be7b6953)
)
(junction (at 181.61 90.17) (diameter 0) (color 0 0 0 0)
(uuid db6ed2e6-395f-439d-b790-1c593b6822ef)
)
(junction (at 179.07 49.53) (diameter 0) (color 0 0 0 0)
(uuid deb07e61-ba37-4573-b6e2-dc6254e0003a)
)
(junction (at 105.41 91.44) (diameter 0) (color 0 0 0 0)
(uuid eb520006-f3bc-4953-a9f5-5a03f432af4a)
)
(junction (at 58.42 132.08) (diameter 0) (color 0 0 0 0)
(uuid f8826362-7407-498f-b800-8221f1240032)
)
(no_connect (at 64.77 134.62) (uuid 032204ec-b6fc-4b27-b988-3b023fb42b62))
(no_connect (at 193.04 52.07) (uuid 27d28631-7cbc-4d28-99b2-8e0dd47aa581))
(no_connect (at 66.04 88.9) (uuid 2bcbe034-df34-4b8b-8f27-da19c2fc05d7))
(no_connect (at 64.77 55.88) (uuid 31069d28-3279-4aa3-8620-eb2d1eb229e9))
(no_connect (at 193.04 57.15) (uuid 3a285ab1-5a3e-4dc0-bed4-825cd977be9c))
(no_connect (at 64.77 50.8) (uuid 3d8ad446-b71b-464f-8439-9ab595cfe187))
(no_connect (at 64.77 129.54) (uuid 642c6429-ef17-4d9d-8fd4-8d3d8d61ab7c))
(no_connect (at 195.58 92.71) (uuid 7f8229dd-f707-49c6-bfb2-ee9d6c90f530))
(no_connect (at 66.04 93.98) (uuid d1e59d6b-0971-4e5e-819d-f3692fc0ab2b))
(no_connect (at 195.58 97.79) (uuid e90515fd-63fe-4a36-8184-981b2fcfcbe4))
(wire (pts (xy 220.98 49.53) (xy 237.49 49.53))
(stroke (width 0) (type default))
(uuid 04cfcf79-d04e-4eab-9ea4-15117c6a24b0)
)
(wire (pts (xy 106.68 123.19) (xy 104.14 123.19))
(stroke (width 0) (type default))
(uuid 07bfd3a4-922c-4659-881e-3d2bf3221973)
)
(wire (pts (xy 257.81 86.36) (xy 257.81 83.82))
(stroke (width 0) (type default))
(uuid 090a0f79-5a7e-4a4a-b59b-8a8ccfbc18c9)
)
(wire (pts (xy 97.79 129.54) (xy 97.79 134.62))
(stroke (width 0) (type default))
(uuid 0b6b6f66-8b8b-4be2-a7e3-4c039c5dc6a3)
)
(wire (pts (xy 109.22 63.5) (xy 106.68 63.5))
(stroke (width 0) (type default))
(uuid 0d93c915-665e-4169-a47c-9fda312f5dfb)
)
(wire (pts (xy 179.07 49.53) (xy 193.04 49.53))
(stroke (width 0) (type default))
(uuid 0e2aabdf-9a99-4fc5-abed-6886a87e9dab)
)
(wire (pts (xy 240.03 86.36) (xy 240.03 90.17))
(stroke (width 0) (type default))
(uuid 0fd086fc-a7f3-4b8a-8e56-fde31dcc8f31)
)
(wire (pts (xy 181.61 105.41) (xy 181.61 107.95))
(stroke (width 0) (type default))
(uuid 14f05d49-a29b-4005-a902-57383661730d)
)
(wire (pts (xy 104.14 132.08) (xy 104.14 142.24))
(stroke (width 0) (type default))
(uuid 153d23de-63b9-4fdf-96b4-5d36c29cbd92)
)
(wire (pts (xy 116.84 43.18) (xy 124.46 43.18))
(stroke (width 0) (type default))
(uuid 15871b6e-79c4-4467-bd41-e7c607aab8df)
)
(wire (pts (xy 115.57 82.55) (xy 123.19 82.55))
(stroke (width 0) (type default))
(uuid 15ddbbae-8a2d-4d52-b274-c6b095f023b8)
)
(wire (pts (xy 50.8 127) (xy 50.8 134.62))
(stroke (width 0) (type default))
(uuid 17ff18de-871b-4ce4-b306-c1680cc31e2b)
)
(wire (pts (xy 114.3 123.19) (xy 121.92 123.19))
(stroke (width 0) (type default))
(uuid 1800f831-4358-4b79-b165-bf969d4731da)
)
(wire (pts (xy 92.71 127) (xy 104.14 127))
(stroke (width 0) (type default))
(uuid 18ec62c2-7e0f-4c71-92fd-135f65c3c634)
)
(wire (pts (xy 99.06 93.98) (xy 99.06 104.14))
(stroke (width 0) (type default))
(uuid 19fa8bfd-30da-4b87-aa7f-181303ad86c1)
)
(wire (pts (xy 240.03 95.25) (xy 240.03 105.41))
(stroke (width 0) (type default))
(uuid 1a64b937-e6e0-4d66-8a75-452291b5e3a1)
)
(wire (pts (xy 40.64 127) (xy 50.8 127))
(stroke (width 0) (type default))
(uuid 2148fc37-3882-4ff4-90c5-e6b074040e3a)
)
(wire (pts (xy 189.23 95.25) (xy 189.23 97.79))
(stroke (width 0) (type default))
(uuid 21a71e6c-5597-4d93-add4-1fed78a4adc2)
)
(wire (pts (xy 220.98 54.61) (xy 237.49 54.61))
(stroke (width 0) (type default))
(uuid 22ac9ae0-34b1-4ec8-9238-b99bf0b96412)
)
(wire (pts (xy 220.98 57.15) (xy 226.06 57.15))
(stroke (width 0) (type default))
(uuid 25ed98fd-a25e-4fe4-9400-ccbe70ce9df1)
)
(wire (pts (xy 92.71 53.34) (xy 106.68 53.34))
(stroke (width 0) (type default))
(uuid 2694d589-3c92-42e1-a41e-9d2e939fe99b)
)
(wire (pts (xy 106.68 43.18) (xy 106.68 48.26))
(stroke (width 0) (type default))
(uuid 26f490f3-b341-40f7-9ef8-70ef0dcb6aa9)
)
(wire (pts (xy 93.98 93.98) (xy 99.06 93.98))
(stroke (width 0) (type default))
(uuid 282c8330-f6d6-4d38-a6c6-5610769852ba)
)
(wire (pts (xy 114.3 142.24) (xy 121.92 142.24))
(stroke (width 0) (type default))
(uuid 298aa5b2-d026-4f9f-9771-6881f5212f2d)
)
(wire (pts (xy 168.91 49.53) (xy 179.07 49.53))
(stroke (width 0) (type default))
(uuid 2f4325db-9462-4839-946e-81786b27134d)
)
(wire (pts (xy 247.65 64.77) (xy 255.27 64.77))
(stroke (width 0) (type default))
(uuid 303954ee-b780-4b5d-a1f9-fee7632fca9b)
)
(wire (pts (xy 58.42 53.34) (xy 58.42 55.88))
(stroke (width 0) (type default))
(uuid 31897dc0-20b3-4a10-aef2-48159868a1f0)
)
(wire (pts (xy 40.64 53.34) (xy 58.42 53.34))
(stroke (width 0) (type default))
(uuid 3391dace-4706-45da-aae3-36ad5bd60134)
)
(wire (pts (xy 168.91 54.61) (xy 186.69 54.61))
(stroke (width 0) (type default))
(uuid 3f4f0000-2aad-4a6f-a171-718f12a8fe5c)
)
(wire (pts (xy 92.71 129.54) (xy 97.79 129.54))
(stroke (width 0) (type default))
(uuid 3f540732-6aa3-4f4b-bbe3-3dc318dd46a2)
)
(wire (pts (xy 237.49 54.61) (xy 237.49 64.77))
(stroke (width 0) (type default))
(uuid 40f0883a-1f70-43b9-ba02-c40da0b2f34a)
)
(wire (pts (xy 97.79 50.8) (xy 97.79 55.88))
(stroke (width 0) (type default))
(uuid 419fe92e-2f6d-4106-b015-3105477cb26b)
)
(wire (pts (xy 92.71 50.8) (xy 97.79 50.8))
(stroke (width 0) (type default))
(uuid 41cf97f9-3c60-44ab-abe9-279c0e1f227a)
)
(wire (pts (xy 41.91 91.44) (xy 59.69 91.44))
(stroke (width 0) (type default))
(uuid 435bffa0-4814-445d-8695-ec6b07466b92)
)
(wire (pts (xy 121.92 123.19) (xy 121.92 120.65))
(stroke (width 0) (type default))
(uuid 4476d9ad-e6e6-49a2-bf8c-15502bb50966)
)
(wire (pts (xy 181.61 90.17) (xy 181.61 97.79))
(stroke (width 0) (type default))
(uuid 44d4ca1b-7d61-4dc9-8f1e-eef59a1ad16f)
)
(wire (pts (xy 92.71 134.62) (xy 97.79 134.62))
(stroke (width 0) (type default))
(uuid 46b8a471-ac7c-4bd3-bd60-d13713a3692d)
)
(wire (pts (xy 223.52 90.17) (xy 240.03 90.17))
(stroke (width 0) (type default))
(uuid 5185649b-0076-4fd6-a94f-520053d6d88f)
)
(wire (pts (xy 240.03 95.25) (xy 255.27 95.25))
(stroke (width 0) (type default))
(uuid 52964f40-e5dc-46e7-9551-808ce20ce7e6)
)
(wire (pts (xy 255.27 64.77) (xy 255.27 62.23))
(stroke (width 0) (type default))
(uuid 59da64b5-2ff4-4b42-9a4d-841c48b2371d)
)
(wire (pts (xy 179.07 49.53) (xy 179.07 57.15))
(stroke (width 0) (type default))
(uuid 5cc42a60-787f-4865-bf5f-86eee7614b1d)
)
(wire (pts (xy 116.84 63.5) (xy 124.46 63.5))
(stroke (width 0) (type default))
(uuid 5db83aa8-6f9e-4a77-8d72-ba3fe878938e)
)
(wire (pts (xy 104.14 123.19) (xy 104.14 127))
(stroke (width 0) (type default))
(uuid 5ea4b60b-943b-4963-82b1-7abe91f6c49e)
)
(wire (pts (xy 59.69 91.44) (xy 66.04 91.44))
(stroke (width 0) (type default))
(uuid 5fc00095-e755-40cf-b149-96730a3fc63c)
)
(wire (pts (xy 92.71 132.08) (xy 104.14 132.08))
(stroke (width 0) (type default))
(uuid 621da0c7-d9cb-46ed-ae63-0bf2097f0d4c)
)
(wire (pts (xy 97.79 55.88) (xy 97.79 66.04))
(stroke (width 0) (type default))
(uuid 645f8f80-83ed-4ecf-87e9-460017557300)
)
(wire (pts (xy 189.23 95.25) (xy 195.58 95.25))
(stroke (width 0) (type default))
(uuid 64752f2e-0cf9-4210-844d-dcee42434c3b)
)
(wire (pts (xy 255.27 45.72) (xy 255.27 43.18))
(stroke (width 0) (type default))
(uuid 69cff6f0-788d-4380-9027-c4cf3aaf1417)
)
(wire (pts (xy 226.06 57.15) (xy 226.06 67.31))
(stroke (width 0) (type default))
(uuid 6bd44761-3166-42a0-a2e7-4087952b97b1)
)
(wire (pts (xy 124.46 63.5) (xy 124.46 60.96))
(stroke (width 0) (type default))
(uuid 6cd91c03-d10a-4481-8c8d-d0c9d4b877ab)
)
(wire (pts (xy 247.65 45.72) (xy 255.27 45.72))
(stroke (width 0) (type default))
(uuid 6f751525-ed17-44eb-b6cf-f2fa45f3fc0b)
)
(wire (pts (xy 104.14 127) (xy 118.11 127))
(stroke (width 0) (type default))
(uuid 703adfa3-9176-4ff7-b676-ecc84d04cb82)
)
(wire (pts (xy 58.42 63.5) (xy 58.42 66.04))
(stroke (width 0) (type default))
(uuid 717c2c30-9c2f-46bc-beb9-4db19ab54fa1)
)
(wire (pts (xy 106.68 142.24) (xy 104.14 142.24))
(stroke (width 0) (type default))
(uuid 7724c61b-fd28-4c65-8ffa-b4198eb25143)
)
(wire (pts (xy 226.06 52.07) (xy 226.06 57.15))
(stroke (width 0) (type default))
(uuid 7ba2fd4a-4cc2-4dc0-9d01-3ca1f29e9c61)
)
(wire (pts (xy 189.23 105.41) (xy 189.23 107.95))
(stroke (width 0) (type default))
(uuid 7cb93959-97e4-4fb5-9773-974b9b977af8)
)
(wire (pts (xy 50.8 48.26) (xy 64.77 48.26))
(stroke (width 0) (type default))
(uuid 7d68ae0a-e6c0-4602-a343-6939eded0867)
)
(wire (pts (xy 121.92 142.24) (xy 121.92 139.7))
(stroke (width 0) (type default))
(uuid 7eb3c4c9-e4ce-4dd1-b976-461b4bd9f507)
)
(wire (pts (xy 92.71 48.26) (xy 106.68 48.26))
(stroke (width 0) (type default))
(uuid 84e97d19-4936-4a8e-a834-d0417cf0adbc)
)
(wire (pts (xy 104.14 132.08) (xy 118.11 132.08))
(stroke (width 0) (type default))
(uuid 8518870d-9c64-458e-b52e-e997d08dd570)
)
(wire (pts (xy 58.42 132.08) (xy 64.77 132.08))
(stroke (width 0) (type default))
(uuid 854c10b1-9fc7-49f4-aa9c-0da47e9f1148)
)
(wire (pts (xy 107.95 82.55) (xy 105.41 82.55))
(stroke (width 0) (type default))
(uuid 897cd38e-24fd-4f62-9480-19dfe6f66905)
)
(wire (pts (xy 59.69 101.6) (xy 59.69 104.14))
(stroke (width 0) (type default))
(uuid 8a9e4ccb-427b-4477-8329-45e14e7fb835)
)
(wire (pts (xy 52.07 101.6) (xy 52.07 104.14))
(stroke (width 0) (type default))
(uuid 8d016c97-647f-4a3b-b853-d8df85e11582)
)
(wire (pts (xy 250.19 105.41) (xy 257.81 105.41))
(stroke (width 0) (type default))
(uuid 8d233caa-c163-49c8-8270-027571ad307d)
)
(wire (pts (xy 106.68 53.34) (xy 106.68 63.5))
(stroke (width 0) (type default))
(uuid 8ef26ba2-256b-4250-a131-9727082f8d55)
)
(wire (pts (xy 93.98 88.9) (xy 99.06 88.9))
(stroke (width 0) (type default))
(uuid 9094aaee-4314-467a-964f-6dae8ea90509)
)
(wire (pts (xy 50.8 63.5) (xy 50.8 66.04))
(stroke (width 0) (type default))
(uuid 91a3f15c-7abd-47a2-be8d-be4bc176c54a)
)
(wire (pts (xy 107.95 101.6) (xy 105.41 101.6))
(stroke (width 0) (type default))
(uuid 938556fb-dbfb-49c5-a35c-41955534cb9a)
)
(wire (pts (xy 58.42 132.08) (xy 58.42 134.62))
(stroke (width 0) (type default))
(uuid 96e7edf3-6c4f-4b0f-bb15-1e1977d58786)
)
(wire (pts (xy 237.49 45.72) (xy 237.49 49.53))
(stroke (width 0) (type default))
(uuid 98a546ed-27bb-4ad8-ba5a-c83cd5b4c3fc)
)
(wire (pts (xy 97.79 134.62) (xy 97.79 144.78))
(stroke (width 0) (type default))
(uuid 9d898bb8-958c-4225-893f-16610dbcbabf)
)
(wire (pts (xy 40.64 48.26) (xy 50.8 48.26))
(stroke (width 0) (type default))
(uuid 9fdaf4af-233a-4e2e-b85e-7af5f3d10bc3)
)
(wire (pts (xy 223.52 92.71) (xy 228.6 92.71))
(stroke (width 0) (type default))
(uuid a241f693-df57-441c-8e93-ae17cde23308)
)
(wire (pts (xy 250.19 86.36) (xy 257.81 86.36))
(stroke (width 0) (type default))
(uuid a39f1d9b-6795-47e2-8422-7cebd712339e)
)
(wire (pts (xy 240.03 90.17) (xy 255.27 90.17))
(stroke (width 0) (type default))
(uuid a57a3dae-320f-4362-95eb-de61a7d5864c)
)
(wire (pts (xy 179.07 64.77) (xy 179.07 67.31))
(stroke (width 0) (type default))
(uuid a7b3c93f-4d1c-427d-84cc-2823513b4c6f)
)
(wire (pts (xy 52.07 86.36) (xy 66.04 86.36))
(stroke (width 0) (type default))
(uuid a8c57187-42f3-4d3e-9c5e-f5b6b194a8dd)
)
(wire (pts (xy 237.49 54.61) (xy 252.73 54.61))
(stroke (width 0) (type default))
(uuid ab8b7445-81d7-45db-b487-b471c1ee4567)
)
(wire (pts (xy 171.45 90.17) (xy 181.61 90.17))
(stroke (width 0) (type default))
(uuid acac2fc6-0da0-4261-b824-f014b1249180)
)
(wire (pts (xy 109.22 43.18) (xy 106.68 43.18))
(stroke (width 0) (type default))
(uuid afbfb1e2-0f87-47a1-8896-8f4bea6cf07c)
)
(wire (pts (xy 52.07 86.36) (xy 52.07 93.98))
(stroke (width 0) (type default))
(uuid b02def7f-dfb1-48b1-a6a3-4c9e79266826)
)
(wire (pts (xy 99.06 88.9) (xy 99.06 93.98))
(stroke (width 0) (type default))
(uuid b1aeec8b-6bb4-4e01-a4c4-6aa0640c7c61)
)
(wire (pts (xy 58.42 53.34) (xy 64.77 53.34))
(stroke (width 0) (type default))
(uuid b2c5cb80-1c2a-47d0-8ac6-8c8caae25c50)
)
(wire (pts (xy 240.03 64.77) (xy 237.49 64.77))
(stroke (width 0) (type default))
(uuid b4b85d46-96e0-4c28-8ac1-164224ddee13)
)
(wire (pts (xy 50.8 127) (xy 64.77 127))
(stroke (width 0) (type default))
(uuid b72de5be-3b32-4627-899f-d2ecf96a4b65)
)
(wire (pts (xy 171.45 95.25) (xy 189.23 95.25))
(stroke (width 0) (type default))
(uuid b7881852-be3a-45db-9152-a28cb2b48efc)
)
(wire (pts (xy 41.91 86.36) (xy 52.07 86.36))
(stroke (width 0) (type default))
(uuid b9887753-8acd-4f64-9568-3b4cb2c207f1)
)
(wire (pts (xy 123.19 101.6) (xy 123.19 99.06))
(stroke (width 0) (type default))
(uuid ba66afcc-e97a-49ab-8d79-8236e799d166)
)
(wire (pts (xy 50.8 48.26) (xy 50.8 55.88))
(stroke (width 0) (type default))
(uuid bb30b37a-c327-48de-9c7f-6e2243873359)
)
(wire (pts (xy 58.42 142.24) (xy 58.42 144.78))
(stroke (width 0) (type default))
(uuid bb47c9ee-4bf6-4922-9b67-56628faeae96)
)
(wire (pts (xy 93.98 86.36) (xy 105.41 86.36))
(stroke (width 0) (type default))
(uuid bc077bc8-7ad0-4805-99b9-00e9c7219f36)
)
(wire (pts (xy 257.81 105.41) (xy 257.81 102.87))
(stroke (width 0) (type default))
(uuid bc5049a3-95a9-417b-b718-46afd63c8682)
)
(wire (pts (xy 92.71 55.88) (xy 97.79 55.88))
(stroke (width 0) (type default))
(uuid befc31d7-541b-45bc-8c71-b5975f91f457)
)
(wire (pts (xy 242.57 105.41) (xy 240.03 105.41))
(stroke (width 0) (type default))
(uuid c238fbfe-7e46-49b3-9135-852e5eb483c2)
)
(wire (pts (xy 237.49 49.53) (xy 252.73 49.53))
(stroke (width 0) (type default))
(uuid c62dc088-f705-4f2a-9a5d-55303a964983)
)
(wire (pts (xy 124.46 43.18) (xy 124.46 40.64))
(stroke (width 0) (type default))
(uuid ca8a6af0-fcdd-4bcc-9ed8-bd3421eb054d)
)
(wire (pts (xy 242.57 86.36) (xy 240.03 86.36))
(stroke (width 0) (type default))
(uuid d047ac2f-33a9-4d59-9f4e-2fbec6a38956)
)
(wire (pts (xy 105.41 91.44) (xy 119.38 91.44))
(stroke (width 0) (type default))
(uuid d0f0f1ae-3b55-4871-8229-a3fb5b8add46)
)
(wire (pts (xy 123.19 82.55) (xy 123.19 80.01))
(stroke (width 0) (type default))
(uuid d34e9023-032c-4d95-a6d5-321fe3bbc3de)
)
(wire (pts (xy 115.57 101.6) (xy 123.19 101.6))
(stroke (width 0) (type default))
(uuid d8bb981c-4a07-441e-a04f-1de3dd21706f)
)
(wire (pts (xy 105.41 86.36) (xy 119.38 86.36))
(stroke (width 0) (type default))
(uuid d9d82c57-9fbc-4255-bebe-d3a25bbcbdad)
)
(wire (pts (xy 220.98 52.07) (xy 226.06 52.07))
(stroke (width 0) (type default))
(uuid da3e8517-0850-4257-beae-7e66b8eb8072)
)
(wire (pts (xy 106.68 48.26) (xy 118.11 48.26))
(stroke (width 0) (type default))
(uuid dfa28fe0-9708-4c81-bbb7-019893a2141a)
)
(wire (pts (xy 50.8 142.24) (xy 50.8 144.78))
(stroke (width 0) (type default))
(uuid e03da464-0c54-469b-af19-b16f02cd2e52)
)
(wire (pts (xy 186.69 54.61) (xy 193.04 54.61))
(stroke (width 0) (type default))
(uuid e2afabe6-4fd3-4b9d-9363-89f44d446eb2)
)
(wire (pts (xy 40.64 132.08) (xy 58.42 132.08))
(stroke (width 0) (type default))
(uuid e3c9a175-7a12-4021-8bcf-86653a56e6ee)
)
(wire (pts (xy 59.69 91.44) (xy 59.69 93.98))
(stroke (width 0) (type default))
(uuid e4b3039f-6c22-470f-8a6f-e0075d5fc7d9)
)
(wire (pts (xy 223.52 97.79) (xy 228.6 97.79))
(stroke (width 0) (type default))
(uuid e75c89c7-9b31-495b-b0f7-f84369303e0b)
)
(wire (pts (xy 228.6 92.71) (xy 228.6 97.79))
(stroke (width 0) (type default))
(uuid e86db5c6-9260-48d2-9e36-6f2f86cb615b)
)
(wire (pts (xy 228.6 97.79) (xy 228.6 107.95))
(stroke (width 0) (type default))
(uuid eb22f6f6-6bcc-4e03-9224-f1f85cd78fd4)
)
(wire (pts (xy 105.41 91.44) (xy 105.41 101.6))
(stroke (width 0) (type default))
(uuid ec0f42b8-2d53-4c6c-8621-6e26362fceee)
)
(wire (pts (xy 223.52 95.25) (xy 240.03 95.25))
(stroke (width 0) (type default))
(uuid ed95ca2c-39e3-4181-a777-611b4e71f634)
)
(wire (pts (xy 186.69 64.77) (xy 186.69 67.31))
(stroke (width 0) (type default))
(uuid ee827910-c026-470f-af95-e7069a139253)
)
(wire (pts (xy 106.68 53.34) (xy 118.11 53.34))
(stroke (width 0) (type default))
(uuid fc100d92-3ab2-446a-b234-2d12947ed32c)
)
(wire (pts (xy 181.61 90.17) (xy 195.58 90.17))
(stroke (width 0) (type default))
(uuid fc5ea999-f82f-4829-9084-79656597928c)
)
(wire (pts (xy 93.98 91.44) (xy 105.41 91.44))
(stroke (width 0) (type default))
(uuid fc7a4e23-5ffb-4429-8e65-6ef7a8b8eb57)
)
(wire (pts (xy 240.03 45.72) (xy 237.49 45.72))
(stroke (width 0) (type default))
(uuid fd4344da-ee7f-43c8-baad-20a00a053354)
)
(wire (pts (xy 186.69 54.61) (xy 186.69 57.15))
(stroke (width 0) (type default))
(uuid ff5fa894-d759-43b5-abed-5933cda1df63)
)
(wire (pts (xy 105.41 82.55) (xy 105.41 86.36))
(stroke (width 0) (type default))
(uuid ff7f44f5-a6a3-4695-838e-5f57dd3f0798)
)
(hierarchical_label "OUT_5" (shape output) (at 118.11 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 09bbc92f-ba3e-4d6d-a9ad-bb142a6a2b8c)
)
(hierarchical_label "OUT_2" (shape output) (at 118.11 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1d9206b0-6253-4c2c-bb72-277077ab76c0)
)
(hierarchical_label "OUT_8" (shape output) (at 252.73 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3be6eab4-6d68-4556-9109-701fd9f60fcf)
)
(hierarchical_label "OUT_9" (shape output) (at 255.27 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4925eaf6-df21-4bbc-a9ed-bd7a7b37d164)
)
(hierarchical_label "OUT_1" (shape output) (at 118.11 48.26 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a52e34a-30c9-488c-abb0-0f54934f16b3)
)
(hierarchical_label "OUT_7" (shape output) (at 252.73 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 80d4e4f2-e452-47c9-811f-bf0c8d45d131)
)
(hierarchical_label "IN_3" (shape input) (at 41.91 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 82bd68da-ea6f-43f9-8699-fcca3dcdc19f)
)
(hierarchical_label "OUT_4" (shape output) (at 119.38 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 83e1fc85-4f6d-41f3-93f8-2fcaa9f7bdf5)
)
(hierarchical_label "IN_2" (shape input) (at 40.64 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8be6dc5d-132c-486b-9406-0c687a6dbfa3)
)
(hierarchical_label "IN_5" (shape input) (at 40.64 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 92127c3d-0f88-4c20-bce7-0694c9358621)
)
(hierarchical_label "IN_9" (shape input) (at 171.45 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 931b57d9-b56d-4776-b70a-19d9d6f0006e)
)
(hierarchical_label "OUT_6" (shape output) (at 118.11 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bdfdea70-3e59-4b10-99d5-ce696df45c3b)
)
(hierarchical_label "IN_6" (shape input) (at 40.64 132.08 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c156af15-03aa-42c9-977a-666c48d919ff)
)
(hierarchical_label "IN_8" (shape input) (at 168.91 54.61 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c193c980-6e63-47f9-8588-b5efc566d75d)
)
(hierarchical_label "OUT_3" (shape output) (at 119.38 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c596027d-418d-4413-8ab5-9b827d5e0340)
)
(hierarchical_label "IN_10" (shape input) (at 171.45 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e0d655c5-8710-4d2d-b238-ef0b516e4842)
)
(hierarchical_label "IN_7" (shape input) (at 168.91 49.53 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ef6a2938-8b5d-4ecd-80a0-d61ba639c670)
)
(hierarchical_label "IN_4" (shape input) (at 41.91 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f044ceb1-0376-4385-a681-e181686c9561)
)
(hierarchical_label "IN_1" (shape input) (at 40.64 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f61ac931-0d59-4c97-a3fa-672a1dc16b18)
)
(hierarchical_label "OUT_10" (shape output) (at 255.27 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f710dd81-48fe-477d-8089-d3d8ff21c788)
)
(symbol (lib_id "Device:R") (at 58.42 138.43 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 01dfc79d-e258-48b4-b9bd-21fd9460b790)
(property "Reference" "R7" (at 55.88 137.16 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7k" (at 58.42 135.89 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Hellen:R0603" (at 60.198 138.43 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 58.42 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23162" (at 58.42 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "2" (uuid 7e1ddfe5-c815-4c72-9ba5-576c266a174b))
(pin "1" (uuid 46fc61c2-e28f-42b4-a463-736ce163c5f1))
(instances
(project "PRODashController"
(path "/8d2f647f-791b-4ba3-a5ea-d879332c3be7/48fc93d5-4283-4d46-a238-b23f5d1ed293"
(reference "R7") (unit 1)
)
)
)
)
(symbol (lib_id "chips:VNLD5160") (at 64.77 48.26 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 033ebacc-c692-4e58-8e39-a54b2038638a)
(property "Reference" "U1" (at 78.74 40.64 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "VNLD5160TR-E" (at 78.74 43.18 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 78.74 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 64.77 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C377942" (at 76.2 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "4" (uuid aabd79d3-78ee-47e5-979a-bbd0d14e136e))
(pin "6" (uuid 44a5560c-553a-4dae-9bc3-50a2343fe11c))
(pin "3" (uuid 7f9ce619-0a9e-4855-9325-109f6b0168c0))
(pin "7" (uuid 509c5458-87d3-42a2-bf03-d5fe534885d4))
(pin "1" (uuid 3aaf02c8-474c-4443-8f85-69141c8e97af))
(pin "8" (uuid a13ab01b-e876-4eb4-a6aa-43fdfc3bf4de))
(pin "2" (uuid 874ff30e-4e3a-40ef-b437-5bda8f47dac9))
(pin "5" (uuid 84f16051-eabc-4da1-bf31-5bfe52c8e2fc))
(instances
(project "PRODashController"
(path "/8d2f647f-791b-4ba3-a5ea-d879332c3be7/48fc93d5-4283-4d46-a238-b23f5d1ed293"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 99.06 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 071c89ea-707c-4907-a97b-3cedcb53f494)
(property "Reference" "#PWR06" (at 99.06 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 99.06 107.95 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 99.06 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 99.06 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3ea97937-0503-4c3a-8c6f-93582464ba2e))
(instances
(project "PRODashController"
(path "/8d2f647f-791b-4ba3-a5ea-d879332c3be7/48fc93d5-4283-4d46-a238-b23f5d1ed293"
(reference "#PWR06") (unit 1)
)
)
)
)