-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsens.kicad_sch
1502 lines (1456 loc) · 55.1 KB
/
tsens.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 e0b36e60-bb2b-489c-a764-1b81e551ce62)
(paper "User" 210.007 148.006)
(title_block
(title "temperature-logger")
(date "2022-01-19")
(rev "v1.0")
(company "Jana Marie Hemsing")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic_MountingPin:Conn_01x02_MountingPin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_MountingPin" (id 1) (at 1.27 -5.08 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??-1MP*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_MountingPin_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -1.016 -4.572)
(xy 1.016 -4.572)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "Mounting" (at 0 -4.191 0)
(effects (font (size 0.381 0.381)))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 90) (length 3.048)
(name "MountPin" (effects (font (size 1.27 1.27))))
(number "MP" (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" (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:Ferrite_Bead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Ferrite_Bead_Small" (id 1) (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Ferrite_Bead_Small_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Ferrite_Bead_Small_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (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 "Sensor_Temperature:MAX31855KASA" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MAX31855KASA" (id 1) (at 1.27 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 25.4 -8.89 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/MAX31855.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Cold Junction Termocouple Interface SPI" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cold Junction K-type Termocouple Interface, SPI, SO8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX31855KASA_0_1"
(rectangle (start -7.62 7.62) (end 7.62 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "MAX31855KASA_1_1"
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -2.54 0) (length 2.54)
(name "T-" (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 "T+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 5.08 180) (length 2.54)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -2.54 180) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 2.54 180) (length 2.54)
(name "SO" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "otter: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.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(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))))
)
)
)
(symbol "otter:TLV9001" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 7.62 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLV9001" (id 1) (at 7.62 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (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" "SOT23-5 OPAMP" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "TLV9001" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLV9001_1_1"
(polyline
(pts
(xy -3.81 5.08)
(xy 6.35 0)
(xy -3.81 -5.08)
(xy -3.81 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output line (at 8.89 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 0 -6.35 90) (length 3.2004)
(name "V-" (effects (font (size 0.508 0.508))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 6.35 270) (length 3.2004)
(name "V+" (effects (font (size 0.508 0.508))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 0 3.556 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 \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 107.95 48.26) (diameter 0) (color 0 0 0 0)
(uuid 017667a9-f5de-49c7-af53-4f9af2f3a311)
)
(junction (at 144.78 35.56) (diameter 0) (color 0 0 0 0)
(uuid 186c3f1e-1c94-498e-abf2-1069980f6633)
)
(junction (at 142.24 78.74) (diameter 0) (color 0 0 0 0)
(uuid 36696ac6-2db1-4b52-ae3d-9f3c89d2042f)
)
(junction (at 152.4 50.8) (diameter 0) (color 0 0 0 0)
(uuid 44e77d57-d16f-4723-a95f-1ac45276c458)
)
(junction (at 114.3 48.26) (diameter 0) (color 0 0 0 0)
(uuid 4c144ffa-02d0-42da-aef1-f5175cbde9c0)
)
(junction (at 146.05 50.8) (diameter 0) (color 0 0 0 0)
(uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
)
(junction (at 158.75 40.64) (diameter 0) (color 0 0 0 0)
(uuid 51f5536d-48d2-4807-be44-93f427952b0e)
)
(junction (at 160.02 83.82) (diameter 0) (color 0 0 0 0)
(uuid 524d7aa8-362f-459a-b2ae-4ca2a0b1612b)
)
(junction (at 139.7 35.56) (diameter 0) (color 0 0 0 0)
(uuid 583b0bf3-0699-44db-b975-a241ad040fa4)
)
(junction (at 142.24 83.82) (diameter 0) (color 0 0 0 0)
(uuid 5dbda758-e74b-4ccf-ad68-495d537d68ba)
)
(junction (at 130.81 26.67) (diameter 0) (color 0 0 0 0)
(uuid 80b9a57f-3326-43ca-b6ca-5e911992b3c4)
)
(junction (at 160.02 50.8) (diameter 0) (color 0 0 0 0)
(uuid a08c061a-7f5b-4909-b673-0d0a59a012a3)
)
(junction (at 62.23 63.5) (diameter 0) (color 0 0 0 0)
(uuid a311f3c6-42e3-4584-9725-4a62ff91b6e3)
)
(junction (at 125.73 26.67) (diameter 0) (color 0 0 0 0)
(uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
)
(junction (at 140.97 50.8) (diameter 0) (color 0 0 0 0)
(uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
)
(junction (at 158.75 78.74) (diameter 0) (color 0 0 0 0)
(uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
)
(wire (pts (xy 142.24 83.82) (xy 149.86 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 042fe62b-53aa-4e86-97d0-9ccb1e16a895)
)
(wire (pts (xy 161.29 80.01) (xy 162.56 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 046ca2d8-3ca1-4c64-8090-c45e9adcf30e)
)
(wire (pts (xy 144.78 35.56) (xy 144.78 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b)
)
(wire (pts (xy 134.62 45.72) (xy 139.7 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 105d44ff-63b9-4299-9078-473af583971a)
)
(wire (pts (xy 114.3 26.67) (xy 114.3 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
)
(wire (pts (xy 130.81 26.67) (xy 139.7 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
)
(wire (pts (xy 139.7 35.56) (xy 139.7 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28d267fd-6d61-43bb-9705-8d59d7a44e81)
)
(wire (pts (xy 125.73 26.67) (xy 114.3 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
)
(wire (pts (xy 158.75 40.64) (xy 158.75 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
)
(wire (pts (xy 125.73 24.13) (xy 125.73 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
)
(wire (pts (xy 149.86 78.74) (xy 142.24 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e6b1f7e-e4c3-43a1-ae90-c85aa40696d5)
)
(wire (pts (xy 107.95 48.26) (xy 114.3 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3382bf79-b686-4aeb-9419-c8ab591662bb)
)
(wire (pts (xy 152.4 40.64) (xy 158.75 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31)
)
(wire (pts (xy 62.23 64.77) (xy 62.23 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41524d81-a7f7-45af-a8c6-15609b68d1fd)
)
(wire (pts (xy 142.24 78.74) (xy 138.43 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 460147d8-e4b6-4910-88e9-07d1ddd6c2df)
)
(wire (pts (xy 140.97 50.8) (xy 146.05 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
)
(wire (pts (xy 152.4 48.26) (xy 152.4 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5626e5e1-59f4-4773-828e-16057ddc3518)
)
(wire (pts (xy 134.62 50.8) (xy 140.97 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
)
(wire (pts (xy 160.02 50.8) (xy 160.02 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
)
(wire (pts (xy 140.97 60.96) (xy 140.97 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d)
)
(wire (pts (xy 144.78 35.56) (xy 139.7 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 761492e2-a989-4596-80c3-fcd6943df072)
)
(wire (pts (xy 152.4 43.18) (xy 152.4 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7700fef1-de5b-4197-be2d-18385e1e18f9)
)
(wire (pts (xy 107.95 48.26) (xy 107.95 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d2422a2-6679-4b2f-b253-47eef0da2414)
)
(wire (pts (xy 113.03 83.82) (xy 118.11 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9)
)
(wire (pts (xy 134.62 60.96) (xy 114.3 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 830aee7f-dfce-42cd-85ef-6370f6dc02f5)
)
(wire (pts (xy 161.29 82.55) (xy 161.29 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8313e187-c805-4927-8002-313a51839243)
)
(wire (pts (xy 160.02 43.18) (xy 160.02 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 848901d5-fdee-4920-a04d-fbc03c912e79)
)
(wire (pts (xy 158.75 40.64) (xy 162.56 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86143bb0-7899-4df8-b1df-baa3c0ac7889)
)
(wire (pts (xy 139.7 26.67) (xy 139.7 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
)
(wire (pts (xy 146.05 52.07) (xy 146.05 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8efe6411-1919-4082-b5b8-393585e068c8)
)
(wire (pts (xy 160.02 83.82) (xy 161.29 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fd0b33a-45bf-4216-9d7e-a62e1c071730)
)
(wire (pts (xy 160.02 43.18) (xy 162.56 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90d503cf-92b2-4120-a4b0-03a2eddde893)
)
(wire (pts (xy 158.75 40.64) (xy 158.75 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96ee9b8e-4543-4639-b9ea-44b8baaaf94e)
)
(wire (pts (xy 161.29 82.55) (xy 162.56 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4541b62-7a39-4707-9c6f-80dce1be9cee)
)
(wire (pts (xy 154.94 83.82) (xy 160.02 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4911204-1308-4d17-90a9-1ff5f9c57c9b)
)
(wire (pts (xy 154.94 78.74) (xy 158.75 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5cea0b5-192f-476b-a3c8-0c26e2231699)
)
(wire (pts (xy 139.7 60.96) (xy 140.97 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d)
)
(wire (pts (xy 138.43 83.82) (xy 142.24 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b853d9ac-7829-468f-99ac-dc9996502e94)
)
(wire (pts (xy 107.95 48.26) (xy 104.14 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc204c79-0619-4b16-889d-335bfdd71ce0)
)
(wire (pts (xy 62.23 63.5) (xy 55.88 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcacf97a-a49b-480c-96ed-a857f56faeb2)
)
(wire (pts (xy 152.4 50.8) (xy 160.02 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3)
)
(wire (pts (xy 62.23 63.5) (xy 62.23 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c38f28b6-5bd4-4cf9-b273-1e7b230f6b42)
)
(wire (pts (xy 130.81 24.13) (xy 130.81 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
)
(wire (pts (xy 118.11 78.74) (xy 113.03 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
)
(wire (pts (xy 161.29 78.74) (xy 161.29 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e002a979-85bc-451a-a77b-29ce2a8f19f9)
)
(wire (pts (xy 125.73 26.67) (xy 125.73 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e6bf257d-5112-423c-b70a-adf8446f29da)
)
(wire (pts (xy 130.81 26.67) (xy 130.81 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
)
(wire (pts (xy 114.3 60.96) (xy 114.3 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee9a2826-2513-480e-a552-3d07af5bf8a5)
)
(wire (pts (xy 158.75 78.74) (xy 161.29 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f240e733-157e-4a15-812f-78f42d8a8322)
)
(wire (pts (xy 146.05 50.8) (xy 152.4 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f87a4771-a0a7-489f-9d85-4574dbea71cc)
)
(wire (pts (xy 114.3 48.26) (xy 119.38 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8a90052-1a8b-4ce5-a1fd-87db944dceac)
)
(wire (pts (xy 144.78 36.83) (xy 144.78 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc12372f-6e31-40f9-8043-b00b861f0171)
)
(hierarchical_label "SCK" (shape input) (at 113.03 76.2 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d095387-710d-4633-a6c3-04eab60b585a)
)
(hierarchical_label "LED" (shape input) (at 55.88 63.5 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5099f397-6fe7-454f-899c-34e2b5f22ca7)
)
(hierarchical_label "NTC" (shape input) (at 104.14 48.26 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936)
)
(hierarchical_label "CS" (shape input) (at 113.03 83.82 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a12b751e-ae7a-468c-af3d-31ed4d501b01)
)
(hierarchical_label "CIPO" (shape input) (at 113.03 78.74 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ea7c53f9-3aa8-4198-9879-de95a5257915)
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 167.64 43.18 0) (mirror x)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000616cb9f8)
(property "Reference" "J11" (id 0) (at 169.672 42.9768 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DNP" (id 1) (at 169.672 40.6654 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal" (id 2) (at 167.64 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 167.64 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 31756d60-7908-4a6c-805b-33a880b8e428))
(pin "2" (uuid d39c0856-b3e1-43db-bd40-938d431a0cb2))
)
(symbol (lib_id "power:+3V3") (at 144.78 29.21 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006170d065)
(property "Reference" "#PWR0216" (id 0) (at 144.78 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 145.161 24.8158 0))
(property "Footprint" "" (id 2) (at 144.78 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 86acdc9b-7cba-4c87-abec-ddcc365a3f4c))
)
(symbol (lib_id "Device:C_Small") (at 107.95 52.07 180)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006170d06b)
(property "Reference" "C31" (id 0) (at 110.2868 50.9016 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "DNP" (id 1) (at 110.2868 53.213 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:C_0402" (id 2) (at 107.95 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 107.95 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0f153138-1f89-44f3-af86-e4ca0b474967))
(pin "2" (uuid e27482a1-1cc5-421e-8ccb-3e11e0cdc6dc))
)
(symbol (lib_id "otter:GND") (at 107.95 54.61 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006170d073)
(property "Reference" "#PWR0217" (id 0) (at 107.95 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 108.077 59.0042 0))
(property "Footprint" "" (id 2) (at 107.95 54.61 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 107.95 54.61 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 44c99155-26c0-448f-8540-2e8aef8c91ff))
)
(symbol (lib_id "Device:R_Small") (at 158.75 36.83 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006170d8e3)
(property "Reference" "R56" (id 0) (at 160.2486 35.6616 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DNP" (id 1) (at 160.2486 37.973 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:R_0402" (id 2) (at 158.75 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 158.75 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e7287864-2c8a-4947-bb42-3305e38d0561))
(pin "2" (uuid b7456df0-a2cc-4e82-9311-bc81247dde40))
)
(symbol (lib_id "otter:TLV9001") (at 128.27 48.26 180)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061711648)
(property "Reference" "U12" (id 0) (at 121.92 54.61 0))
(property "Value" "TLV9001" (id 1) (at 121.92 52.07 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 128.27 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.27 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4882415b-2f62-4f3c-96b5-fa62a6c761b5))
(pin "2" (uuid 736618cc-28c8-414f-a872-01e2e43442d7))
(pin "3" (uuid 34855f22-bfbe-445f-a6e7-10056056a2b7))
(pin "4" (uuid 8510de21-5939-4926-9b10-b466af3eda2a))
(pin "5" (uuid 4ad2aa99-1f93-49c7-beb7-0fd3b221fbae))
)
(symbol (lib_id "otter:GND") (at 128.27 41.91 180)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006171931b)
(property "Reference" "#PWR0218" (id 0) (at 128.27 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 128.143 37.5158 0))
(property "Footprint" "" (id 2) (at 128.27 41.91 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 128.27 41.91 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 50acd868-bf71-4a52-84b1-99381fac85b8))
)
(symbol (lib_id "power:+3V3") (at 128.27 54.61 180)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000617199f3)
(property "Reference" "#PWR0219" (id 0) (at 128.27 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 127.889 59.0042 0))
(property "Footprint" "" (id 2) (at 128.27 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.27 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 306e0787-2b27-47c5-a7e5-827d04c414e7))
)
(symbol (lib_id "Device:R_Small") (at 146.05 54.61 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006171abfb)
(property "Reference" "R54" (id 0) (at 147.5486 53.4416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DNP" (id 1) (at 147.5486 55.753 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:R_0402" (id 2) (at 146.05 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 146.05 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 855e8325-69b1-43a8-8734-18434e881ad0))
(pin "2" (uuid 2244b5d3-7385-4c2e-a4c2-18880adc91d6))
)
(symbol (lib_id "otter:GND") (at 146.05 57.15 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006171fb65)
(property "Reference" "#PWR0220" (id 0) (at 146.05 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 146.177 61.5442 0))
(property "Footprint" "" (id 2) (at 146.05 57.15 0)
(effects (font (size 1.524 1.524)))
)