-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenFlowMeter_PWM_Filter.kicad_sch
1050 lines (1022 loc) · 36.6 KB
/
OpenFlowMeter_PWM_Filter.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 00e38d63-5436-49db-81f5-697421f168fc)
(paper "A4")
(title_block
(date "2023-03-05")
(rev "3")
(company "Jochen Steinmann")
)
(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 130.81 127) (diameter 0) (color 0 0 0 0)
(uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
)
(junction (at 114.3 93.98) (diameter 0) (color 0 0 0 0)
(uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
)
(junction (at 130.81 93.98) (diameter 0) (color 0 0 0 0)
(uuid 935057d5-6882-4c15-9a35-54677912ba12)
)
(junction (at 114.3 127) (diameter 0) (color 0 0 0 0)
(uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b)
)
(junction (at 158.75 124.46) (diameter 0) (color 0 0 0 0)
(uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
)
(junction (at 158.75 91.44) (diameter 0) (color 0 0 0 0)
(uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
)
(wire (pts (xy 137.16 83.82) (xy 158.75 83.82))
(stroke (width 0) (type default))
(uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
)
(wire (pts (xy 128.27 127) (xy 130.81 127))
(stroke (width 0) (type default))
(uuid 30c33e3e-fb78-498d-bffe-76273d527004)
)
(wire (pts (xy 114.3 93.98) (xy 107.95 93.98))
(stroke (width 0) (type default))
(uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
)
(wire (pts (xy 137.16 116.84) (xy 137.16 121.92))
(stroke (width 0) (type default))
(uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
)
(wire (pts (xy 139.7 88.9) (xy 137.16 88.9))
(stroke (width 0) (type default))
(uuid 479331ff-c540-41f4-84e6-b48d65171e59)
)
(wire (pts (xy 128.27 93.98) (xy 130.81 93.98))
(stroke (width 0) (type default))
(uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
)
(wire (pts (xy 114.3 128.27) (xy 114.3 127))
(stroke (width 0) (type default))
(uuid 57276367-9ce4-4738-88d7-6e8cb94c966c)
)
(wire (pts (xy 114.3 127) (xy 107.95 127))
(stroke (width 0) (type default))
(uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615)
)
(wire (pts (xy 130.81 104.14) (xy 130.81 102.87))
(stroke (width 0) (type default))
(uuid 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)
)
(wire (pts (xy 162.56 49.53) (xy 162.56 55.88))
(stroke (width 0) (type default))
(uuid 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)
)
(wire (pts (xy 148.59 52.07) (xy 148.59 49.53))
(stroke (width 0) (type default))
(uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(wire (pts (xy 130.81 93.98) (xy 130.81 95.25))
(stroke (width 0) (type default))
(uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
)
(wire (pts (xy 130.81 93.98) (xy 139.7 93.98))
(stroke (width 0) (type default))
(uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
)
(wire (pts (xy 158.75 124.46) (xy 190.5 124.46))
(stroke (width 0) (type default))
(uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
)
(wire (pts (xy 137.16 121.92) (xy 139.7 121.92))
(stroke (width 0) (type default))
(uuid 9186dae5-6dc3-4744-9f90-e697559c6ac8)
)
(wire (pts (xy 114.3 95.25) (xy 114.3 93.98))
(stroke (width 0) (type default))
(uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
)
(wire (pts (xy 158.75 124.46) (xy 158.75 116.84))
(stroke (width 0) (type default))
(uuid 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
)
(wire (pts (xy 158.75 83.82) (xy 158.75 91.44))
(stroke (width 0) (type default))
(uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790)
)
(wire (pts (xy 158.75 116.84) (xy 137.16 116.84))
(stroke (width 0) (type default))
(uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
)
(wire (pts (xy 100.33 127) (xy 87.63 127))
(stroke (width 0) (type default))
(uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
)
(wire (pts (xy 158.75 91.44) (xy 154.94 91.44))
(stroke (width 0) (type default))
(uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
)
(wire (pts (xy 120.65 93.98) (xy 114.3 93.98))
(stroke (width 0) (type default))
(uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
)
(wire (pts (xy 114.3 137.16) (xy 114.3 135.89))
(stroke (width 0) (type default))
(uuid bdf40d30-88ff-4479-bad1-69529464b61b)
)
(wire (pts (xy 130.81 127) (xy 130.81 128.27))
(stroke (width 0) (type default))
(uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
)
(wire (pts (xy 100.33 93.98) (xy 87.63 93.98))
(stroke (width 0) (type default))
(uuid c3c499b1-9227-4e4b-9982-f9f1aa6203b9)
)
(wire (pts (xy 114.3 104.14) (xy 114.3 102.87))
(stroke (width 0) (type default))
(uuid c8b6b273-3d20-4a46-8069-f6d608563604)
)
(wire (pts (xy 154.94 124.46) (xy 158.75 124.46))
(stroke (width 0) (type default))
(uuid c8fd9dd3-06ad-4146-9239-0065013959ef)
)
(wire (pts (xy 130.81 137.16) (xy 130.81 135.89))
(stroke (width 0) (type default))
(uuid c9b9e62d-dede-4d1a-9a05-275614f8bdb2)
)
(wire (pts (xy 137.16 88.9) (xy 137.16 83.82))
(stroke (width 0) (type default))
(uuid cc15f583-a41b-43af-ba94-a75455506a96)
)
(wire (pts (xy 162.56 63.5) (xy 162.56 69.85))
(stroke (width 0) (type default))
(uuid e7369115-d491-4ef3-be3d-f5298992c3e8)
)
(wire (pts (xy 148.59 67.31) (xy 148.59 69.85))
(stroke (width 0) (type default))
(uuid e7e08b48-3d04-49da-8349-6de530a20c67)
)
(wire (pts (xy 120.65 127) (xy 114.3 127))
(stroke (width 0) (type default))
(uuid eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)
)
(wire (pts (xy 158.75 91.44) (xy 190.5 91.44))
(stroke (width 0) (type default))
(uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
)
(wire (pts (xy 130.81 127) (xy 139.7 127))
(stroke (width 0) (type default))
(uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
)
(text "Buffered two stage RC filter for filtering & averaging\nSmoothening"
(at 177.8 176.53 0)
(effects (font (size 2.4892 2.4892) (thickness 0.4978) bold) (justify left bottom))
(uuid f1e619ac-5067-41df-8384-776ec70a6093)
)
(hierarchical_label "IN1" (shape input) (at 87.63 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
)
(hierarchical_label "OUT1" (shape output) (at 190.5 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4db55cb8-197b-4402-871f-ce582b65664b)
)
(hierarchical_label "OUT0" (shape output) (at 190.5 124.46 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
)
(hierarchical_label "IN0" (shape input) (at 87.63 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 147.32 91.44 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b7f473)
(property "Reference" "U3" (at 147.32 100.7618 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LT1492" (at 147.32 98.4504 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 147.32 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 147.32 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 214e41d3-ead9-4e70-8205-61f67874e54d))
(pin "2" (uuid f1740d90-a1e8-475c-9f8b-799d406d4de8))
(pin "3" (uuid 8cc91efe-3984-40cd-99b3-b1f0afb4ce0d))
(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)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 151.13 59.69 0) (unit 3)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b7f479)
(property "Reference" "U3" (at 150.0632 58.5216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LT1492" (at 150.0632 60.833 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 151.13 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 151.13 59.69 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 354f0054-5f3a-4867-a3f2-b3008e918feb))
(pin "8" (uuid 1531d6c4-a0da-49ca-878b-afe2464a861b))
(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)
)
)
)
)
(symbol (lib_id "power:GND") (at 148.59 69.85 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b7f486)
(property "Reference" "#PWR017" (at 148.59 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 148.717 74.2442 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 148.59 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 148.59 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0b3a35c5-ddc2-420d-a21f-4aacf27f1abc))
(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)
)
)
)
)
(symbol (lib_id "Device:C") (at 162.56 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b7f48d)
(property "Reference" "C9" (at 165.481 58.5216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 165.481 60.833 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 163.5252 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 162.56 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f5b88798-5bd5-4ef6-ad99-0d74f9ae481e))
(pin "2" (uuid d5353a4f-396f-4e49-8533-a73035ea34e9))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "C9") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "C38") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 162.56 69.85 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b7f493)
(property "Reference" "#PWR018" (at 162.56 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 162.687 74.2442 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 162.56 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 162.56 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d73af769-46d0-42c6-89a6-10b099fd471b))
(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)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LT1492") (at 147.32 124.46 0) (mirror x) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b875c0)
(property "Reference" "U3" (at 147.32 133.7818 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LT1492" (at 147.32 131.4704 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 147.32 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/14923f.pdf" (at 147.32 124.46 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 eb6a726e-fed9-4891-95fa-b4d4a5f77b35))
(pin "6" (uuid d70d1cd3-1668-4688-8eb7-f773efb7bb87))
(pin "7" (uuid 3c646c61-400f-4f60-98b8-05ed5e632a3f))
(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)
)
)
)
)
(symbol (lib_id "Device:R") (at 104.14 93.98 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8d92c)
(property "Reference" "R8" (at 104.14 88.7222 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 104.14 91.0336 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 104.14 92.202 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fa1fb72c-b532-4691-b025-c77f02c9240e))
(pin "2" (uuid bc316989-7433-4e7c-9697-cba456dbfd42))
(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)
)
)
)
)
(symbol (lib_id "Device:R") (at 124.46 93.98 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8ddfd)
(property "Reference" "R29" (at 124.46 88.7222 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 124.46 91.0336 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 124.46 92.202 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 124.46 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ed8ae416-8bd8-46dd-b297-22492ca925b8))
(pin "2" (uuid 1790f95b-89c6-466c-9268-0b4ad4a31a86))
(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)
)
)
)
)
(symbol (lib_id "Device:C") (at 114.3 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8eb97)
(property "Reference" "C5" (at 117.221 97.8916 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 117.221 100.203 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 115.2652 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 114.3 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5edae5af-e295-4801-b007-50d8179b8111))
(pin "2" (uuid 7b038c2a-d6aa-4179-8bcd-6e0db396201d))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "C5") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "C34") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 130.81 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8f4de)
(property "Reference" "C7" (at 133.731 97.8916 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10n" (at 133.731 100.203 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 131.7752 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 130.81 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 03cb7ee6-5d7c-4228-a481-fed683ce65f4))
(pin "2" (uuid 6054c64c-0d4f-4dc6-9605-4084190a5a2b))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "C7") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "C36") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 130.81 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8fa19)
(property "Reference" "#PWR09" (at 130.81 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 130.937 108.5342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 130.81 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 130.81 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9f67ee33-4b08-41d3-84ce-a5fc0d2b3943))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR09") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR092") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 114.3 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b8ff12)
(property "Reference" "#PWR01" (at 114.3 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 114.427 108.5342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 114.3 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 114.3 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 56c91042-2dbf-4de8-b4bc-ec9fe4698f2a))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR01") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR090") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 104.14 127 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97fd2)
(property "Reference" "R22" (at 104.14 121.7422 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 104.14 124.0536 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 104.14 125.222 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 89947c9d-effa-4711-96e5-e2f09f00ef54))
(pin "2" (uuid 7ac8eb11-9019-4bdc-b01a-ff69f131bccc))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R22") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R63") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 124.46 127 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97fd9)
(property "Reference" "R30" (at 124.46 121.7422 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 124.46 124.0536 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 124.46 125.222 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 124.46 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f0b3877-c984-4a15-8e25-3936c97bdef1))
(pin "2" (uuid a7bce257-dcea-42f3-8929-6ac3053db5ef))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "R30") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "R65") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 114.3 132.08 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97fe0)
(property "Reference" "C6" (at 117.221 130.9116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 117.221 133.223 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 115.2652 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 114.3 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 794e69ff-6237-4bdd-9eaa-a34f5da6feba))
(pin "2" (uuid edb57275-a45f-4c1e-a9ff-d35f0b173129))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "C6") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "C35") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 130.81 132.08 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97fe6)
(property "Reference" "C8" (at 133.731 130.9116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10n" (at 133.731 133.223 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 131.7752 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 130.81 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1c89b36c-cb84-42dc-8031-5ab4e3db55d3))
(pin "2" (uuid 9cdf3dda-aaf3-4409-99b4-dcb48e1e7007))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "C8") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "C37") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 130.81 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97fec)
(property "Reference" "#PWR010" (at 130.81 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 130.937 141.5542 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 130.81 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 130.81 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c93f67a-0e3b-4687-bc9d-040be5ef14d4))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR010") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR093") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 114.3 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b97ff2)
(property "Reference" "#PWR08" (at 114.3 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 114.427 141.5542 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 114.3 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 114.3 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2154ed4d-dfbc-454b-9852-8b66fdb7254d))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/00000000-0000-0000-0000-000061b7a600"
(reference "#PWR08") (unit 1)
)
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/100f98e3-4296-40f9-94c5-6b164cc256aa"
(reference "#PWR091") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 148.59 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061b99dcf)
(property "Reference" "#PWR019" (at 148.59 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)