-
Notifications
You must be signed in to change notification settings - Fork 0
/
differential_ampl.kicad_sch
1057 lines (1032 loc) · 37.5 KB
/
differential_ampl.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 81295d67-3f16-4ba7-a4fa-4db496ea2a35)
(paper "A4")
(title_block
(date "2023-03-05")
(rev "3")
)
(lib_symbols
(symbol "Amplifier_Operational:LT1492" (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" "LT1492" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 0 0 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" "dual opamp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "5MHz, 3V/µs, Low Power, Single Supply, Dual Precision Op Amps, DIP-8/SOIC-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LT1492_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 "LT1492_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 "LT1492_3_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (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 "8" (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: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 "+3.3V" (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 132.08 132.08) (diameter 0) (color 0 0 0 0)
(uuid 09fe2b71-0a08-4e3b-b759-2c390b405757)
)
(junction (at 132.08 83.82) (diameter 0) (color 0 0 0 0)
(uuid 19785995-7d6c-4e35-a832-cd736beff6f8)
)
(junction (at 157.48 86.36) (diameter 0) (color 0 0 0 0)
(uuid 2d7edc7b-84c2-48c5-b59a-674ef51285af)
)
(junction (at 132.08 88.9) (diameter 0) (color 0 0 0 0)
(uuid 3999965c-d5e7-4c07-868a-ef3013f6b24f)
)
(junction (at 132.08 127) (diameter 0) (color 0 0 0 0)
(uuid cbc6a479-f276-4259-86b0-f7454f9e54fc)
)
(junction (at 157.48 129.54) (diameter 0) (color 0 0 0 0)
(uuid e3e0c6d3-4d3e-4398-95bd-b09fc18b6a3b)
)
(wire (pts (xy 132.08 127) (xy 140.97 127))
(stroke (width 0) (type default))
(uuid 0183d9e1-3664-4900-ad76-2ec406b03f79)
)
(wire (pts (xy 132.08 83.82) (xy 140.97 83.82))
(stroke (width 0) (type default))
(uuid 02c83614-e325-453f-8aca-52c5d6e30e70)
)
(wire (pts (xy 134.62 115.57) (xy 132.08 115.57))
(stroke (width 0) (type default))
(uuid 064b5caa-c28d-453f-ad26-c1dcfb4a3035)
)
(wire (pts (xy 115.57 127) (xy 123.19 127))
(stroke (width 0) (type default))
(uuid 09ef663a-7123-4831-857a-202365cd41bb)
)
(wire (pts (xy 130.81 83.82) (xy 132.08 83.82))
(stroke (width 0) (type default))
(uuid 14746868-a929-4c76-bcad-2597f8fc066d)
)
(wire (pts (xy 240.03 46.99) (xy 240.03 53.34))
(stroke (width 0) (type default))
(uuid 15c6eca4-06fa-470c-9924-847ec350a6f2)
)
(wire (pts (xy 132.08 72.39) (xy 132.08 83.82))
(stroke (width 0) (type default))
(uuid 271de0ce-bf2c-4489-9d01-8af76edb5dbc)
)
(wire (pts (xy 130.81 88.9) (xy 132.08 88.9))
(stroke (width 0) (type default))
(uuid 2f18e0c4-b9ad-4ff9-8414-f959a6e7bda5)
)
(wire (pts (xy 142.24 115.57) (xy 147.32 115.57))
(stroke (width 0) (type default))
(uuid 3840c86b-d728-424f-9ef5-18ea00ad8ab7)
)
(wire (pts (xy 142.24 72.39) (xy 147.32 72.39))
(stroke (width 0) (type default))
(uuid 55afe48a-6671-4128-8514-5a7b4c7f60df)
)
(wire (pts (xy 132.08 132.08) (xy 132.08 142.24))
(stroke (width 0) (type default))
(uuid 605b8dc4-7534-4140-86d8-5566f59763da)
)
(wire (pts (xy 123.19 132.08) (xy 115.57 132.08))
(stroke (width 0) (type default))
(uuid 649c422e-9643-448d-b439-51d514af5290)
)
(wire (pts (xy 156.21 86.36) (xy 157.48 86.36))
(stroke (width 0) (type default))
(uuid 6613a206-1367-41d3-8f32-871b076418fb)
)
(wire (pts (xy 156.21 129.54) (xy 157.48 129.54))
(stroke (width 0) (type default))
(uuid 6862f705-8bd4-4ead-a842-30a28dc30d8a)
)
(wire (pts (xy 157.48 129.54) (xy 191.77 129.54))
(stroke (width 0) (type default))
(uuid 6f0bf990-74cd-4d3d-9b3a-be7eb2641a34)
)
(wire (pts (xy 226.06 50.8) (xy 226.06 53.34))
(stroke (width 0) (type default))
(uuid 7615093d-cb61-4544-a99f-aceab47baa28)
)
(wire (pts (xy 157.48 142.24) (xy 157.48 129.54))
(stroke (width 0) (type default))
(uuid 7b0012ab-05d5-4dd4-b083-5011cd4f5d0c)
)
(wire (pts (xy 134.62 142.24) (xy 132.08 142.24))
(stroke (width 0) (type default))
(uuid 84ff07ff-959b-4cd8-a4f5-dd32a7efd876)
)
(wire (pts (xy 132.08 115.57) (xy 132.08 127))
(stroke (width 0) (type default))
(uuid 865bbaa8-86cd-442d-9bbc-f84a41a9c214)
)
(wire (pts (xy 123.19 88.9) (xy 115.57 88.9))
(stroke (width 0) (type default))
(uuid 8bc6435a-e1f5-491b-b7b6-4931357b1c79)
)
(wire (pts (xy 226.06 35.56) (xy 226.06 33.02))
(stroke (width 0) (type default))
(uuid 9aa87f29-3abb-4806-855d-1c2ce0e61089)
)
(wire (pts (xy 147.32 72.39) (xy 147.32 74.93))
(stroke (width 0) (type default))
(uuid 9bacf829-081e-43d5-a289-4a739814051e)
)
(wire (pts (xy 142.24 99.06) (xy 157.48 99.06))
(stroke (width 0) (type default))
(uuid a8ef61b9-a65e-47e0-9c1d-7df3d958609e)
)
(wire (pts (xy 115.57 83.82) (xy 123.19 83.82))
(stroke (width 0) (type default))
(uuid bbea85ed-aea5-4292-8f58-530100a2f7f7)
)
(wire (pts (xy 134.62 72.39) (xy 132.08 72.39))
(stroke (width 0) (type default))
(uuid c12aa11f-f50d-4e2e-af42-40c24cd4f50b)
)
(wire (pts (xy 240.03 33.02) (xy 240.03 39.37))
(stroke (width 0) (type default))
(uuid c27b16b3-343f-4f94-97dc-582f53181775)
)
(wire (pts (xy 132.08 88.9) (xy 132.08 99.06))
(stroke (width 0) (type default))
(uuid c379674d-f70c-4eef-acfc-e36318668d80)
)
(wire (pts (xy 130.81 132.08) (xy 132.08 132.08))
(stroke (width 0) (type default))
(uuid c8d532ee-01a6-47ff-be10-ff2c3dbfa9bd)
)
(wire (pts (xy 134.62 99.06) (xy 132.08 99.06))
(stroke (width 0) (type default))
(uuid cbb402ba-bb96-424b-8ed1-2acf107a9249)
)
(wire (pts (xy 157.48 86.36) (xy 191.77 86.36))
(stroke (width 0) (type default))
(uuid d03daa1f-1024-474e-a1c9-7761bdab3acb)
)
(wire (pts (xy 132.08 88.9) (xy 140.97 88.9))
(stroke (width 0) (type default))
(uuid d5bb43cc-84fa-4252-9615-55ebade24d90)
)
(wire (pts (xy 132.08 132.08) (xy 140.97 132.08))
(stroke (width 0) (type default))
(uuid da99e7a1-98a3-413e-b750-a1d7a6bde903)
)
(wire (pts (xy 130.81 127) (xy 132.08 127))
(stroke (width 0) (type default))
(uuid e139c1d4-1efc-4c91-a9a9-2e7651cfb9d1)
)
(wire (pts (xy 147.32 115.57) (xy 147.32 118.11))
(stroke (width 0) (type default))
(uuid e3c6f4b4-adf3-40cf-8797-2ffb04bff59e)
)
(wire (pts (xy 157.48 99.06) (xy 157.48 86.36))
(stroke (width 0) (type default))
(uuid e514bc5f-3cdc-4726-b844-a709a273761b)
)
(wire (pts (xy 142.24 142.24) (xy 157.48 142.24))
(stroke (width 0) (type default))
(uuid e9089a4e-e0f7-4b22-9f5b-7d0ba21a7eb5)
)
(hierarchical_label "IN1P" (shape input) (at 115.57 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 27926cef-338d-4506-b49d-0eee2434f7b8)
)
(hierarchical_label "IN0P" (shape input) (at 115.57 83.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2922f588-0b15-485b-93ea-aecec59310f0)
)
(hierarchical_label "OUT0" (shape output) (at 191.77 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6a973f6d-0c36-4664-a9a2-050dc12b0e56)
)
(hierarchical_label "IN1N" (shape input) (at 115.57 132.08 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7946b0b2-79b8-47ec-b657-d891fc6c8d6b)
)
(hierarchical_label "OUT1" (shape output) (at 191.77 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bacd5f24-dc13-4aad-9a99-560bbbb2a9c5)
)
(hierarchical_label "IN0N" (shape input) (at 115.57 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e58d57e9-6f79-41aa-9cf4-57e09db2019c)
)
(symbol (lib_id "power:GND") (at 226.06 53.34 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1eaf378e-b18a-43b4-b0f2-7fe27d1e209c)
(property "Reference" "#PWR017" (at 226.06 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 226.187 57.7342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 226.06 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 226.06 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f462459f-e0a3-4a3c-a1f6-ab2d1da3b31b))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR017") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR095") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR0111") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 127 127 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4ded2ee4-09c4-44b7-b55e-54057c342c65)
(property "Reference" "R29" (at 127 121.7422 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 127 124.0536 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 127 125.222 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0c0574c2-31e1-43b8-a8bb-6cb25358abd1))
(pin "2" (uuid 368e5a28-9a01-45a3-9105-07291942e76a))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R29") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R64") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R55") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 148.59 86.36 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 51c84657-50d1-4c2c-b54f-1877e5a12703)
(property "Reference" "U3" (at 154.94 80.01 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LT1492" (at 156.21 82.55 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 148.59 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 148.59 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b78754c4-ba30-4605-bbc7-5bc8aa5fb615))
(pin "2" (uuid 197e6530-2f70-4f98-b6c3-f4083221c21c))
(pin "3" (uuid 4674ce85-db42-4aa9-949c-51793e800919))
(pin "5" (uuid 6638d84f-e3be-4c25-8b7d-cd5378a1fde7))
(pin "6" (uuid b950770e-c665-4991-975f-8f37d6e2f23a))
(pin "7" (uuid 4261e516-37bf-42c1-8350-cc5ed13d5b1a))
(pin "4" (uuid bbce8be5-6a93-49e3-862b-9e8e540717c5))
(pin "8" (uuid 57ad6e93-1a80-4741-87de-15eaf53fd934))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "U3") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "U11") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "U13") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 127 83.82 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 60e5b52d-8fc4-4cbf-bcfc-6f86677defdb)
(property "Reference" "R29" (at 127 78.5622 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 127 80.8736 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 127 82.042 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6dc2c667-3fed-4de3-a99c-2287f5f96bdc))
(pin "2" (uuid 6666b70b-cd0a-4242-b9fb-27b9da7d7d7c))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R29") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R64") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R68") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 147.32 74.93 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7b6fc1de-0fa5-4c3a-a5f0-b86055b55d7a)
(property "Reference" "#PWR017" (at 147.32 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 147.447 79.3242 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 147.32 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 147.32 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1608ed89-ad3f-4153-8c35-938e6f705cdf))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR017") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR095") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR072") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 148.59 129.54 0) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7ee321d3-e5e9-47e6-bda2-76e079bbf1b3)
(property "Reference" "U3" (at 154.94 124.46 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LT1492" (at 154.94 126.7714 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 148.59 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 148.59 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 583be820-2edd-4eb9-adbb-93984cd7ad43))
(pin "2" (uuid 12912394-0578-4e7e-928f-b5ced6608752))
(pin "3" (uuid 26bcc244-6f39-412e-b678-9498228ab7dd))
(pin "5" (uuid 65e0f217-1a64-453a-aa2f-cef6e6315b89))
(pin "6" (uuid cda169b1-20e9-460c-93b4-afdb0a3dddd5))
(pin "7" (uuid db3a350b-10f9-445e-b567-28f36cf14e84))
(pin "4" (uuid f3872dd3-d27d-4e1d-a20d-070235064fbd))
(pin "8" (uuid df0cdd62-71a3-494b-aee4-3b17096e0d9d))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "U3") (unit 2)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "U11") (unit 2)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "U13") (unit 2)
)
)
)
)
(symbol (lib_id "Device:R") (at 127 88.9 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 90471ede-3463-424c-a51f-1cf31288552a)
(property "Reference" "R29" (at 127 92.71 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 127 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 127 87.122 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6a3a1f4e-ef53-45ae-804e-227496cdc7ee))
(pin "2" (uuid e96d485c-e6dc-497c-b50b-4512f321a8a0))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R29") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R64") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R56") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 127 132.08 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9355c454-71da-48f7-b34e-82278a429f56)
(property "Reference" "R29" (at 127 135.89 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 127 138.43 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 127 130.302 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1b3e005-368c-44c9-b6ac-40c5acde9a3b))
(pin "2" (uuid 94dac476-0915-4945-81df-14f4ffd0ee27))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R29") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R64") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R57") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 138.43 72.39 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9c371a17-376a-41d5-91c9-d7bc53798229)
(property "Reference" "R8" (at 138.43 67.31 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 138.43 69.85 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 138.43 74.168 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 567880f0-571b-43f0-bb8c-8131c2832f8d))
(pin "2" (uuid ff0b28ae-4f08-4fa6-8798-41dabda21d68))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R8") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R62") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R69") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 228.6 43.18 0) (unit 3)
(in_bom yes) (on_board yes) (dnp no)
(uuid a9a972cb-4aaf-4b79-aee6-d5170feb979d)
(property "Reference" "U3" (at 227.5332 42.0116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LT1492" (at 227.5332 44.323 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 228.6 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 228.6 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 24e4deed-ba76-42f2-bacc-260f1bed3515))
(pin "2" (uuid f9e85e5d-a38d-47f7-b5a9-8d8ff70221a9))
(pin "3" (uuid 96feb751-ea9d-4022-83d2-14aa59df327e))
(pin "5" (uuid 8be11f12-680c-43b9-9712-7b07e2dcffcc))
(pin "6" (uuid fec867b7-a1c2-4b88-9688-400d1a780f58))
(pin "7" (uuid 481ce444-2372-4779-b518-4939e6cbc677))
(pin "4" (uuid 0caf9332-487f-4451-8f2e-128c80c7d179))
(pin "8" (uuid 69cb7505-ea9d-4cef-9228-7736d742628a))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "U3") (unit 3)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "U11") (unit 3)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "U13") (unit 3)
)
)
)
)
(symbol (lib_id "Device:R") (at 138.43 115.57 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid bfaf1184-bc90-4554-a2f3-67382a055fe9)
(property "Reference" "R8" (at 138.43 110.49 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 138.43 113.03 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 138.43 117.348 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4ccd121a-be95-4352-b69e-29ded13edd56))
(pin "2" (uuid acf01bd1-0bf1-4417-8cbb-0dbb1ad4385d))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R8") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R62") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R70") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 147.32 118.11 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c4e00465-1bbb-48a7-89b9-00d478623ac5)
(property "Reference" "#PWR017" (at 147.32 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 147.447 122.5042 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 147.32 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 147.32 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 44a28350-3c24-46ed-86cf-b55a90253ef7))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR017") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR095") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR0100") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 226.06 33.02 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d36cf9f5-0731-42af-aa26-caa4786ca19f)
(property "Reference" "#PWR019" (at 226.06 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 226.441 28.6258 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 226.06 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 226.06 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 80f27495-bcfd-413f-ac85-60936704a7e6))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR019") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR094") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR0110") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 138.43 99.06 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e9b92935-9c82-4353-b6e7-83744ffd1358)
(property "Reference" "R8" (at 138.43 104.3178 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 138.43 102.0064 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 138.43 100.838 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5d9f1445-de8a-4689-b648-06bbc24eb154))
(pin "2" (uuid 7734aaf2-a534-4699-839e-8e29e11e34ec))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R8") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R62") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "R54") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 240.03 33.02 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid f79ffbcc-a3a4-4e3a-b4ff-734ae3df1634)
(property "Reference" "#PWR020" (at 240.03 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 240.411 28.6258 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 240.03 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 240.03 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f4840fd6-5ae7-49bd-9755-454e2fda2f36))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR020") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR096") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR0122") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 240.03 53.34 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid f96b631e-8d7d-4129-8073-113ba09553ad)
(property "Reference" "#PWR018" (at 240.03 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 240.157 57.7342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 240.03 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 240.03 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1b66e19-8958-4e2a-a289-7770cc758a7a))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR018") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR097") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/6940572e-be43-4dbe-a74a-6ddd0312cd29"
(reference "#PWR0123") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 138.43 142.24 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid ffb8b992-a85d-4955-a9a5-955b6ebb3e4a)
(property "Reference" "R8" (at 138.43 147.4978 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 138.43 145.1864 90)