-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtempsensors.kicad_sch
1611 lines (1568 loc) · 63.2 KB
/
tempsensors.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 20211123) (generator eeschema)
(uuid d6b7b88e-2494-48cb-92f8-b198ad48df72)
(paper "A4")
(title_block
(date "2022-01-12")
(rev "4")
(company "Copyright © 2022 Christian Kuhtz")
(comment 2 "CERN-OHL-W v2 or later")
)
(lib_symbols
(symbol "Analog_ADC_TI:ADS7142IRUGR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -19.05 16.51 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ADS7142IRUGR" (id 1) (at 11.43 -21.59 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Analog_ADC_TI:ADS7142IRUGR" (id 2) (at 0 -35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 5.08 -10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Manufacturer" "TI" (id 4) (at 0 -30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "ADS7142IRUGR" (id 5) (at 0 -33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ADS7142 Nanopower, Dual-Channel, Programmable Sensor Monitor, I2C" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "RUG0010A" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ADS7142IRUGR_0_1"
(polyline
(pts
(xy 1.27 -10.16)
(xy 1.27 -15.24)
(xy 5.08 -15.24)
(xy 7.62 -12.7)
(xy 5.08 -10.16)
(xy 1.27 -10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 1.27 10.16)
(xy 1.27 5.08)
(xy 5.08 5.08)
(xy 7.62 7.62)
(xy 5.08 10.16)
(xy 1.27 10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "ADS7142IRUGR_1_1"
(rectangle (start -20.32 15.24) (end 20.32 -20.32)
(stroke (width 0.3) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at -25.4 10.16 0) (length 5.08)
(name "AVDD" (effects (font (size 1.4986 1.4986))))
(number "1" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at -25.4 -17.78 0) (length 5.08)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "10" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 25.4 7.62 180) (length 5.08)
(name "AINP_AIN0" (effects (font (size 1.4986 1.4986))))
(number "2" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 25.4 -12.7 180) (length 5.08)
(name "AINM_AIN1" (effects (font (size 1.4986 1.4986))))
(number "3" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at -25.4 -12.7 0) (length 5.08)
(name "ADDR" (effects (font (size 1.4986 1.4986))))
(number "4" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at -25.4 -5.08 0) (length 5.08)
(name "BUSY/~{RDY}" (effects (font (size 1.4986 1.4986))))
(number "5" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at -25.4 -7.62 0) (length 5.08)
(name "~{ALERT}" (effects (font (size 1.4986 1.4986))))
(number "6" (effects (font (size 1.4986 1.4986))))
)
(pin bidirectional line (at -25.4 0 0) (length 5.08)
(name "SDA" (effects (font (size 1.4986 1.4986))))
(number "7" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at -25.4 2.54 0) (length 5.08)
(name "SCL" (effects (font (size 1.4986 1.4986))))
(number "8" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at -25.4 7.62 0) (length 5.08)
(name "DVDD" (effects (font (size 1.4986 1.4986))))
(number "9" (effects (font (size 1.4986 1.4986))))
)
)
)
(symbol "Connector_Header_Samtec:TSM-102-01-L-SV" (pin_numbers hide) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "TSM-102-01-L-SV" (id 1) (at -8.89 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Connector_Header_Samtec:SAMTEC_TSM-102-01-L-SV" (id 2) (at -26.67 -16.51 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Manufacturer" "Samtec" (id 4) (at -3.81 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MPN" "TSM-102-01-L-SV" (id 5) (at 0 -13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "2-pin male header, 0.1\" pitch, surface mount" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TSM-102-01-L-SV_0_0"
(rectangle (start -2.54 -5.08) (end 2.54 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at 7.62 0 180) (length 5.08)
(name "1" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 7.62 -2.54 180) (length 5.08)
(name "2" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(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_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCP9808T-E_MC_1" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 12.7 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MCP9808T-E_MC_1" (id 1) (at 2.54 -11.43 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Sensor_I2C_Microchip:MCP9808T-E&slash_MC" (id 2) (at 1.27 -28.575 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_fp_filters" "DFN8_2x3MC_MCH DFN8_2x3MC_MCH-M DFN8_2x3MC_MCH-L" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP9808T-E_MC_1_0_1"
(rectangle (start -7.62 10.16) (end 12.7 -10.16)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "MCP9808T-E_MC_1_1_1"
(pin bidirectional line (at -10.16 5.08 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 1.27 0) (length 2.54)
(name "Alert" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 -5.08 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -7.62 180) (length 2.54)
(name "ePAD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Sensor_I2C_Microchip:MCP9808T-E_MC" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 12.7 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MCP9808T-E_MC" (id 1) (at 2.54 -11.43 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Sensor_I2C_Microchip:MCP9808T-E&slash_MC" (id 2) (at 1.27 -28.575 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_fp_filters" "DFN8_2x3MC_MCH DFN8_2x3MC_MCH-M DFN8_2x3MC_MCH-L" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP9808T-E_MC_0_1"
(rectangle (start -7.62 10.16) (end 12.7 -10.16)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "MCP9808T-E_MC_1_1"
(pin bidirectional line (at -10.16 5.08 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 1.27 0) (length 2.54)
(name "Alert" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 -5.08 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -7.62 180) (length 2.54)
(name "ePAD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (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" (id 5) (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) (color 0 0 0 0))
(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 252.095 92.71) (diameter 0.9144) (color 0 0 0 0)
(uuid 0b0ba3cf-7dd8-4214-a3a2-46c30d216aa0)
)
(junction (at 69.215 129.54) (diameter 0) (color 0 0 0 0)
(uuid 151373a8-c91a-4e0a-8e44-301c9cc6617b)
)
(junction (at 151.765 173.355) (diameter 0) (color 0 0 0 0)
(uuid 23a2f2ad-d5ed-4ddd-9a6e-304f3f4c7413)
)
(junction (at 66.675 91.44) (diameter 0) (color 0 0 0 0)
(uuid 27410224-8efb-4df4-8b5e-2243dbf70c2e)
)
(junction (at 40.005 63.5) (diameter 0.9144) (color 0 0 0 0)
(uuid 295e37ce-70a2-458e-a2ff-df964164ee81)
)
(junction (at 151.765 141.605) (diameter 0) (color 0 0 0 0)
(uuid 2c4ad0b8-4100-44f0-b2b0-7f09885a6625)
)
(junction (at 48.26 167.005) (diameter 0) (color 0 0 0 0)
(uuid 3ff1e189-f3f7-4c2d-9077-e2e8bd83de9e)
)
(junction (at 80.01 139.065) (diameter 0) (color 0 0 0 0)
(uuid 44454e0a-c721-4005-86e8-4de9fc15f0db)
)
(junction (at 51.435 63.5) (diameter 0.9144) (color 0 0 0 0)
(uuid 4bf6002a-a77b-44b7-bbcf-588e59c1f25c)
)
(junction (at 58.42 167.005) (diameter 0) (color 0 0 0 0)
(uuid 4ddefa87-ad66-4cec-9ddc-ace8dfbf8ed0)
)
(junction (at 151.765 161.925) (diameter 0) (color 0 0 0 0)
(uuid 51999850-002d-4033-ae86-cfdb01e1020c)
)
(junction (at 170.815 64.77) (diameter 0.9144) (color 0 0 0 0)
(uuid 5aca7982-15fd-492c-a4c6-b8485a78aa8a)
)
(junction (at 58.42 129.54) (diameter 0) (color 0 0 0 0)
(uuid 6a30c869-82eb-4e67-a342-364c0c9a6dd9)
)
(junction (at 215.265 64.77) (diameter 0) (color 0 0 0 0)
(uuid 800391cb-97a3-4c9b-b59c-a1705982c2ba)
)
(junction (at 175.26 129.54) (diameter 0) (color 0 0 0 0)
(uuid 872acf4c-6f81-4d55-b3d7-60e2ca4387c6)
)
(junction (at 121.285 88.9) (diameter 0.9144) (color 0 0 0 0)
(uuid 8f0e36aa-6304-424c-b6d9-9dc96e8575ae)
)
(junction (at 121.285 91.44) (diameter 0.9144) (color 0 0 0 0)
(uuid 95bacb59-9ca9-433a-a353-f16818e53323)
)
(junction (at 170.815 74.93) (diameter 0.9144) (color 0 0 0 0)
(uuid 9ee46e9d-f35e-4b99-b5f6-a1e45a705fb9)
)
(junction (at 164.465 173.355) (diameter 0) (color 0 0 0 0)
(uuid a12211e1-06c8-4d25-97d5-94d4cf6f31f4)
)
(junction (at 137.795 161.925) (diameter 0) (color 0 0 0 0)
(uuid a35710f1-c718-4732-a9c9-9e81c97e5007)
)
(junction (at 182.245 64.77) (diameter 0.9144) (color 0 0 0 0)
(uuid a97a8160-5dc6-45a3-931b-744764e67c71)
)
(junction (at 48.26 129.54) (diameter 0) (color 0 0 0 0)
(uuid cb448c39-27be-49ad-add9-bf9ae4397548)
)
(junction (at 137.795 141.605) (diameter 0) (color 0 0 0 0)
(uuid cd9e3b67-cd22-48ef-becc-aa5274300ff4)
)
(junction (at 40.005 73.66) (diameter 0.9144) (color 0 0 0 0)
(uuid dabee665-a722-4d3f-9d93-8278827066cc)
)
(junction (at 151.765 153.035) (diameter 0) (color 0 0 0 0)
(uuid e9da9400-019f-4b60-9bf0-3f21716b0b01)
)
(junction (at 80.01 129.54) (diameter 0) (color 0 0 0 0)
(uuid ecae088e-0f4f-4950-8f33-8d41212561e3)
)
(junction (at 197.485 92.71) (diameter 0) (color 0 0 0 0)
(uuid fc6b956a-3a79-440e-8729-bb6bf35cb81f)
)
(no_connect (at 82.55 161.925) (uuid 0d7ba851-5f24-4287-833e-8a938e45d70e))
(no_connect (at 82.55 154.305) (uuid 5c886ade-d6ef-4630-ab14-ed357b451918))
(wire (pts (xy 94.615 86.36) (xy 112.395 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 002f8f85-9706-4e75-81b1-a997e2039c08)
)
(wire (pts (xy 127.635 82.55) (xy 94.615 82.55))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 04595194-fb88-45a7-9885-9ec28b8d8266)
)
(wire (pts (xy 151.765 173.355) (xy 151.765 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 059cd37f-12db-4e9f-bb26-b33e0e4a82ce)
)
(wire (pts (xy 151.765 165.1) (xy 151.765 161.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05cd2a14-a8a0-4dc9-bb32-5b892f886751)
)
(wire (pts (xy 48.26 129.54) (xy 48.26 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09902315-b8e7-4168-9bc7-4a73e654f03c)
)
(wire (pts (xy 252.095 90.17) (xy 248.285 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0b8ddb63-0ca1-4e49-8dab-53176f5cfe7c)
)
(wire (pts (xy 58.42 167.005) (xy 82.55 167.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d92105f-65d8-4bd6-bdfe-89bf503ee1d1)
)
(wire (pts (xy 137.795 141.605) (xy 137.795 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0eb9608a-43b4-4010-b9b8-e0936fe7d967)
)
(wire (pts (xy 151.765 144.78) (xy 151.765 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16ae3118-23c0-4d6c-a9c3-124689d16542)
)
(wire (pts (xy 40.005 63.5) (xy 36.195 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 18186147-8656-4651-8e04-9ec9b48cba9f)
)
(wire (pts (xy 182.245 64.77) (xy 182.245 67.31))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1dca8dfe-5fcc-4a66-90b0-a6c4d0ca22d4)
)
(wire (pts (xy 80.01 139.065) (xy 82.55 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e1479e1-2417-4165-8eb6-7b38f0e0c601)
)
(wire (pts (xy 230.505 77.47) (xy 225.425 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 21d76045-479e-4f17-a4fe-2e09c0ca22d2)
)
(wire (pts (xy 200.025 92.71) (xy 197.485 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22ddd913-228e-4b84-b0be-927cb9a8f83c)
)
(wire (pts (xy 22.225 149.225) (xy 82.55 149.225))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27ee4dac-499b-4b91-ac79-8da4a30709ee)
)
(wire (pts (xy 40.005 71.12) (xy 40.005 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 281d51b7-d77d-458e-9a97-ce0259a58a14)
)
(wire (pts (xy 69.215 91.44) (xy 66.675 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2886728a-d5ee-44c4-93f3-776e5735af9f)
)
(wire (pts (xy 225.425 92.71) (xy 243.205 92.71))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 297fc0b8-be31-42f5-99b8-bb4df89850aa)
)
(wire (pts (xy 215.265 64.77) (xy 215.265 72.39))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2bfdf1e5-d155-4820-943d-f3fd2ed97e78)
)
(wire (pts (xy 170.815 64.77) (xy 167.005 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2fc9920b-f054-4b64-bfcb-3f03e7017ad3)
)
(wire (pts (xy 260.35 83.82) (xy 225.425 83.82))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 382a485b-7e38-4781-9e65-80fe7b6544c1)
)
(wire (pts (xy 48.26 139.7) (xy 48.26 167.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b298014-1492-4b1a-9e16-f0dbbdc29ab1)
)
(wire (pts (xy 69.215 134.62) (xy 69.215 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3faafbd1-b931-48ca-a2d2-f7bbaadeeeea)
)
(wire (pts (xy 137.795 161.925) (xy 137.795 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44049c95-aa65-4f57-b25d-babee5601790)
)
(wire (pts (xy 167.64 141.605) (xy 167.64 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 458025df-a6f4-4207-8e39-d839a5b49b7e)
)
(wire (pts (xy 84.455 63.5) (xy 84.455 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 45b79c95-b4f9-42e8-b767-28bf483bc1d6)
)
(wire (pts (xy 170.815 64.77) (xy 170.815 67.31))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 45c7fd2f-4750-483b-b49e-2eb270a15ed6)
)
(wire (pts (xy 170.815 74.93) (xy 170.815 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 461d52ad-3e15-4388-b506-135637747f18)
)
(wire (pts (xy 182.245 64.77) (xy 215.265 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 494c073d-fe94-4b2a-88bd-03d5d0b7c2d9)
)
(wire (pts (xy 58.42 129.54) (xy 69.215 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ae32641-22d5-43cf-9225-a7fb3657042f)
)
(wire (pts (xy 197.485 92.71) (xy 197.485 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b65f0a1-d0d7-42cb-a33e-37583926bbc2)
)
(wire (pts (xy 80.01 129.54) (xy 175.26 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c42c90a-7d1e-4234-8474-60a7869a29ad)
)
(wire (pts (xy 66.675 91.44) (xy 66.675 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d529626-b676-4835-afa0-3c36919f164f)
)
(wire (pts (xy 33.655 129.54) (xy 48.26 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f74eef1-3567-4419-9a6d-232435c92a37)
)
(wire (pts (xy 121.285 88.9) (xy 121.285 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4f9e7885-0a34-45d3-bb87-2c931acf2c62)
)
(wire (pts (xy 48.26 167.005) (xy 58.42 167.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50cbb020-b416-43f9-90ad-4ebccc1aab17)
)
(wire (pts (xy 133.35 161.925) (xy 137.795 161.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 527319a4-9160-4e0d-aa37-82a4c29367d2)
)
(wire (pts (xy 167.005 59.69) (xy 230.505 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 52f3ee5b-9459-4477-aa4d-3119e7895175)
)
(wire (pts (xy 175.26 129.54) (xy 179.705 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 559a9b35-2bb2-49ba-94d1-f4d25232d72a)
)
(wire (pts (xy 102.235 78.74) (xy 94.615 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 59961656-c7b8-4a72-baa2-7e3532c23c84)
)
(polyline (pts (xy 147.32 110.49) (xy 278.13 110.49))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 5c11ee0a-060b-4250-a142-d54a3f8d80e7)
)
(wire (pts (xy 137.795 153.035) (xy 151.765 153.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cc5f2e5-546d-40c7-be2f-4c0c5694b261)
)
(wire (pts (xy 40.005 63.5) (xy 40.005 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5d5e5a0e-99bd-4b58-b0a5-163b82475361)
)
(wire (pts (xy 121.285 86.36) (xy 121.285 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 614e906a-cff9-4194-9bf7-05f8346a7ec2)
)
(wire (pts (xy 66.675 88.9) (xy 66.675 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61db3a15-131a-4070-af28-80822dbda801)
)
(wire (pts (xy 230.505 59.69) (xy 230.505 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6228250f-5f6a-4f29-a3b4-7297b0a55dfa)
)
(wire (pts (xy 179.705 152.4) (xy 175.26 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65485127-5815-4f4c-8330-329d32377a21)
)
(wire (pts (xy 69.215 139.7) (xy 69.215 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 663925d5-718c-4c7d-927f-8ebb1ae0df68)
)
(wire (pts (xy 80.01 139.065) (xy 80.01 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6731c605-d79d-4223-b4c7-6a061ac05150)
)
(wire (pts (xy 36.195 55.88) (xy 102.235 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6a75ef4a-6cf7-4df3-96bd-b622874be450)
)
(wire (pts (xy 51.435 63.5) (xy 51.435 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b2ef190-0896-46bb-9340-ebad1e493122)
)
(wire (pts (xy 121.285 88.9) (xy 117.475 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b5b5b68-ad6d-4e04-b306-e348dd5011d8)
)
(wire (pts (xy 233.045 80.01) (xy 225.425 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 712e521b-5e83-47c0-8d3a-c6a6fd519982)
)
(wire (pts (xy 58.42 139.7) (xy 58.42 167.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71d5c79b-c244-47bd-8d13-45917d4c9350)
)
(wire (pts (xy 99.695 76.2) (xy 94.615 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72c0c51a-d3e1-48a4-89d4-01b5ff7b2245)
)
(wire (pts (xy 51.435 73.66) (xy 51.435 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72e3e666-343f-45aa-9d64-f43f6a6c65f0)
)
(wire (pts (xy 167.005 57.15) (xy 233.045 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 777bb3f8-09db-402f-8fcc-37886ddc8ab4)
)
(wire (pts (xy 58.42 129.54) (xy 58.42 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 785f6d30-7d45-4d2b-b0cf-1da77e2a3d2b)
)
(polyline (pts (xy 147.32 20.955) (xy 147.32 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 789af063-0b00-4cac-9648-c15a0f94decf)
)
(wire (pts (xy 51.435 63.5) (xy 40.005 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7cdece0b-c52e-4efb-a16b-d47b12f3da63)
)
(wire (pts (xy 151.765 161.925) (xy 167.64 161.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ddd8a04-0e0e-4d0e-9aef-0f10f1ba1519)
)
(wire (pts (xy 164.465 153.035) (xy 164.465 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7df1c0a4-7dbe-40ad-ad2e-410f2cac6d84)
)
(wire (pts (xy 252.095 87.63) (xy 252.095 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7eb52909-f7cf-4d83-b81d-4fa1d841d90e)
)
(wire (pts (xy 151.765 161.925) (xy 137.795 161.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8087f81d-2755-48c9-8436-a5f649f8f0b0)
)
(wire (pts (xy 137.795 149.86) (xy 137.795 153.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8310b521-d375-4cf0-922c-cb160d01a3f1)
)
(wire (pts (xy 225.425 90.17) (xy 243.205 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 86501149-ddcf-46db-8345-8cc4a4322a26)
)
(wire (pts (xy 200.025 90.17) (xy 197.485 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 872bd72f-22f1-48d0-b147-6bf81c24a0de)
)
(wire (pts (xy 94.615 91.44) (xy 112.395 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8a7abc4f-72d3-4faf-aa67-dfe4cd576008)
)
(wire (pts (xy 252.095 87.63) (xy 248.285 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ae0778f-9b11-4aaf-9df6-2f4b7a797e58)
)
(wire (pts (xy 69.215 129.54) (xy 80.01 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f212eb2-0400-455b-9cdc-a3829005339f)
)
(wire (pts (xy 99.695 58.42) (xy 99.695 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 92ebfe95-5ddf-4200-b3b0-a0c02a0cb6d3)
)
(wire (pts (xy 80.01 139.065) (xy 80.01 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92f8b677-d8e8-4e7e-939c-04f95ccc9405)
)
(wire (pts (xy 252.095 92.71) (xy 252.095 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 94d6eafe-adc8-4bde-b12b-520b974a4595)
)
(wire (pts (xy 48.26 129.54) (xy 58.42 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 965e4ded-1c09-4b5b-9bc7-52ce621dd918)
)
(wire (pts (xy 48.26 177.165) (xy 48.26 167.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 977334c9-1b60-4c94-bcb9-88935382a52a)
)
(wire (pts (xy 151.765 141.605) (xy 167.64 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9464147-e74b-4b2f-9a09-c5b43afd0cd3)
)
(wire (pts (xy 121.285 91.44) (xy 121.285 100.33))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a9b6a540-015e-457d-b229-9f0a0aa6dc7b)
)
(wire (pts (xy 182.245 74.93) (xy 170.815 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ab70d709-9d3e-443b-bdf7-f24bfb41a770)
)
(wire (pts (xy 69.215 156.845) (xy 82.55 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac0cc47d-f1e1-468d-ba22-0de34c1da35e)
)
(wire (pts (xy 151.765 153.035) (xy 164.465 153.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0816c51-3d98-406b-8cf8-ce52e4b13a69)
)
(wire (pts (xy 197.485 90.17) (xy 197.485 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b37af364-8207-4cb1-bcba-770a529eff75)
)
(wire (pts (xy 233.045 57.15) (xy 233.045 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b3e40603-451f-4793-900b-995ac02cab64)
)
(wire (pts (xy 102.235 55.88) (xy 102.235 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb5cd0b2-1568-4c9d-9131-95cb7fc1b834)
)
(wire (pts (xy 51.435 73.66) (xy 40.005 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c05131e3-cd5f-47a4-860e-f2bfa33d3f5f)
)
(wire (pts (xy 252.095 90.17) (xy 252.095 92.71))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c2f00d9d-6435-4f2c-8811-73977eacaefd)
)
(wire (pts (xy 164.465 173.355) (xy 164.465 177.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8a0d6e9-d059-4a65-b5d1-c46a75bb1f36)
)
(wire (pts (xy 51.435 63.5) (xy 84.455 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ccbd9b0f-2fd2-494e-a1b4-4245449b9746)
)
(wire (pts (xy 137.795 173.355) (xy 151.765 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd69bbb9-91b2-46fb-8ea9-5bdf787354ad)
)
(wire (pts (xy 40.005 73.66) (xy 40.005 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d3037e8e-4d87-446e-b073-594c09110866)
)
(wire (pts (xy 36.195 58.42) (xy 99.695 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d4650f0d-8bc7-4ef0-9fe7-d1298493942f)
)
(wire (pts (xy 133.35 141.605) (xy 137.795 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d48ca865-4570-48c8-bd02-7981b161b9ad)
)
(wire (pts (xy 151.765 173.355) (xy 164.465 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7ecbcb9-6882-4395-b491-0cba9d61481f)
)
(wire (pts (xy 151.765 141.605) (xy 137.795 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d810ff44-51b0-430d-85b3-331c6d87ca55)
)
(wire (pts (xy 22.225 146.685) (xy 82.55 146.685))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d96e064a-de0d-41d1-9fbb-5a2c8a0cf538)
)
(wire (pts (xy 182.245 64.77) (xy 170.815 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid da0d1b73-b974-4187-80a1-f6f3979ffb00)
)
(wire (pts (xy 167.64 161.925) (xy 167.64 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ddf808c2-b2fc-4437-b5af-2cefe62745b2)
)
(polyline (pts (xy 16.51 110.49) (xy 147.32 110.49))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid e1dd3c5d-ed71-42f0-8b99-7c278c0f2985)
)
(wire (pts (xy 167.64 154.94) (xy 179.705 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e31f335f-cb99-4c34-a860-6a87a51ea01f)
)
(wire (pts (xy 94.615 88.9) (xy 112.395 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb3a0fc7-b4cd-464e-92c2-d2d0ae39ed53)
)
(wire (pts (xy 151.765 153.035) (xy 151.765 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb93105e-18e9-43bd-80c2-aef3cae97dd8)
)
(wire (pts (xy 225.425 87.63) (xy 243.205 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ec870a48-f010-4915-83cc-be7d76baa0d7)
)
(wire (pts (xy 182.245 74.93) (xy 182.245 72.39))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f2608c12-74ff-44ef-9504-b657d8e003a2)
)
(wire (pts (xy 121.285 91.44) (xy 117.475 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f290faf7-669c-4b17-abf1-b104fe2042fc)
)
(wire (pts (xy 167.64 132.08) (xy 179.705 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f46b1b2a-2b99-49d4-919a-dd7f4bf95612)
)
(wire (pts (xy 137.795 170.18) (xy 137.795 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f79be5bd-8ba8-4e97-a89c-e94e2e9b5f08)
)
(wire (pts (xy 252.095 92.71) (xy 248.285 92.71))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f90fd89a-84c5-4f43-9f96-65bd5e3ca280)
)
(wire (pts (xy 252.095 64.77) (xy 215.265 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f9107940-d367-4eb5-bc98-75f14c8965e3)
)
(wire (pts (xy 69.215 88.9) (xy 66.675 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid facb5d49-7d6d-461b-a4cb-ac262faa055a)
)
(wire (pts (xy 80.01 141.605) (xy 82.55 141.605))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd4360e3-b652-4797-89fb-aecb974d87e3)
)
(wire (pts (xy 170.815 72.39) (xy 170.815 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fe2f8f16-9e91-4744-9c67-1c39be2c5b9f)
)
(wire (pts (xy 175.26 129.54) (xy 175.26 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fed75725-7612-4e88-94e6-71c0b73f3c75)
)
(wire (pts (xy 121.285 86.36) (xy 117.475 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fed90821-bb73-4332-a3ec-8be88bf7053c)
)
(text "Temperature monitoring via I2C\n(place under or near M.2)"
(at 153.67 49.276 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid 04b8a57c-c4c0-4b55-ab0c-89d94beb4ff5)
)
(text "I2C base address??? + 0x0" (at 19.685 100.33 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid 0f5ee4a2-4043-46a2-a004-e8620dda00bd)
)
(text "FIXME" (at 150.495 96.52 0)
(effects (font (size 5 5) (thickness 1) bold italic) (justify left bottom))
(uuid 179f1483-b9e0-4c1c-bbe1-e09b1c4151c6)
)
(text "I2C base address??? + 0x1" (at 150.495 101.6 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid 59655a6e-29f1-4be4-9033-ba6c1d60d006)
)
(text "Sensors" (at 18.415 27.305 0)
(effects (font (size 5 5) (thickness 1) bold italic) (justify left bottom))
(uuid 608cd953-5025-4f16-bcae-e247e9486c36)
)
(text "I2C 0x18" (at 65.405 163.83 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid 8fd969c7-fa57-49f3-a07c-f53ba400083d)
)
(text "(cooling loop, etc)" (at 17.145 124.46 0)
(effects (font (size 2 2)) (justify left bottom))
(uuid 93a335fd-070d-4e0c-988c-c5a581118678)
)
(text "2x headers for 10K NTC thermistors" (at 17.145 120.65 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid a196f6e8-690d-4b07-b4c0-1cd3bccdebdb)
)
(text "Temperature monitoring via I2C\n(place under or near CM4)"
(at 22.86 48.006 0)
(effects (font (size 2 2) (thickness 0.4) bold italic) (justify left bottom))
(uuid a7dec7b1-4da6-42b4-b6fe-93fb375bdc6a)
)
(text "FIXME" (at 19.685 95.25 0)
(effects (font (size 5 5) (thickness 1) bold italic) (justify left bottom))
(uuid d48ad58c-afce-491a-a8c9-1531affe5f52)
)
(label "M.2_TEMP_A1" (at 225.425 90.17 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 52bd2fd7-335e-4a9f-8257-7870697fe6c1)
)
(label "M.2_TEMP_A0" (at 225.425 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 611a8749-e4a7-4b1b-995b-577448ad638b)
)
(label "CM4_TEMP_A1" (at 94.615 88.9 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 940d41c2-246e-441a-8aa8-435da93f7329)
)
(label "M.2_TEMP_A2" (at 225.425 92.71 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 986fa260-e2db-4856-82ed-c9f71d2f24d3)
)
(label "CM4_TEMP_A2" (at 94.615 91.44 0)