-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrain_gauge.kicad_sch
1149 lines (1123 loc) · 40.9 KB
/
strain_gauge.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 f7a2376e-9c5b-4ba1-a77b-8e8b09237697)
(paper "A5")
(lib_symbols
(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:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 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" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device: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 "INA826_1" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 10.16 13.97 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)) (justify right top))
)
(property "Value" "INA826" (at 12.7 11.43 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)) (justify right top))
)
(property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" (at 19.05 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 19.05 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INA826_1_1_1"
(rectangle (start -7.62 8.89) (end 7.62 -8.89)
(stroke (width 0) (type default))
(fill (type background))
)
(pin input line (at -10.16 6.35 0) (length 2.54)
(name "-IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 0 0) (length 2.54)
(name "RG" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -2.54 0) (length 2.54)
(name "RG" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 3.81 0) (length 2.54)
(name "+IN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -11.43 90) (length 2.54)
(name "-VS" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -6.35 0) (length 2.54)
(name "REF" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 11.43 270) (length 2.54)
(name "+VS" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "frodo_fancyfins:strain-gauge_bridge" (in_bom yes) (on_board yes)
(property "Reference" "RN" (at 10.16 13.97 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Value" "strain-gauge_bridge" (at 11.43 11.43 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "frodo_fancyfins:strain-gauge_bridge" (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)
)
(symbol "strain-gauge_bridge_1_1"
(rectangle (start -7.62 10.16) (end 7.62 -10.16)
(stroke (width 0) (type default))
(fill (type background))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "Vcc" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -6.35 180) (length 2.54)
(name "R22" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at -10.16 0 0) (length 2.54)
(name "V1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "V2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 6.35 0) (length 2.54)
(name "R11" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 3.81 0) (length 2.54)
(name "R11" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -3.81 0) (length 2.54)
(name "R12" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -6.35 0) (length 2.54)
(name "R12" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 6.35 180) (length 2.54)
(name "R21" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 3.81 180) (length 2.54)
(name "R21" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -3.81 180) (length 2.54)
(name "R22" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3VA" (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.3VA" (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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VA\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VA_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.3VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 85.09 48.26) (diameter 0) (color 0 0 0 0)
(uuid 86528130-2f9b-47bf-9c93-7f2e8ce1f9d3)
)
(junction (at 93.98 38.1) (diameter 0) (color 0 0 0 0)
(uuid 9f9a78e8-5f96-4355-94d3-472a31a75fc6)
)
(wire (pts (xy 106.68 58.42) (xy 119.38 58.42))
(stroke (width 0) (type default))
(uuid 066f9d7d-a375-43cf-97a7-064d2c2b186a)
)
(wire (pts (xy 116.205 45.72) (xy 119.38 45.72))
(stroke (width 0) (type default))
(uuid 10d62e51-e50e-4dab-9e09-ba1183449af2)
)
(wire (pts (xy 69.85 48.26) (xy 69.85 38.1))
(stroke (width 0) (type default))
(uuid 112b52b5-fc6b-4128-80ab-7973a8a80d01)
)
(wire (pts (xy 69.85 38.1) (xy 74.93 38.1))
(stroke (width 0) (type default))
(uuid 1b55e5c6-0dcb-4708-b771-275423a5923a)
)
(wire (pts (xy 24.13 44.45) (xy 35.56 44.45))
(stroke (width 0) (type default))
(uuid 1efab4a6-1b8a-415f-bec8-fb06c9db2c77)
)
(wire (pts (xy 118.11 49.53) (xy 118.11 52.07))
(stroke (width 0) (type default))
(uuid 1f24de20-cd61-4030-8c11-5c32e3352f1a)
)
(wire (pts (xy 118.11 52.07) (xy 119.38 52.07))
(stroke (width 0) (type default))
(uuid 1f87ed51-9720-46ca-bfc1-f3eab0945a02)
)
(wire (pts (xy 116.205 38.1) (xy 116.205 45.72))
(stroke (width 0) (type default))
(uuid 24e06e0a-01c9-4617-a1c4-f209ed99a2d4)
)
(wire (pts (xy 45.72 34.29) (xy 45.72 35.56))
(stroke (width 0) (type default))
(uuid 342e0d5d-e3c4-4b6f-804e-1fce5c59f40f)
)
(wire (pts (xy 93.98 38.1) (xy 93.98 50.8))
(stroke (width 0) (type default))
(uuid 37b85a33-052a-45d4-9f4d-f8d1afd5314e)
)
(wire (pts (xy 24.13 41.91) (xy 24.13 44.45))
(stroke (width 0) (type default))
(uuid 4c9a3a1e-4cf1-42b4-a0ff-d6184f1afacc)
)
(wire (pts (xy 118.11 54.61) (xy 119.38 54.61))
(stroke (width 0) (type default))
(uuid 58298841-42bf-43ab-a2d9-dc28739b0cee)
)
(wire (pts (xy 85.09 58.42) (xy 85.09 60.96))
(stroke (width 0) (type default))
(uuid 593279d6-d76c-45d1-88f5-8fbb54d9d931)
)
(wire (pts (xy 72.39 48.26) (xy 74.93 48.26))
(stroke (width 0) (type default))
(uuid 66e8bdd7-b83d-4cef-a64d-a32773b8d07f)
)
(wire (pts (xy 55.88 52.07) (xy 67.31 52.07))
(stroke (width 0) (type default))
(uuid 68a3365a-82f5-4597-a9df-5b675a8cd968)
)
(wire (pts (xy 82.55 48.26) (xy 85.09 48.26))
(stroke (width 0) (type default))
(uuid 6ee7ac85-692d-4df3-876b-b951576a619f)
)
(wire (pts (xy 72.39 48.26) (xy 72.39 71.12))
(stroke (width 0) (type default))
(uuid 70415548-5876-490b-b143-c199f314a6e6)
)
(wire (pts (xy 93.98 38.1) (xy 116.205 38.1))
(stroke (width 0) (type default))
(uuid 795fdf17-e64f-4750-91e1-471972cb0005)
)
(wire (pts (xy 55.88 44.45) (xy 67.31 44.45))
(stroke (width 0) (type default))
(uuid 7c9b93db-9a30-4630-ae25-e7f6d14cca48)
)
(wire (pts (xy 55.88 54.61) (xy 67.31 54.61))
(stroke (width 0) (type default))
(uuid 80f9dd64-1b0c-4ac0-bc70-8890c08741da)
)
(wire (pts (xy 24.13 52.07) (xy 24.13 54.61))
(stroke (width 0) (type default))
(uuid 8237100e-5d8f-48df-a447-1160219a7ec7)
)
(wire (pts (xy 35.56 52.07) (xy 24.13 52.07))
(stroke (width 0) (type default))
(uuid 84e68f9c-8fde-4589-a69c-265910c3511f)
)
(wire (pts (xy 35.56 48.26) (xy 21.59 48.26))
(stroke (width 0) (type default))
(uuid 88e26011-d411-49c1-957c-519bed597583)
)
(wire (pts (xy 24.13 41.91) (xy 35.56 41.91))
(stroke (width 0) (type default))
(uuid 8e76d33b-7f34-4105-8aa6-32d811157084)
)
(wire (pts (xy 93.98 60.96) (xy 93.98 58.42))
(stroke (width 0) (type default))
(uuid 8ee0328b-dc43-4bab-b5ce-5fbf28443cb3)
)
(wire (pts (xy 118.11 49.53) (xy 110.49 49.53))
(stroke (width 0) (type default))
(uuid 948a27e9-430c-4c04-a820-273120f4a138)
)
(wire (pts (xy 67.31 52.07) (xy 67.31 54.61))
(stroke (width 0) (type default))
(uuid 9f886924-8e58-491a-ab4f-f1bd095e488a)
)
(wire (pts (xy 45.72 25.4) (xy 45.72 26.67))
(stroke (width 0) (type default))
(uuid a08ef51b-35ad-47f7-a5f8-88239b78d57e)
)
(wire (pts (xy 110.49 57.15) (xy 118.11 57.15))
(stroke (width 0) (type default))
(uuid aba2024e-41cf-4926-9e89-681cbbd8e928)
)
(wire (pts (xy 85.09 48.26) (xy 119.38 48.26))
(stroke (width 0) (type default))
(uuid ad153dd3-60e6-4d43-9ed4-4eafc4b0eb00)
)
(wire (pts (xy 118.11 57.15) (xy 118.11 54.61))
(stroke (width 0) (type default))
(uuid b8ba105c-8533-4c3c-b4d2-80fdee064858)
)
(wire (pts (xy 21.59 48.26) (xy 21.59 71.12))
(stroke (width 0) (type default))
(uuid bd800eac-bc33-4d2e-b81e-a1da24d75f3b)
)
(wire (pts (xy 24.13 54.61) (xy 35.56 54.61))
(stroke (width 0) (type default))
(uuid d66426a4-d991-4958-a66e-ad611b670960)
)
(wire (pts (xy 82.55 38.1) (xy 93.98 38.1))
(stroke (width 0) (type default))
(uuid d8253742-acd7-4f99-9e02-eaee4ea61cba)
)
(wire (pts (xy 55.88 41.91) (xy 67.31 41.91))
(stroke (width 0) (type default))
(uuid dd0f7c11-a5ab-491a-9b70-416de42c4b58)
)
(wire (pts (xy 21.59 71.12) (xy 72.39 71.12))
(stroke (width 0) (type default))
(uuid e3bae64e-02db-4e9b-9862-e18ee1726168)
)
(wire (pts (xy 85.09 50.8) (xy 85.09 48.26))
(stroke (width 0) (type default))
(uuid e691f52d-3579-4db0-a9c8-2db60dcc5af2)
)
(wire (pts (xy 67.31 41.91) (xy 67.31 44.45))
(stroke (width 0) (type default))
(uuid eed76305-720c-465f-8f9b-8018efbc8f65)
)
(wire (pts (xy 55.88 48.26) (xy 69.85 48.26))
(stroke (width 0) (type default))
(uuid f0f78255-c737-4641-a21c-6ff281e1081d)
)
(rectangle (start 13.97 13.97) (end 165.1 72.39)
(stroke (width 0) (type default))
(fill (type none))
(uuid 7adf90c2-9d75-4bac-8c79-8d079f33cb8e)
)
(text "Resistor to lower bridge\ncurrent to around 50mA." (at 55.88 27.94 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1bb42c88-194a-4897-8ed0-41be251534bc)
)
(text "Strain Gauge" (at 15.24 17.78 0)
(effects (font (size 2 2)) (justify left bottom))
(uuid 7850a146-90a5-46f6-b1dc-203398de8622)
)
(text "High pass with fc = 0.7Hz for filtering\nfront-back temperature differential voltages."
(at 113.03 30.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 93d46cda-d8bf-4988-8c43-1ca7a42a3f65)
)
(text "Gain of 100." (at 113.03 33.02 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b79b37d7-75d5-43e8-971a-7b7c8d0433c5)
)
(label "grid_front-" (at 55.88 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a07f3ebb-e8f3-4f9e-82fa-e4dbacd5905c)
)
(label "grid_front+" (at 24.13 41.91 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b928b665-b58d-423b-8da0-f55d26a19ed9)
)
(label "grid_back+" (at 24.13 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ca5c5585-fa4b-4a6e-aeca-d25462837d20)
)
(label "grid_back-" (at 55.88 41.91 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f4b31e0e-42d3-46f8-87a3-2a8d7a2da7eb)
)
(hierarchical_label "REF" (shape input) (at 106.68 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 064b151f-92cf-4979-a3bc-aa8fbd5f9ef0)
)
(hierarchical_label "SG_GND" (shape input) (at 45.72 60.96 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 20956625-db44-4826-b81e-6fbc2ef871d9)
)
(hierarchical_label "VOUT" (shape input) (at 139.7 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8a050f09-6929-4370-901a-054f14d396ac)
)
(netclass_flag "" (length 2.54) (shape round) (at 67.31 44.45 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1163c4f1-7acc-43ae-9a74-af3987cacaa1)
(property "Netclass" "grid" (at 62.23 46.355 0)
(effects (font (size 1.27 1.27) italic) (justify left))
)
)
(netclass_flag "" (length 2.54) (shape round) (at 67.31 54.61 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 652f3a1b-fc28-4d54-8524-8e1653bb3c1c)
(property "Netclass" "grid" (at 62.23 56.515 0)
(effects (font (size 1.27 1.27) italic) (justify left))
)
)
(netclass_flag "" (length 2.54) (shape round) (at 24.13 54.61 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 87ce381e-f165-4b76-9af9-4417a16116fa)
(property "Netclass" "grid" (at 25.4 56.515 0)
(effects (font (size 1.27 1.27) italic) (justify left))
)
)
(netclass_flag "" (length 2.54) (shape round) (at 24.13 44.45 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8fe76d28-a0bd-4dcf-b34d-3faf28e3f394)
(property "Netclass" "grid" (at 25.4 46.355 0)
(effects (font (size 1.27 1.27) italic) (justify left))
)
)
(symbol (lib_id "power:+3.3VA") (at 45.72 25.4 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0d5d9c76-f4c4-479f-ac68-bfaee223ced6)
(property "Reference" "#PWR012" (at 45.72 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (at 45.72 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 45.72 25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 45.72 25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6537993f-68fd-49b3-8e78-4c83b8a292e8))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754"
(reference "#PWR012") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "#PWR068") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "#PWR069") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 93.98 60.96 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 127e648c-031c-464c-b7f4-7ef90c4b0726)
(property "Reference" "#PWR096" (at 93.98 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 93.98 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 93.98 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 93.98 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 75eb5e58-df42-4a1f-ad6e-273914aa6c48))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "#PWR096") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "#PWR097") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 129.54 63.5 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1ead3bb3-65b8-4762-b3af-71629980957a)
(property "Reference" "#PWR066" (at 129.54 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 129.54 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 129.54 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8c0d689d-5cac-46b4-903d-cad70d81f58c))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "#PWR066") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "#PWR071") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 93.98 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 281d3640-31d1-4e55-865b-8344167107f9)
(property "Reference" "R9" (at 95.25 53.34 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100k" (at 95.25 55.88 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 92.202 54.61 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 93.98 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC#" "C25741" (at 93.98 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" (at 93.98 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 65694c2e-1096-437f-b02a-d4ed0cd3c9bf))
(pin "2" (uuid fde966e2-8ea6-4e7c-9fff-39d34a084b00))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "R9") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "R12") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3VA") (at 154.94 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3223568d-5788-42be-b43f-a909f2ac4fa6)
(property "Reference" "#PWR012" (at 154.94 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (at 154.94 45.72 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 154.94 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 154.94 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2dfd2ea7-412c-4704-a1b7-dbb18f667f22))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754"
(reference "#PWR012") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "#PWR090") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "#PWR092") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 85.09 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 32501539-b146-4355-8443-a52033b4c7b4)
(property "Reference" "R5" (at 86.36 53.34 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100k" (at 86.36 55.88 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 83.312 54.61 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 85.09 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC#" "C25741" (at 85.09 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" (at 85.09 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ecfd6aaa-652b-48a6-abb1-e69ac297a949))
(pin "2" (uuid a05510fd-a687-49c0-8545-2b37e1f44574))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "R5") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "R19") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 154.94 52.07 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4de201b9-a3e1-4e87-8b00-7cf3290540f3)
(property "Reference" "C43" (at 157.2641 51.2289 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "100n" (at 157.2641 53.7658 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (at 154.94 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 154.94 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC#" "C307331" (at 154.94 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "" (at 154.94 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part#" "" (at 154.94 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 464c09de-e78f-4124-b267-a0344b5f521c))
(pin "2" (uuid 719c2968-1747-4fe6-9944-9635e050dbcc))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754"
(reference "C43") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "C45") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "C46") (unit 1)
)
)
(project "euroc_fc"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "C38") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 154.94 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 56bb3f12-d229-40bf-85eb-f563461b1a94)
(property "Reference" "#PWR085" (at 154.94 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 154.94 59.0534 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 154.94 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 154.94 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 618f6a1d-5e0b-45f2-a515-7493f7e08af1))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754"
(reference "#PWR085") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "#PWR091") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "#PWR093") (unit 1)
)
)
(project "euroc_fc"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR019") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 110.49 53.34 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6649a2a5-5293-4051-aa69-ad72fd5e4786)
(property "Reference" "R6" (at 111.76 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DNP" (at 111.76 54.61 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 108.712 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 110.49 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3bbdc261-4d3b-401f-9d5b-8149e062fb36))
(pin "2" (uuid a4dd1171-b359-4ee9-84f2-7196485551a8))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "R6") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "R13") (unit 1)
)
)
)
)
(symbol (lib_name "INA826_1") (lib_id "frodo_fancyfins:INA826") (at 129.54 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7060846d-e316-45f1-95d3-bb4cea97f126)
(property "Reference" "U14" (at 139.7 38.1 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)) (justify right top))
)
(property "Value" "INA826" (at 142.24 40.64 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)) (justify right top))
)
(property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" (at 148.59 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 148.59 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC#" "C38433" (at 129.54 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Texas Instruments" (at 129.54 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e2471666-6d20-4dc7-acee-157f2cc93652))
(pin "6" (uuid eaf3a608-e17b-44c6-9cc0-b573eca9a753))
(pin "2" (uuid 179d9381-dbdb-421c-a854-63cd04b454ef))
(pin "4" (uuid e248c414-7738-4ef7-88f8-bf2163dff724))
(pin "7" (uuid 1e822764-c80b-48c7-a7d7-8afe32836d62))
(pin "5" (uuid 9468e5e2-1cb2-4f9c-9afb-303651a16d1d))
(pin "8" (uuid c9404aca-8286-4acb-885b-5dd7dc0deb38))
(pin "3" (uuid 39c14afe-b5e2-49ab-bc18-799aed47dccf))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "U14") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "U19") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 78.74 38.1 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 73a32a19-6003-4378-a62b-599bff4eaffa)
(property "Reference" "C47" (at 78.74 32.385 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "2u2" (at 78.74 34.925 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 82.55 37.1348 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 78.74 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC#" "C23630" (at 78.74 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6a9d83f9-42e2-4580-9fbc-e85b178c5138))
(pin "2" (uuid a75ef263-6473-489b-baa1-458887be3389))
(instances
(project "frodo_fancyfins"
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/49cec511-7b13-4cbc-87f1-b842fd9f9998"
(reference "C47") (unit 1)
)
(path "/6b822b14-450b-45c3-a34b-8e18c5811754/5195ebe2-c291-4ed3-9cd9-cf447ee2c8e4"
(reference "C48") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 30.48 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 981975b1-6b39-4596-b930-cb4284d2314f)
(property "Reference" "R10" (at 46.99 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "33" (at 46.99 31.75 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 43.942 30.48 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Notes" "TOO HIGH CURRENT!" (at 45.72 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" (at 45.72 30.48 0)