-
Notifications
You must be signed in to change notification settings - Fork 0
/
I2C.kicad_sch
1394 lines (1358 loc) · 46.7 KB
/
I2C.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 10924d01-5893-4e04-8ca8-4d82a6bb3aed)
(paper "A4")
(title_block
(title "Hat Labs Marine Engine & Tank interface (HALMET)")
(date "2024-01-18")
(rev "1.0.1")
(company "Hat Labs Ltd")
(comment 1 "https://creativecommons.org/licenses/by-sa/4.0")
(comment 2 "To view a copy of this license, visit ")
(comment 3 "HALMET is licensed under CC BY-SA 4.0.")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (at 0 -7.62 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 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 0 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 -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_TVS" (at 0 -2.54 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" "diode TVS thyrector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_TVS_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.27)
(xy 0 -1.27)
(xy -0.508 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.27)
(xy -2.54 -1.27)
(xy 2.54 1.27)
(xy 2.54 -1.27)
(xy -2.54 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_TVS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A1" (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 "A2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (at 3.81 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" "L ferrite bead inductor filter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(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.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "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.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "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 137.16 109.22) (diameter 0) (color 0 0 0 0)
(uuid 17ed5bd0-2a2e-4d48-83f4-ab563068ea68)
)
(junction (at 63.5 90.17) (diameter 0) (color 0 0 0 0)
(uuid 41748748-ea9b-4c67-99ca-5640bbef82a3)
)
(junction (at 71.12 87.63) (diameter 0) (color 0 0 0 0)
(uuid 59d0f886-2d7a-48ca-a81c-b6c36a0eaa8a)
)
(junction (at 148.59 68.58) (diameter 0) (color 0 0 0 0)
(uuid 67f6b8a9-ecce-464c-916d-f934341d2161)
)
(junction (at 137.16 68.58) (diameter 0) (color 0 0 0 0)
(uuid 82aafdad-5a3d-4f01-bc97-0b4650af1de1)
)
(junction (at 137.16 88.9) (diameter 0) (color 0 0 0 0)
(uuid 928ebf01-f8a3-4ab9-94fa-685e9e169af1)
)
(junction (at 85.09 85.09) (diameter 0) (color 0 0 0 0)
(uuid be485cc9-e348-4a20-a373-c3b68029faea)
)
(junction (at 148.59 109.22) (diameter 0) (color 0 0 0 0)
(uuid cb7cd691-89c3-42f8-908e-e945525dbc9a)
)
(junction (at 148.59 88.9) (diameter 0) (color 0 0 0 0)
(uuid d36b5d69-e051-4ad3-9459-d144c0ecf55d)
)
(wire (pts (xy 85.09 85.09) (xy 90.17 85.09))
(stroke (width 0) (type default))
(uuid 0b4e945b-a9e8-4718-834f-e70b02477824)
)
(wire (pts (xy 46.99 82.55) (xy 83.82 82.55))
(stroke (width 0) (type default))
(uuid 11b966a8-0196-43de-9737-21c08a474645)
)
(wire (pts (xy 133.35 68.58) (xy 137.16 68.58))
(stroke (width 0) (type default))
(uuid 1b46fd1e-6af2-4fad-9f38-a1287d91d15b)
)
(wire (pts (xy 63.5 101.6) (xy 63.5 105.41))
(stroke (width 0) (type default))
(uuid 274ab162-a26a-4254-b885-06ab032a3709)
)
(wire (pts (xy 92.71 50.8) (xy 87.63 50.8))
(stroke (width 0) (type default))
(uuid 2fff460b-46ca-4517-8ba4-184fc49d9675)
)
(wire (pts (xy 148.59 68.58) (xy 151.13 68.58))
(stroke (width 0) (type default))
(uuid 316cc89a-00c1-4b28-bedf-45cc6c8d19d4)
)
(wire (pts (xy 146.05 109.22) (xy 148.59 109.22))
(stroke (width 0) (type default))
(uuid 34e133bf-a8e4-429e-818d-ebbec6b465b5)
)
(wire (pts (xy 74.93 57.15) (xy 80.01 57.15))
(stroke (width 0) (type default))
(uuid 36fd1d08-b9bd-4bc9-9e4e-2d25c03c60ce)
)
(wire (pts (xy 146.05 68.58) (xy 148.59 68.58))
(stroke (width 0) (type default))
(uuid 38da9dea-36e9-4d2f-8181-f9bbb74e307f)
)
(wire (pts (xy 46.99 87.63) (xy 71.12 87.63))
(stroke (width 0) (type default))
(uuid 43f83e34-9c13-48d3-957b-244bc7fab3a9)
)
(wire (pts (xy 63.5 90.17) (xy 90.17 90.17))
(stroke (width 0) (type default))
(uuid 4aa95de8-8712-433e-b3ba-5de32e8fdbe6)
)
(wire (pts (xy 71.12 105.41) (xy 71.12 101.6))
(stroke (width 0) (type default))
(uuid 4f94287d-7389-44cb-92a6-55ff5bcd03df)
)
(wire (pts (xy 74.93 50.8) (xy 80.01 50.8))
(stroke (width 0) (type default))
(uuid 537343b3-e81d-40f5-9597-c2d31637083d)
)
(wire (pts (xy 71.12 87.63) (xy 90.17 87.63))
(stroke (width 0) (type default))
(uuid 5696b4b5-8405-470a-988e-585601b8520a)
)
(wire (pts (xy 133.35 109.22) (xy 137.16 109.22))
(stroke (width 0) (type default))
(uuid 5af144ba-216a-4ca3-91b2-a7ea05c8ee02)
)
(wire (pts (xy 148.59 109.22) (xy 151.13 109.22))
(stroke (width 0) (type default))
(uuid 60e40d6a-c37a-40fd-882a-6908ef52f97c)
)
(wire (pts (xy 137.16 109.22) (xy 138.43 109.22))
(stroke (width 0) (type default))
(uuid 61ea7daf-b2f9-4c78-976f-bdf878ac8cb7)
)
(wire (pts (xy 133.35 88.9) (xy 137.16 88.9))
(stroke (width 0) (type default))
(uuid 82a7cb56-09e4-4ee4-b763-f58d5c8e31f1)
)
(wire (pts (xy 46.99 85.09) (xy 85.09 85.09))
(stroke (width 0) (type default))
(uuid 87e89f7a-1f32-4099-994c-f55819065adc)
)
(wire (pts (xy 137.16 88.9) (xy 138.43 88.9))
(stroke (width 0) (type default))
(uuid 8e9f1010-c9b7-400f-966a-2849f3dc70df)
)
(wire (pts (xy 137.16 68.58) (xy 138.43 68.58))
(stroke (width 0) (type default))
(uuid 910bd68e-78fd-434b-828f-6121336b2b07)
)
(wire (pts (xy 83.82 74.93) (xy 87.63 74.93))
(stroke (width 0) (type default))
(uuid 91de58ce-64b8-42e2-8774-6851df17e623)
)
(wire (pts (xy 85.09 85.09) (xy 85.09 93.98))
(stroke (width 0) (type default))
(uuid 94ebbb96-a089-470a-b304-4ab759ebf37f)
)
(wire (pts (xy 71.12 93.98) (xy 71.12 87.63))
(stroke (width 0) (type default))
(uuid 9b0ec67b-f5fb-48dd-b725-68d95445297f)
)
(wire (pts (xy 87.63 74.93) (xy 87.63 77.47))
(stroke (width 0) (type default))
(uuid a5058069-1236-4eae-8c47-bb0e706b2d4e)
)
(wire (pts (xy 85.09 105.41) (xy 85.09 101.6))
(stroke (width 0) (type default))
(uuid b6c4135e-5f26-4c12-97e0-dbf015bfb576)
)
(wire (pts (xy 63.5 90.17) (xy 63.5 93.98))
(stroke (width 0) (type default))
(uuid b813327f-8012-43f7-8e78-af8d712d9d8a)
)
(wire (pts (xy 46.99 90.17) (xy 63.5 90.17))
(stroke (width 0) (type default))
(uuid c17d50d3-9d52-4d9b-8436-de0470b641f7)
)
(wire (pts (xy 148.59 88.9) (xy 151.13 88.9))
(stroke (width 0) (type default))
(uuid c991c12f-906c-48ce-8863-b44f072e8d64)
)
(wire (pts (xy 146.05 88.9) (xy 148.59 88.9))
(stroke (width 0) (type default))
(uuid e091cd3c-fc47-4c41-8476-0ec47526e265)
)
(wire (pts (xy 83.82 82.55) (xy 83.82 74.93))
(stroke (width 0) (type default))
(uuid ede5ab0d-9d11-4b47-8d0f-090cf3e9d513)
)
(wire (pts (xy 92.71 57.15) (xy 87.63 57.15))
(stroke (width 0) (type default))
(uuid fabb2626-0634-4a70-9288-6a834bc6d91c)
)
(label "SDA_CONN" (at 133.35 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 58f1bc01-f6fe-4f35-a699-42f4549c8d48)
)
(label "I2C_3V3" (at 90.17 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 645689be-6780-4bb2-a829-b90543634ab0)
)
(label "SDA_CONN" (at 90.17 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6adee9fe-bc4f-4d39-b623-74859d607fbc)
)
(label "SCL_CONN" (at 90.17 87.63 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8c76f0ee-46bf-48da-a1a4-40848f3341e7)
)
(label "I2C_3V3" (at 133.35 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 92066313-10ed-48db-98fc-066e84fe27c3)
)
(label "SCL_CONN" (at 133.35 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid aed836fc-d90a-41cf-8dec-4fbb75c78e42)
)
(hierarchical_label "SCL" (shape input) (at 74.93 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 15d7253e-5f50-4592-b0b0-14913d4012c4)
)
(hierarchical_label "SDA" (shape input) (at 151.13 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 84f50e4d-585d-4b4d-ba0e-c1c77dfebe8b)
)
(hierarchical_label "SCL" (shape input) (at 151.13 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b96eb5c3-f8f8-4123-b1ec-edfe937b1a24)
)
(hierarchical_label "SDA" (shape input) (at 74.93 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cee68776-3485-4621-b6be-14a194a7e834)
)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 41.91 85.09 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f95eaac)
(property "Reference" "J702" (at 43.9928 77.0382 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Conn_01x04" (at 43.9928 79.3496 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 41.91 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 41.91 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C124413" (at 41.91 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;3.81;90" (at 41.91 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e844299-5583-4726-abff-79fc5e2e1885))
(pin "2" (uuid 9bf4198f-c781-4fc6-967d-b020bfae46ed))
(pin "3" (uuid 89b6996e-0789-4d93-84ed-e1de109c4cd6))
(pin "4" (uuid d025c3d3-371a-4e69-8eac-20420d5333f3))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "J702") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 151.13 68.58 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c418c)
(property "Reference" "#PWR0712" (at 147.32 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 154.3812 68.199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 151.13 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 151.13 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 463e8527-827c-4dc2-9113-6b5b43a332b0))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "#PWR0712") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 137.16 113.03 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c419c)
(property "Reference" "C706" (at 134.239 111.8616 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "33pF/50V" (at 134.239 114.173 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 136.1948 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1663" (at 137.16 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 137.16 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 93c82583-7ca4-47b9-81d3-24b1eb689576))
(pin "2" (uuid 272b22b3-993f-4aea-8ccb-6c3766e10993))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C706") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 137.16 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c41a4)
(property "Reference" "#PWR0711" (at 137.16 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 137.287 121.2342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 137.16 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 137.16 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 30140782-6a4f-4b06-ac4c-9f85a6545a6c))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "#PWR0711") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 137.16 92.71 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c41aa)
(property "Reference" "C705" (at 134.239 91.5416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "33pF/50V" (at 134.239 93.853 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 136.1948 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1663" (at 137.16 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 137.16 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb39c9e1-02e7-4aa0-b465-b07b21359a18))
(pin "2" (uuid 82365b79-0400-487d-ac55-ea260ac313a2))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C705") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 137.16 96.52 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c41b0)
(property "Reference" "#PWR0710" (at 137.16 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 137.287 100.9142 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 137.16 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 137.16 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e74d0f26-89cf-4fec-bc8c-0ecee93704d1))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "#PWR0710") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 148.59 92.71 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c41b6)
(property "Reference" "C702" (at 151.511 91.5416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "33pF" (at 151.511 93.853 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 149.5552 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 148.59 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1562" (at 148.59 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 148.59 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 762f68fd-8f97-4ed4-b58c-65ed0e1fc5f4))
(pin "2" (uuid 8eb5e39d-b5a0-4c21-86e2-1aedc614238a))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C702") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 148.59 113.03 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9c41bc)
(property "Reference" "C703" (at 151.511 111.8616 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "33pF" (at 151.511 114.173 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 149.5552 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 148.59 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1562" (at 148.59 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 148.59 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a95ed89a-d1a3-4f97-ae33-cc87c37af41c))
(pin "2" (uuid 8ae2c698-cadb-4ede-a11b-197bc23097af))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C703") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 137.16 72.39 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9cc342)
(property "Reference" "C704" (at 134.239 71.2216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF/50V" (at 134.239 73.533 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 136.1948 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C13585" (at 137.16 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 137.16 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6a8cc4fd-ed17-44e5-bfb7-46917ca0d3a9))
(pin "2" (uuid ba594d80-47f1-4fb9-b9d2-336f450a9db5))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C704") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 137.16 76.2 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9cc34a)
(property "Reference" "#PWR0709" (at 137.16 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 137.287 80.5942 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 137.16 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 137.16 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 51f2a6ca-4cd3-4ce3-978a-4401f110cfa2))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "#PWR0709") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 148.59 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005f9cc362)
(property "Reference" "C701" (at 151.511 71.2216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 151.511 73.533 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 149.5552 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 148.59 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C15525" (at 148.59 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 148.59 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d49979b8-f8c0-4b71-b019-93209c4e779c))
(pin "2" (uuid 8ab7d49f-70fc-4e87-aac5-cb6c5e6bb885))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "C701") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 83.82 50.8 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fa92d31)
(property "Reference" "R701" (at 86.36 48.26 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "2k" (at 81.28 48.26 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 83.82 49.022 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C4109" (at 83.82 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 83.82 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid daeb8d38-76f7-457a-8ebe-f8ef84d420fe))
(pin "2" (uuid ea889ca5-2f6e-468c-838d-6a55c791a018))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "R701") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 92.71 50.8 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fa92d3a)
(property "Reference" "#PWR0704" (at 92.71 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 92.329 46.4058 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 92.71 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 92.71 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2f73977b-8ddf-4038-9f9c-58deae86ddcf))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "#PWR0704") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 83.82 57.15 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fa92d40)
(property "Reference" "R702" (at 86.36 54.61 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "2k" (at 81.28 54.61 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 83.82 55.372 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C4109" (at 83.82 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "" (at 83.82 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4304d68e-bdb6-4b70-94b2-279d4976a29d))
(pin "2" (uuid 1e4ac8c8-ce6f-4526-9144-5c1619fd5c54))
(instances
(project "HALMET"
(path "/dff502f1-2fe5-4c09-a767-aabc78c2e052/00000000-0000-0000-0000-00005f9be197"
(reference "R702") (unit 1)
)
)
)