-
Notifications
You must be signed in to change notification settings - Fork 5
/
knock.kicad_sch
1944 lines (1898 loc) · 68 KB
/
knock.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 6d025ced-6ac4-4b51-9abd-c7c1dda9f9b8)
(paper "A4")
(title_block
(title "Polygonus")
(date "2024-11-14")
(rev "v1.6.1")
(comment 2 "rusefi.com/s/proteus")
)
(lib_symbols
(symbol "Amplifier_Operational:MCP6004" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MCP6004" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "quad opamp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1MHz, Low-Power Op Amp, DIP-14/SOIC-14/TSSOP-14" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP6004_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP6004_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP6004_3_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP6004_4_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP6004_5_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -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 "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Jumper_NO_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Device_Jumper_NO_Small" (at 0.254 -1.524 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_fp_filters" "SolderJumper*Open* Jumper* TestPoint*2Pads* TestPoint*Bridge*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_NO_Small_0_1"
(circle (center -1.016 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.016 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -2.54 0 0) (length 1.016)
(name "1" (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.016)
(name "2" (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 "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(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 "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (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" "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))))
)
)
)
)
(junction (at 85.725 34.925) (diameter 0) (color 0 0 0 0)
(uuid 0b832a58-f83d-46d7-8219-03220e6bbced)
)
(junction (at 41.91 32.385) (diameter 0) (color 0 0 0 0)
(uuid 184b2fad-24f5-4073-ae78-9c4ec35fa867)
)
(junction (at 66.04 69.85) (diameter 0) (color 0 0 0 0)
(uuid 1eff450e-d239-4e31-9c3f-596e83e33a69)
)
(junction (at 120.015 34.925) (diameter 0) (color 0 0 0 0)
(uuid 33529587-bbb4-4ca0-bcdf-15fd64295461)
)
(junction (at 52.705 69.85) (diameter 0) (color 0 0 0 0)
(uuid 4227d0f4-4162-4ece-9ec9-195feb76c6dd)
)
(junction (at 41.275 69.85) (diameter 0) (color 0 0 0 0)
(uuid 6dd24007-4e31-4437-a050-fa6e699c9468)
)
(junction (at 120.015 59.055) (diameter 0) (color 0 0 0 0)
(uuid 850230a1-e985-4aec-bfc1-cca85f47f39d)
)
(junction (at 139.065 69.85) (diameter 0) (color 0 0 0 0)
(uuid 99e435f9-35c9-4f7b-81bb-55482767f5f5)
)
(junction (at 108.585 34.925) (diameter 0) (color 0 0 0 0)
(uuid 9a87bfc4-c304-4037-8ceb-f6545574a9e8)
)
(junction (at 97.155 72.39) (diameter 0) (color 0 0 0 0)
(uuid 9ab92207-1da7-4613-a632-d3972813f57b)
)
(junction (at 52.07 32.385) (diameter 0) (color 0 0 0 0)
(uuid a756a3d8-e7f6-433b-b40a-4f16e0acf771)
)
(junction (at 65.405 32.385) (diameter 0) (color 0 0 0 0)
(uuid c04eca05-a0f9-4bc2-a3af-c428ab1358bc)
)
(junction (at 120.015 21.59) (diameter 0) (color 0 0 0 0)
(uuid caa4298d-02d5-4f80-9b9d-47f1bd739f15)
)
(junction (at 37.465 95.885) (diameter 0) (color 0 0 0 0)
(uuid e74c1c14-2c10-4ed2-af66-d46451b14517)
)
(junction (at 97.155 34.925) (diameter 0) (color 0 0 0 0)
(uuid ed792a35-5756-44dd-82cf-7918ecc06d2f)
)
(junction (at 120.015 72.39) (diameter 0) (color 0 0 0 0)
(uuid f178515b-b448-485d-b4f3-17f976e8a7a0)
)
(junction (at 139.065 32.385) (diameter 0) (color 0 0 0 0)
(uuid f294a229-6752-4bf0-afcf-4e666738928a)
)
(junction (at 85.725 72.39) (diameter 0) (color 0 0 0 0)
(uuid f352e561-93ae-4eda-af14-a930a36aa74a)
)
(junction (at 108.585 72.39) (diameter 0) (color 0 0 0 0)
(uuid fbbacad4-e3d6-4bc2-a42d-a5503b96ba41)
)
(wire (pts (xy 52.07 36.83) (xy 52.07 32.385))
(stroke (width 0) (type default))
(uuid 022a97fa-643b-4302-b44c-26a956146db7)
)
(wire (pts (xy 60.96 74.93) (xy 68.58 74.93))
(stroke (width 0) (type default))
(uuid 02c86f21-caef-4fbc-95b0-d828a7114318)
)
(wire (pts (xy 41.91 36.83) (xy 41.91 32.385))
(stroke (width 0) (type default))
(uuid 05c1c0ae-f846-4942-b9ca-9f0f8f62492d)
)
(wire (pts (xy 65.405 20.955) (xy 67.945 20.955))
(stroke (width 0) (type default))
(uuid 09660697-d5c8-4aef-8c5c-0260789058fc)
)
(wire (pts (xy 108.585 21.59) (xy 108.585 34.925))
(stroke (width 0) (type default))
(uuid 0a742bb2-0657-47bc-9dea-e70308e1113a)
)
(wire (pts (xy 65.405 32.385) (xy 68.58 32.385))
(stroke (width 0) (type default))
(uuid 0cdebb81-7707-4273-b91b-84c97256655a)
)
(wire (pts (xy 121.92 72.39) (xy 120.015 72.39))
(stroke (width 0) (type default))
(uuid 11a85d83-ca23-4a66-9a7a-3b010acc3da7)
)
(wire (pts (xy 65.405 32.385) (xy 65.405 20.955))
(stroke (width 0) (type default))
(uuid 1748450e-a8ca-4e49-95b9-4d9e086df7db)
)
(wire (pts (xy 85.725 59.055) (xy 85.725 72.39))
(stroke (width 0) (type default))
(uuid 19aec941-d967-4940-a58a-9060a38854cb)
)
(wire (pts (xy 60.96 37.465) (xy 68.58 37.465))
(stroke (width 0) (type default))
(uuid 1c6434d3-2eb4-45c4-919b-76bc5df93b2a)
)
(wire (pts (xy 110.49 34.925) (xy 108.585 34.925))
(stroke (width 0) (type default))
(uuid 1cf58251-c1b2-4126-887d-6d7eeec86d3e)
)
(wire (pts (xy 52.705 69.85) (xy 55.245 69.85))
(stroke (width 0) (type default))
(uuid 1d27c77d-c33f-442a-bd7b-7b44d10eb43c)
)
(wire (pts (xy 50.8 69.85) (xy 52.705 69.85))
(stroke (width 0) (type default))
(uuid 1feb75da-52bc-4f54-bc22-6a4b1520ccea)
)
(wire (pts (xy 41.91 32.385) (xy 43.18 32.385))
(stroke (width 0) (type default))
(uuid 28c42959-8e72-4709-83e0-fbb99eade23c)
)
(wire (pts (xy 75.565 20.955) (xy 85.725 20.955))
(stroke (width 0) (type default))
(uuid 2ee514c3-8fe8-4bfc-bae8-2feff67b4a1c)
)
(wire (pts (xy 41.275 69.85) (xy 43.18 69.85))
(stroke (width 0) (type default))
(uuid 2efaba24-aee5-4bea-ae84-dbce9fb4b72e)
)
(wire (pts (xy 108.585 72.39) (xy 106.68 72.39))
(stroke (width 0) (type default))
(uuid 33e14999-b5ae-46d2-ac28-01787a512419)
)
(wire (pts (xy 46.99 95.885) (xy 37.465 95.885))
(stroke (width 0) (type default))
(uuid 3406438b-af44-4c6b-93b5-d0d24ae94a91)
)
(wire (pts (xy 139.065 21.59) (xy 139.065 32.385))
(stroke (width 0) (type default))
(uuid 345d0db5-afa8-4790-839b-293d8c7171b3)
)
(wire (pts (xy 44.45 73.66) (xy 41.275 73.66))
(stroke (width 0) (type default))
(uuid 362755ad-ea41-482e-bb23-627c6eb15a40)
)
(wire (pts (xy 121.92 34.925) (xy 120.015 34.925))
(stroke (width 0) (type default))
(uuid 36ab2ee8-a550-4312-900e-fe60a1ab52df)
)
(wire (pts (xy 121.92 67.31) (xy 120.015 67.31))
(stroke (width 0) (type default))
(uuid 40480825-a2e7-4339-bc0c-57c639418bad)
)
(wire (pts (xy 50.8 32.385) (xy 52.07 32.385))
(stroke (width 0) (type default))
(uuid 4371cedd-a894-45a7-8f2e-b664b567a667)
)
(wire (pts (xy 26.67 97.155) (xy 26.67 95.885))
(stroke (width 0) (type default))
(uuid 439a0826-2a4b-4f2a-9a85-b9cbf2766a09)
)
(wire (pts (xy 120.015 74.295) (xy 120.015 72.39))
(stroke (width 0) (type default))
(uuid 45d6e2c6-b846-4a31-b2e4-41223b271484)
)
(wire (pts (xy 139.065 32.385) (xy 137.16 32.385))
(stroke (width 0) (type default))
(uuid 46f1fe2c-bc01-4b14-852f-f73c7cee1411)
)
(wire (pts (xy 87.63 72.39) (xy 85.725 72.39))
(stroke (width 0) (type default))
(uuid 4c8413d4-dc71-4cd7-a62e-95ffe5554e70)
)
(wire (pts (xy 140.97 32.385) (xy 139.065 32.385))
(stroke (width 0) (type default))
(uuid 4ce03590-e0e1-4703-b46c-7b385c2aeba2)
)
(wire (pts (xy 76.835 59.055) (xy 85.725 59.055))
(stroke (width 0) (type default))
(uuid 4d4b0af0-8c15-45ad-960b-edd8bf430df4)
)
(wire (pts (xy 110.49 72.39) (xy 108.585 72.39))
(stroke (width 0) (type default))
(uuid 5e79d815-3e66-452c-bc9d-447f9c537736)
)
(wire (pts (xy 110.49 59.055) (xy 108.585 59.055))
(stroke (width 0) (type default))
(uuid 609c03aa-db26-47fb-b858-1a8c9396360a)
)
(wire (pts (xy 36.83 69.85) (xy 41.275 69.85))
(stroke (width 0) (type default))
(uuid 7bd6a5a6-975a-47f2-9ae0-724cced216ae)
)
(wire (pts (xy 26.67 95.885) (xy 37.465 95.885))
(stroke (width 0) (type default))
(uuid 7e11542a-c428-4e80-830e-94b7e05e0716)
)
(wire (pts (xy 97.155 72.39) (xy 99.06 72.39))
(stroke (width 0) (type default))
(uuid 818111a6-1429-497e-b8d7-f2616a7ec373)
)
(wire (pts (xy 66.04 69.85) (xy 68.58 69.85))
(stroke (width 0) (type default))
(uuid 8538d430-1fd4-494f-ab17-e95325a71380)
)
(wire (pts (xy 97.155 72.39) (xy 95.25 72.39))
(stroke (width 0) (type default))
(uuid 875855ef-0e49-4c33-b3c6-eba229f835d9)
)
(wire (pts (xy 44.45 36.83) (xy 41.91 36.83))
(stroke (width 0) (type default))
(uuid 8a51259a-0b00-485b-ae12-40bbbcbb1fbf)
)
(wire (pts (xy 83.82 34.925) (xy 85.725 34.925))
(stroke (width 0) (type default))
(uuid 8b0e77d6-7888-4840-a867-95c0b6bc01b5)
)
(wire (pts (xy 108.585 34.925) (xy 106.68 34.925))
(stroke (width 0) (type default))
(uuid 8b398452-7864-4ae1-87b2-f3c31f993db8)
)
(wire (pts (xy 120.015 36.83) (xy 120.015 34.925))
(stroke (width 0) (type default))
(uuid 906df0a0-5839-47c0-b332-cec00bfc8d50)
)
(wire (pts (xy 120.015 21.59) (xy 139.065 21.59))
(stroke (width 0) (type default))
(uuid 907bca71-7218-4f03-b4bd-586121fcf8e0)
)
(wire (pts (xy 120.015 34.925) (xy 118.11 34.925))
(stroke (width 0) (type default))
(uuid 9399a2b1-4c2e-41f3-8f9a-0a23f3b4fe50)
)
(wire (pts (xy 62.865 69.85) (xy 66.04 69.85))
(stroke (width 0) (type default))
(uuid 99f2690c-1a6d-4fbb-ba61-f3d41eb4c0b7)
)
(wire (pts (xy 118.11 59.055) (xy 120.015 59.055))
(stroke (width 0) (type default))
(uuid a174da27-94f5-429b-8d08-28d0331b42e5)
)
(wire (pts (xy 120.015 67.31) (xy 120.015 59.055))
(stroke (width 0) (type default))
(uuid a523695c-35b4-4859-b781-154824ab5ca9)
)
(wire (pts (xy 49.53 36.83) (xy 52.07 36.83))
(stroke (width 0) (type default))
(uuid a61b8793-ec96-4e3b-97b0-2185f1c8bd47)
)
(wire (pts (xy 139.065 59.055) (xy 139.065 69.85))
(stroke (width 0) (type default))
(uuid a80899eb-c281-402c-81c0-5d5b22336f45)
)
(wire (pts (xy 97.155 34.925) (xy 99.06 34.925))
(stroke (width 0) (type default))
(uuid ae5d10fb-0c1f-487f-bf73-01918e8dbf6f)
)
(wire (pts (xy 121.92 29.845) (xy 120.015 29.845))
(stroke (width 0) (type default))
(uuid af344df5-f8f1-4300-8c40-51d1681a9cb2)
)
(wire (pts (xy 97.155 34.925) (xy 95.25 34.925))
(stroke (width 0) (type default))
(uuid b28b3aad-ce7a-4d5e-8b52-2d16de7b6b1e)
)
(wire (pts (xy 120.015 59.055) (xy 139.065 59.055))
(stroke (width 0) (type default))
(uuid b5e21c8b-4f23-470f-94c9-40687ea53ea2)
)
(wire (pts (xy 37.465 95.885) (xy 37.465 97.79))
(stroke (width 0) (type default))
(uuid b69731dc-a74d-4be9-8b11-0a21dad4be18)
)
(wire (pts (xy 140.97 69.85) (xy 139.065 69.85))
(stroke (width 0) (type default))
(uuid b8fcd648-8385-4e85-ba16-e9b058ae3ba3)
)
(wire (pts (xy 120.015 72.39) (xy 118.11 72.39))
(stroke (width 0) (type default))
(uuid b9f93fb3-7ced-4059-90cb-aad416d993c2)
)
(wire (pts (xy 139.065 69.85) (xy 137.16 69.85))
(stroke (width 0) (type default))
(uuid bb67cd1c-91b3-4ba9-a62d-4d4173d20f22)
)
(wire (pts (xy 120.015 29.845) (xy 120.015 21.59))
(stroke (width 0) (type default))
(uuid c469846c-a104-4bfc-aae8-66d18a7e7de0)
)
(wire (pts (xy 41.275 73.66) (xy 41.275 69.85))
(stroke (width 0) (type default))
(uuid c4b1e7cf-3aa3-45c5-8585-741388413869)
)
(wire (pts (xy 66.04 59.055) (xy 69.215 59.055))
(stroke (width 0) (type default))
(uuid cb2ff936-d01f-4ed3-a5da-0089d3c4dd41)
)
(wire (pts (xy 97.155 74.295) (xy 97.155 72.39))
(stroke (width 0) (type default))
(uuid ce5b0dfe-37f0-4d1b-9f56-10ae411d36e6)
)
(wire (pts (xy 85.725 34.925) (xy 87.63 34.925))
(stroke (width 0) (type default))
(uuid cf03ad8f-66ef-45f9-8345-2635d0d3edd5)
)
(wire (pts (xy 62.23 32.385) (xy 65.405 32.385))
(stroke (width 0) (type default))
(uuid d070d92e-528b-4236-9018-11247fadff60)
)
(wire (pts (xy 66.04 69.85) (xy 66.04 59.055))
(stroke (width 0) (type default))
(uuid d35150b0-2eb6-4157-85e4-9498d87dce2c)
)
(wire (pts (xy 37.465 93.98) (xy 37.465 95.885))
(stroke (width 0) (type default))
(uuid d42754be-232c-4f72-91c3-410cdb7a8c00)
)
(wire (pts (xy 118.11 21.59) (xy 120.015 21.59))
(stroke (width 0) (type default))
(uuid de759948-161e-4bbe-93f4-670a576de500)
)
(wire (pts (xy 52.705 73.66) (xy 52.705 69.85))
(stroke (width 0) (type default))
(uuid e0e4f26b-9768-45ce-836e-303c9ffcd23d)
)
(wire (pts (xy 52.07 32.385) (xy 54.61 32.385))
(stroke (width 0) (type default))
(uuid e196416c-d4d1-42d4-979d-990a370627ba)
)
(wire (pts (xy 108.585 59.055) (xy 108.585 72.39))
(stroke (width 0) (type default))
(uuid e4f43349-3f67-4924-9783-e918db4d09eb)
)
(wire (pts (xy 49.53 73.66) (xy 52.705 73.66))
(stroke (width 0) (type default))
(uuid edff7200-18c6-4e0c-99f9-a118fc24b63a)
)
(wire (pts (xy 110.49 21.59) (xy 108.585 21.59))
(stroke (width 0) (type default))
(uuid eea8afc9-500b-4e96-9580-ce3dbde5cd58)
)
(wire (pts (xy 85.725 72.39) (xy 83.82 72.39))
(stroke (width 0) (type default))
(uuid f4c296cd-7bdd-4b60-9028-ba2456db2135)
)
(wire (pts (xy 36.83 32.385) (xy 41.91 32.385))
(stroke (width 0) (type default))
(uuid f6429ab2-213c-4030-a705-9f073170a98c)
)
(wire (pts (xy 97.155 36.83) (xy 97.155 34.925))
(stroke (width 0) (type default))
(uuid fab03173-e991-4b31-9f3e-4fd52fb45287)
)
(wire (pts (xy 85.725 20.955) (xy 85.725 34.925))
(stroke (width 0) (type default))
(uuid fde990cb-bef7-4857-b479-4a747f3020bc)
)
(text "Short jumper if DC is interesting" (at 26.035 43.815 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 83616a1b-53cb-4bc4-bfc7-a340c75ffaa4)
)
(label "V_mid" (at 60.96 74.93 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 14202ecb-5941-455d-a867-b86716db90d7)
)
(label "V_mid" (at 46.99 95.885 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 21930fd1-46a2-4b3e-9765-d207f0464a07)
)
(label "V_mid" (at 60.96 37.465 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4362d6f1-39b0-4140-a0c9-e1c7e29f1387)
)
(hierarchical_label "INPUT_2" (shape input) (at 36.83 69.85 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 26499fda-28f0-49df-ae6e-bde6da76eedc)
)
(hierarchical_label "INPUT_1" (shape input) (at 36.83 32.385 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5b9a3805-90b0-44a6-a86e-5b6c07ff9037)
)
(hierarchical_label "FILTERED_1" (shape output) (at 140.97 32.385 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bea25862-abba-489f-bceb-f737bbb678c5)
)
(hierarchical_label "FILTERED_2" (shape output) (at 140.97 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c78980a8-e749-4c70-b9e3-d042eb419706)
)
(symbol (lib_id "Amplifier_Operational:MCP6004") (at 76.2 34.925 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005e814976)
(property "Reference" "U7" (at 76.2 25.6032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP6004" (at 76.2 27.9146 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 74.93 37.465 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 77.47 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C50282" (at 76.2 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "1" (at 76.2 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "MCP6004T-I/ST" (at 76.2 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "possible_not_ext" "1" (at 76.2 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 85612001-07f1-42a2-bd31-daa482fa27bb))
(pin "2" (uuid 0621318f-519b-43ab-8e0a-8f86bad3ea1a))
(pin "3" (uuid 47f88d95-99b8-45c0-a2ef-7fb5247b0c68))
(pin "5" (uuid 55450248-4544-4f51-b6fd-724da61a0aca))
(pin "6" (uuid f6c716f2-6f0b-4af6-b040-df0086d5bfd2))
(pin "7" (uuid f8fe57a8-6cbc-405c-b2e2-42174cac1bda))
(pin "10" (uuid 74948652-fbb5-4101-aa07-69756282eb7c))
(pin "8" (uuid 5855b373-ea92-4615-8bb9-836d82a0c2e1))
(pin "9" (uuid 31827075-b487-4660-b127-c0031b821bc7))
(pin "12" (uuid 8c8c567c-1064-4d52-921b-77ce4f6d3817))
(pin "13" (uuid f9b906a4-7102-4abb-8659-717470501aa9))
(pin "14" (uuid fdcca902-3ec8-43f7-addc-0a726e184fc3))
(pin "11" (uuid 88c3b6c0-0665-4551-9dae-0df226d7064e))
(pin "4" (uuid 98a3f6c5-a7ee-4e86-8899-71e19f47afa2))
(instances
(project "polygonus-Shortage-Version"
(path "/3b9c5ffd-e59b-402d-8c5e-052f7ca643a4/00000000-0000-0000-0000-00005e814213"
(reference "U7") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:MCP6004") (at 129.54 32.385 0) (mirror x) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005e81610b)
(property "Reference" "U7" (at 129.54 23.0632 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP6004" (at 129.54 25.3746 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 128.27 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 130.81 37.465 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C50282" (at 129.54 32.385 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "1" (at 129.54 32.385 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "MCP6004T-I/ST" (at 129.54 32.385 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "possible_not_ext" "1" (at 129.54 32.385 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 28474e17-2241-45d6-84fc-d630c93296bb))
(pin "2" (uuid 5b99950a-f47d-4cd2-b1b3-9b842ae56d70))
(pin "3" (uuid d91786bb-f15d-497c-8fec-d78d31a74eb1))
(pin "5" (uuid f59c134d-f66f-4e7b-800c-d61ec0416204))
(pin "6" (uuid 4e96382b-454d-4bb6-be91-fce3dcc91b7b))
(pin "7" (uuid f1366344-2868-4ad4-9ef1-6c16b115f82a))
(pin "10" (uuid eb6df926-5b21-441a-8c58-8078eb94613e))
(pin "8" (uuid cfc889a4-4dad-4a41-a384-0cd4586cb200))
(pin "9" (uuid e93c27f7-40aa-4c90-822b-c38dcfa38e32))
(pin "12" (uuid aab112dd-5134-42ab-865b-d4df858fe223))
(pin "13" (uuid b900ba74-2dd4-461d-b1c0-eeab04d42945))
(pin "14" (uuid ca6a26c8-3318-4516-bb21-db1d11909ee7))
(pin "11" (uuid e86b1a7f-4212-49d2-8c7b-eba9d402b254))
(pin "4" (uuid 84a8af5c-b507-47dc-be88-a615ec23de36))
(instances
(project "polygonus-Shortage-Version"
(path "/3b9c5ffd-e59b-402d-8c5e-052f7ca643a4/00000000-0000-0000-0000-00005e814213"
(reference "U7") (unit 2)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:MCP6004") (at 129.54 69.85 0) (mirror x) (unit 3)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005e8170a3)
(property "Reference" "U7" (at 129.54 60.5282 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP6004" (at 129.54 62.8396 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 128.27 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 130.81 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C50282" (at 129.54 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "1" (at 129.54 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "MCP6004T-I/ST" (at 129.54 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "possible_not_ext" "1" (at 129.54 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b78888db-4bde-4395-948e-e2c882768fe1))
(pin "2" (uuid 5160efe3-254b-4cd0-b28d-4cc7de2a8c16))
(pin "3" (uuid e6e98f61-7d67-43d0-b6d7-56e61e94348d))
(pin "5" (uuid 457bb114-7cbe-4677-a542-086d7ece9621))
(pin "6" (uuid 78a5a647-dd08-4fae-b134-db7efa0b3f54))
(pin "7" (uuid fd644955-9f04-4e99-ac0b-ec0c4b714cc9))
(pin "10" (uuid d1b806c9-f79a-400f-b733-b4406146c8e3))
(pin "8" (uuid a21be73b-ad43-45ea-86ce-d13ce1d43e99))
(pin "9" (uuid 440dd1a5-2ac6-4c8c-ab40-52284b936b9b))
(pin "12" (uuid 24a1f0cf-64ce-4117-bba0-ecad8aee29b0))
(pin "13" (uuid 4ca98efe-b89f-48d0-a81d-c0e48e59253a))
(pin "14" (uuid 6448061b-84a7-47cd-ab68-03eeb4fcba56))
(pin "11" (uuid 3ea18848-1aec-4618-bcc6-07f6c888d50c))
(pin "4" (uuid d069cec9-c32b-420c-bb3e-484b06a273ee))
(instances
(project "polygonus-Shortage-Version"
(path "/3b9c5ffd-e59b-402d-8c5e-052f7ca643a4/00000000-0000-0000-0000-00005e814213"
(reference "U7") (unit 3)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:MCP6004") (at 76.2 72.39 0) (mirror x) (unit 4)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005e818523)
(property "Reference" "U7" (at 76.2 63.0682 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP6004" (at 76.2 65.3796 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 74.93 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 77.47 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C50282" (at 76.2 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "1" (at 76.2 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "MCP6004T-I/ST" (at 76.2 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "possible_not_ext" "1" (at 76.2 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2239402d-277d-42a4-85d2-bc2949f6806b))
(pin "2" (uuid 941cc662-ec69-48d7-9c4f-dc7f18b566d1))
(pin "3" (uuid 1c8bbff4-e20e-4f51-8866-6bbccd09f16a))
(pin "5" (uuid f237fcfb-da70-4949-8903-705917dc47ec))
(pin "6" (uuid d21b94d0-f6f6-48c3-bfee-9a0ba37d67e9))
(pin "7" (uuid 917aad9f-dcd2-4643-ac51-c7f74468f998))
(pin "10" (uuid 3a3fc290-e8c0-44ff-97a5-e51de4d6e86b))
(pin "8" (uuid fc1406d2-09bb-42d9-a9a1-40269c7073d1))
(pin "9" (uuid 99d97d04-f2f1-4679-b6ae-f3ff06323950))
(pin "12" (uuid 29b40481-95a2-442d-b979-52afdef3f7c4))
(pin "13" (uuid cec9f3d5-757b-477f-8260-9b9a74dab17b))
(pin "14" (uuid cf9c0d93-1442-4a1b-a846-175926755077))
(pin "11" (uuid 7a79618e-9b90-4c72-a6cf-7044a2241e78))
(pin "4" (uuid db05dfe2-a6a8-4a8e-b0e5-a9c3c76708a0))
(instances
(project "polygonus-Shortage-Version"
(path "/3b9c5ffd-e59b-402d-8c5e-052f7ca643a4/00000000-0000-0000-0000-00005e814213"
(reference "U7") (unit 4)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:MCP6004") (at 165.1 47.625 0) (unit 5)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005e819758)
(property "Reference" "U7" (at 164.0332 46.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MCP6004" (at 164.0332 48.768 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 163.83 45.085 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" (at 166.37 42.545 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C50282" (at 165.1 47.625 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "1" (at 165.1 47.625 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "MCP6004T-I/ST" (at 165.1 47.625 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "possible_not_ext" "1" (at 165.1 47.625 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d20efeae-1d35-4ba1-8948-106315f51778))
(pin "2" (uuid a2a89d72-cfb7-480b-9308-82864aa65e0c))
(pin "3" (uuid e943760d-9366-40ae-9998-730ce69a0985))
(pin "5" (uuid 4f450f50-8935-47ab-99df-4e9bb3827b13))
(pin "6" (uuid 9e888406-2e43-406b-bd41-18787f04c73d))
(pin "7" (uuid ee8277da-19d7-46de-b51c-26465836c41c))
(pin "10" (uuid ff30b94f-77e6-462a-a7a1-fb2cd0d958ea))
(pin "8" (uuid 342491e7-7c82-4c2a-9b45-2dc75c8a23a1))
(pin "9" (uuid 6f1988b3-0271-4bc2-ad59-5c6ad7e105fe))
(pin "12" (uuid d881a22a-ca6f-49de-8a68-348466d1a8c8))
(pin "13" (uuid fb1cdcb8-7526-4c93-a304-13bff3e6ae15))
(pin "14" (uuid a6bce5b9-4359-4a5d-8310-7fc36277c1e8))
(pin "11" (uuid 2f9ff82c-b981-413a-80db-37ee15b57cc9))
(pin "4" (uuid 05b08a26-a10a-4ede-a3d5-24d88028ceee))
(instances
(project "polygonus-Shortage-Version"
(path "/3b9c5ffd-e59b-402d-8c5e-052f7ca643a4/00000000-0000-0000-0000-00005e814213"
(reference "U7") (unit 5)
)
)
)
)