-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcharger.kicad_sch
1600 lines (1564 loc) · 56.7 KB
/
charger.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 90095a47-eade-405f-b9e9-51e97503383b)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.5058 -1.524) (end 0 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.5058 -0.508) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.5058 0.508) (end 0 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.5058 1.524) (end 0 2.032)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(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.508)
(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" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(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 "power:+3V3" (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" "+3V3" (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 \"+3V3\"" (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))
(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 "+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))))
)
)
)
(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))))
)
)
)
(symbol "ti-chargers:BQ24295" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -8.89 19.05 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Value" "BQ24295" (at 0 0 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm" (at -12.7 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/bq24295.pdf?ts=1694375402912&ref_url=https%253A%252F%252Fwww.ti.com%252Fpower-management%252Fbattery-management%252Fcharger-ics%252Fproducts.html" (at -12.7 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C165144" (at 0 15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BQ24295_0_0"
(pin power_in line (at -12.7 15.24 0) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -12.7 0) (length 2.54)
(name "ILIM" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "TS" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -10.16 0) (length 2.54)
(name "QON" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 15.24 180) (length 2.54)
(name "BAT" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -12.7 180) (length 2.54)
(name "SYS" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -21.59 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -2.54 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 11.43 0) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 7.62 180) (length 2.54)
(name "BTST" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -15.24 180) (length 2.54)
(name "REGN" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 11.43 180) (length 2.54)
(name "PMID" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 8.89 0) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -12.7 -7.62 0) (length 2.54)
(name "STAT" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 5.08 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -12.7 0 0) (length 2.54)
(name "INT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "OTG" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "BQ24295_1_0"
(pin power_out line (at 12.7 15.24 180) (length 2.54) hide
(name "BAT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -12.7 180) (length 2.54) hide
(name "SYS" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -21.59 90) (length 2.54) hide
(name "PGND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -2.54 180) (length 2.54) hide
(name "SW" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.7 15.24 0) (length 2.54) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -21.59 90) (length 2.54) hide
(name "PGND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
)
(symbol "BQ24295_1_1"
(rectangle (start -10.16 17.78) (end 10.16 -19.05)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
)
(junction (at 93.98 40.64) (diameter 0) (color 0 0 0 0)
(uuid 09a6e234-9f42-4b83-ba74-fcee1c86c188)
)
(junction (at 160.02 58.42) (diameter 0) (color 0 0 0 0)
(uuid 2c2f16ee-f102-4f7f-8611-1796cacd80d7)
)
(junction (at 181.61 68.58) (diameter 0) (color 0 0 0 0)
(uuid 388a0a34-44fb-4292-b159-f792e0448a67)
)
(junction (at 160.02 68.58) (diameter 0) (color 0 0 0 0)
(uuid 52c91e8e-6ffe-4655-a3db-e91c4ec9e733)
)
(junction (at 180.34 40.64) (diameter 0) (color 0 0 0 0)
(uuid 612a9cf9-5925-40f5-8c82-578cc1bd7a8e)
)
(junction (at 110.49 55.88) (diameter 0) (color 0 0 0 0)
(uuid 85509510-5387-4368-bafe-a1043c7c136a)
)
(junction (at 110.49 40.64) (diameter 0) (color 0 0 0 0)
(uuid a962e185-5c3d-48c4-87ed-a6ccf1ecf2c8)
)
(junction (at 102.87 40.64) (diameter 0) (color 0 0 0 0)
(uuid d211c42a-a774-4395-b4c6-82dc82e3a722)
)
(junction (at 172.72 68.58) (diameter 0) (color 0 0 0 0)
(uuid d5b60359-3dd8-4121-86a9-f9ebfcd1d4a6)
)
(junction (at 170.18 44.45) (diameter 0) (color 0 0 0 0)
(uuid d8117a9b-5b06-4a91-9ee3-c9c96a383aab)
)
(junction (at 102.87 53.34) (diameter 0) (color 0 0 0 0)
(uuid e5fcf456-fcf2-4eab-9ea9-524c7090fb61)
)
(junction (at 160.02 71.12) (diameter 0) (color 0 0 0 0)
(uuid ef1e80ed-a678-449d-bd00-e2d92d3d3e22)
)
(junction (at 129.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid f41aeed8-48af-4e8f-b849-e6a0264c5633)
)
(no_connect (at 133.35 55.88) (uuid d8796606-617b-4ec4-af39-c013b512acf3))
(no_connect (at 133.35 63.5) (uuid eaa5efe2-eb18-4b51-bb4f-f037264e3d6d))
(wire (pts (xy 160.02 68.58) (xy 172.72 68.58))
(stroke (width 0) (type default))
(uuid 00413792-10d2-4ace-bb63-ec31b65c05a0)
)
(wire (pts (xy 160.02 68.58) (xy 160.02 66.04))
(stroke (width 0) (type default))
(uuid 022eb308-d174-407b-996a-c77552d513a5)
)
(wire (pts (xy 160.02 55.88) (xy 160.02 58.42))
(stroke (width 0) (type default))
(uuid 0a13ec36-d278-4b03-836c-0fcef79d4760)
)
(wire (pts (xy 160.02 71.12) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid 0c9f9da5-f87c-438d-a2b6-373a5c64d8b0)
)
(wire (pts (xy 129.54 72.39) (xy 129.54 71.12))
(stroke (width 0) (type default))
(uuid 0ddc53ef-30b1-428d-a1fd-5e6e86edfcf2)
)
(wire (pts (xy 102.87 40.64) (xy 102.87 45.72))
(stroke (width 0) (type default))
(uuid 0f9ecb46-13ae-4a07-9be6-963cfc420da9)
)
(wire (pts (xy 133.35 44.45) (xy 114.3 44.45))
(stroke (width 0) (type default))
(uuid 126cea65-45d9-4b04-8c99-9e721a069252)
)
(wire (pts (xy 127 71.12) (xy 127 72.39))
(stroke (width 0) (type default))
(uuid 195b6e94-f21f-48f4-b1b7-7f345fbd8511)
)
(wire (pts (xy 129.54 77.47) (xy 129.54 83.82))
(stroke (width 0) (type default))
(uuid 23674ac6-fb17-4096-93a4-4c94e2d59c62)
)
(wire (pts (xy 92.71 40.64) (xy 93.98 40.64))
(stroke (width 0) (type default))
(uuid 25ddea18-691c-44a1-9ff8-7278647ec10f)
)
(wire (pts (xy 181.61 68.58) (xy 190.5 68.58))
(stroke (width 0) (type default))
(uuid 32fe18d2-dd61-46ea-aa60-5298405cd574)
)
(wire (pts (xy 129.54 53.34) (xy 133.35 53.34))
(stroke (width 0) (type default))
(uuid 34c36202-bae8-43e2-bd1f-cae9e45c9ebc)
)
(wire (pts (xy 172.72 68.58) (xy 172.72 69.85))
(stroke (width 0) (type default))
(uuid 34d90274-4cb0-4872-ad79-7df6d65d1db3)
)
(wire (pts (xy 116.84 55.88) (xy 110.49 55.88))
(stroke (width 0) (type default))
(uuid 3a931efa-8a67-4938-84e7-878d69e99251)
)
(wire (pts (xy 158.75 40.64) (xy 180.34 40.64))
(stroke (width 0) (type default))
(uuid 447634f8-9aca-42f5-aa70-c139eb0ba4fa)
)
(wire (pts (xy 119.38 68.58) (xy 119.38 72.39))
(stroke (width 0) (type default))
(uuid 4a2cebcd-3397-462b-9000-89765cc7b775)
)
(wire (pts (xy 172.72 68.58) (xy 181.61 68.58))
(stroke (width 0) (type default))
(uuid 4f4b1644-6072-404f-8779-470e6f847e40)
)
(wire (pts (xy 129.54 60.96) (xy 133.35 60.96))
(stroke (width 0) (type default))
(uuid 4fd75667-36bc-4e21-8f71-d68f170eae92)
)
(wire (pts (xy 120.65 57.15) (xy 120.65 58.42))
(stroke (width 0) (type default))
(uuid 500e73b1-729a-45b5-bb66-acf3b8beaba6)
)
(wire (pts (xy 110.49 50.8) (xy 110.49 55.88))
(stroke (width 0) (type default))
(uuid 520a08fa-d586-4b8e-b900-75bd4311b7c7)
)
(wire (pts (xy 158.75 58.42) (xy 160.02 58.42))
(stroke (width 0) (type default))
(uuid 564a7abb-ec3a-45a9-80e0-1cf65cbe1e50)
)
(wire (pts (xy 110.49 40.64) (xy 102.87 40.64))
(stroke (width 0) (type default))
(uuid 5790aeb9-1735-408b-954e-249484cd40bb)
)
(wire (pts (xy 160.02 48.26) (xy 160.02 50.8))
(stroke (width 0) (type default))
(uuid 5b64409c-ac77-4a30-9196-4da3bcc948ca)
)
(wire (pts (xy 180.34 50.8) (xy 180.34 52.07))
(stroke (width 0) (type default))
(uuid 5d3e4922-f5ba-485c-a9d0-3709ec11bad8)
)
(wire (pts (xy 114.3 53.34) (xy 102.87 53.34))
(stroke (width 0) (type default))
(uuid 5f9768c7-7339-4f50-a828-ab8f0a9a77a7)
)
(wire (pts (xy 120.65 58.42) (xy 133.35 58.42))
(stroke (width 0) (type default))
(uuid 643befc3-9ede-4f30-bfe6-999c4f4bbf0d)
)
(wire (pts (xy 158.75 71.12) (xy 160.02 71.12))
(stroke (width 0) (type default))
(uuid 66a95e18-5870-4235-80c5-9bdc2c295aa4)
)
(wire (pts (xy 181.61 68.58) (xy 181.61 69.85))
(stroke (width 0) (type default))
(uuid 687d5540-a14b-4656-ac7d-8e13ad38967a)
)
(wire (pts (xy 158.75 48.26) (xy 160.02 48.26))
(stroke (width 0) (type default))
(uuid 6bd99d33-acc8-49db-949c-fe492aeb2cff)
)
(wire (pts (xy 133.35 68.58) (xy 119.38 68.58))
(stroke (width 0) (type default))
(uuid 7b134fc4-ac65-449a-909c-703de802bae0)
)
(wire (pts (xy 129.54 71.12) (xy 133.35 71.12))
(stroke (width 0) (type default))
(uuid 7d256613-f6cd-4c75-9a92-0f286733fb64)
)
(wire (pts (xy 160.02 83.82) (xy 160.02 71.12))
(stroke (width 0) (type default))
(uuid 8517eefb-ecce-44bd-9884-19966c876a8a)
)
(wire (pts (xy 114.3 44.45) (xy 114.3 53.34))
(stroke (width 0) (type default))
(uuid 89c3e979-4d5c-4ae8-a48a-ab874139fa5d)
)
(wire (pts (xy 133.35 40.64) (xy 110.49 40.64))
(stroke (width 0) (type default))
(uuid 9a56f7b3-087a-4732-b5fa-ef636e9a8991)
)
(wire (pts (xy 102.87 53.34) (xy 102.87 55.88))
(stroke (width 0) (type default))
(uuid 9cde921f-4eb4-43c5-82eb-ddcc15ab1e0b)
)
(wire (pts (xy 129.54 66.04) (xy 133.35 66.04))
(stroke (width 0) (type default))
(uuid 9d5e110c-7eb9-49ea-997c-be9aeb8671c9)
)
(wire (pts (xy 116.84 46.99) (xy 116.84 55.88))
(stroke (width 0) (type default))
(uuid a3695224-035a-4409-8e22-e998bb4dba40)
)
(wire (pts (xy 181.61 74.93) (xy 181.61 77.47))
(stroke (width 0) (type default))
(uuid a6b4d39b-0dac-45c1-a878-1b2b3bc01766)
)
(wire (pts (xy 93.98 40.64) (xy 93.98 41.91))
(stroke (width 0) (type default))
(uuid a9a55a29-1ccb-43be-9a63-9e18de67be5e)
)
(wire (pts (xy 163.83 71.12) (xy 163.83 72.39))
(stroke (width 0) (type default))
(uuid ad6e20b1-f730-47ae-88df-367b3ad7eac6)
)
(wire (pts (xy 129.54 50.8) (xy 133.35 50.8))
(stroke (width 0) (type default))
(uuid ae5a65c9-7355-4cf0-a113-868a668bcf4c)
)
(wire (pts (xy 102.87 50.8) (xy 102.87 53.34))
(stroke (width 0) (type default))
(uuid aec89365-d57e-470f-acdc-cf9c05659ff3)
)
(wire (pts (xy 110.49 40.64) (xy 110.49 45.72))
(stroke (width 0) (type default))
(uuid b04c1482-8e6b-4b66-83d2-0c0648c65a59)
)
(wire (pts (xy 158.75 68.58) (xy 160.02 68.58))
(stroke (width 0) (type default))
(uuid b69dee7a-3b65-4ba3-8e90-8a61a79449ab)
)
(wire (pts (xy 133.35 46.99) (xy 116.84 46.99))
(stroke (width 0) (type default))
(uuid bb98893d-d3ab-44c6-942d-7a4f1f4a454f)
)
(wire (pts (xy 170.18 44.45) (xy 170.18 45.72))
(stroke (width 0) (type default))
(uuid c39c2016-b716-4c0d-9fbb-ffcf4f6e68d3)
)
(wire (pts (xy 172.72 74.93) (xy 172.72 77.47))
(stroke (width 0) (type default))
(uuid c9a60a13-fb40-46bb-99ca-8d75a2215977)
)
(wire (pts (xy 158.75 44.45) (xy 170.18 44.45))
(stroke (width 0) (type default))
(uuid d1f91482-4e4a-45c8-8298-e6336ba9ab39)
)
(wire (pts (xy 180.34 40.64) (xy 180.34 45.72))
(stroke (width 0) (type default))
(uuid d48f2c07-77b4-4bed-85e8-502575291bf9)
)
(wire (pts (xy 170.18 44.45) (xy 190.5 44.45))
(stroke (width 0) (type default))
(uuid dc7b7517-1bb2-4dd0-a423-792ab22d7bba)
)
(wire (pts (xy 160.02 58.42) (xy 160.02 60.96))
(stroke (width 0) (type default))
(uuid e2123e5a-a5cd-4799-9444-e002f9bd8ca1)
)
(wire (pts (xy 129.54 71.12) (xy 127 71.12))
(stroke (width 0) (type default))
(uuid e74d75e3-5e28-491e-b149-64dbb781e5de)
)
(wire (pts (xy 129.54 83.82) (xy 160.02 83.82))
(stroke (width 0) (type default))
(uuid f45c30bc-0d1c-4df6-a0d9-c4dbaa735da6)
)
(wire (pts (xy 170.18 50.8) (xy 170.18 52.07))
(stroke (width 0) (type default))
(uuid fa385506-f01a-485c-aad3-1a2474f5d71e)
)
(wire (pts (xy 180.34 40.64) (xy 190.5 40.64))
(stroke (width 0) (type default))
(uuid fdbb7b86-7ca8-433c-9158-63724a25a7d6)
)
(wire (pts (xy 102.87 40.64) (xy 93.98 40.64))
(stroke (width 0) (type default))
(uuid fed1303d-8e4b-47ef-b0c5-d0a4a44de461)
)
(text "Input current\nlimit: 2A" (at 100.33 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f0da65cb-fa7d-4394-86b7-7a3b80f494de)
)
(hierarchical_label "SCL" (shape input) (at 129.54 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 10b9c4e5-a20f-409b-b946-5f99d6a7c01b)
)
(hierarchical_label "VBAT" (shape output) (at 190.5 40.64 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 320eb981-1417-435b-82da-f498430648ab)
)
(hierarchical_label "VSYS" (shape output) (at 190.5 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 38e0d555-8040-4035-9fa2-a13939a2de16)
)
(hierarchical_label "SDA" (shape bidirectional) (at 129.54 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 83eac4c8-85ab-4cf1-925d-7af85870956d)
)
(hierarchical_label "PWR_ON" (shape input) (at 129.54 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 89b2d5e2-4ba3-4d69-b295-097aab42cc73)
)
(hierarchical_label "DCIN" (shape input) (at 92.71 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c2c899f9-57ca-4d26-a1af-254a0b6e36d9)
)
(hierarchical_label "VLED" (shape output) (at 190.5 44.45 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dded9f29-465c-4b6b-b6d6-7a23a68a5a32)
)
(hierarchical_label "~{CHARGE_ENABLE}" (shape input) (at 129.54 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e48296c7-2347-4050-8af2-063a17cdbf19)
)
(symbol (lib_id "power:GND") (at 102.87 60.96 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 081375a2-6f8c-4e10-8cf7-761f276f393f)
(property "Reference" "#PWR057" (at 102.87 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 102.87 65.0931 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 102.87 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 102.87 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 56b56130-a03c-4abe-9622-97c58e74cd98))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR057") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 119.38 77.47 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 09f6384b-cc6f-47fd-890c-0813c3fe9478)
(property "Reference" "#PWR055" (at 119.38 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 119.38 81.6031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 119.38 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 119.38 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 86080600-2d86-4836-a578-3ae9f8767570))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR055") (unit 1)
)
)
)
)
(symbol (lib_id "ti-chargers:BQ24295") (at 146.05 55.88 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0adaf7ed-5626-40f2-aa36-167c6d374761)
(property "Reference" "U8" (at 137.16 36.83 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Value" "BQ24295" (at 146.05 55.88 0) (do_not_autoplace)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm" (at 133.35 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/bq24295.pdf?ts=1694375402912&ref_url=https%253A%252F%252Fwww.ti.com%252Fpower-management%252Fbattery-management%252Fcharger-ics%252Fproducts.html" (at 133.35 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C165144" (at 146.05 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57b4b7b6-f860-4cbb-8b5a-dd0eac5e805c))
(pin "10" (uuid cd15c45d-ff81-4dca-9ea7-dd13a4d2340b))
(pin "11" (uuid c41f9f3a-e02f-4070-9e5a-b9f0feb915ec))
(pin "12" (uuid 74aa91e6-a16e-4954-a756-b81369ac0654))
(pin "13" (uuid bd9106cb-5195-434f-9a30-2c55e19c84d5))
(pin "15" (uuid dd2e1832-4eaf-45dd-b770-bee1680e2ddc))
(pin "17" (uuid c0ebec94-5bd4-4aeb-a42c-1e0eeaf45e18))
(pin "19" (uuid 92421167-0fe3-44bd-aa9c-1c9699275b4a))
(pin "2" (uuid bf6db308-620d-4b1a-8810-c7fba860ce92))
(pin "21" (uuid a6ad8c20-f55d-4749-b54f-4fcfa3f5657d))
(pin "22" (uuid d8a37f35-9701-4aef-a0b9-fdb4e3691c33))
(pin "23" (uuid 85074720-ea2c-466e-ac02-ba04e4714eaa))
(pin "3" (uuid cd3ed377-1998-4907-98e4-72155f37cf06))
(pin "4" (uuid 44bf5f81-42cf-4d88-9ae3-eb50ad9773c5))
(pin "5" (uuid c09f07d4-01ce-4143-a570-e3350a708075))
(pin "6" (uuid e9234df6-9717-4ec7-8e82-cc672464302c))
(pin "7" (uuid 158a47fc-bff2-4142-a064-ca28e5a20271))
(pin "8" (uuid dfdac257-9ea2-4a8d-8342-33d551a9d50f))
(pin "9" (uuid 0504838e-6d97-4e63-aa01-0b64bb788703))
(pin "14" (uuid 65ec41e6-9795-45ac-9652-c9536b915aaf))
(pin "16" (uuid 493610d0-f4f8-41f3-a815-cd6fe4e6260a))
(pin "18" (uuid 27810973-0eb6-4109-bee6-87c0370427b2))
(pin "20" (uuid 6afea455-05a0-452e-bdc3-c78966a4ca4c))
(pin "24" (uuid 18f508fa-415f-413f-adf6-104332990d98))
(pin "25" (uuid f1dc5019-47ba-48aa-8e81-2f5ea2ad28eb))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "U8") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 120.65 57.15 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 14b19617-ff71-4ac1-9ccb-c4bacf6f88e5)
(property "Reference" "#PWR034" (at 120.65 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 120.65 53.0169 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 120.65 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9746215d-f439-4b2e-99be-bb4d8b4eaf84))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR034") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 172.72 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1be4a810-d8fa-4cd6-be99-730a23e6d69a)
(property "Reference" "C17" (at 175.0441 71.1842 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 175.0441 73.6084 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 172.72 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 172.72 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C19702" (at 172.72 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b5d3a76-ce7a-48a6-bb20-f18e147dcde4))
(pin "2" (uuid 90537ed7-2e1b-470a-a386-6c8cb18558ba))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/ec178502-7b55-459c-9ab3-b7e99f46d37d"
(reference "C17") (unit 1)
)
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "C30") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 180.34 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2290c77e-6147-44f9-9450-6295aaf6160b)
(property "Reference" "#PWR054" (at 180.34 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 180.34 56.2031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 180.34 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 180.34 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f281cfa9-5474-42ae-99fe-fab9e9aeff5f))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR054") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 170.18 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2bbfc341-d9e7-403f-8f6f-9defbd14c848)
(property "Reference" "#PWR049" (at 170.18 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 170.18 56.2031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 170.18 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 170.18 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 551ffdcb-c6c4-4fda-ad13-9df02314833f))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR049") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 110.49 60.96 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2ebd2421-11d2-492d-8181-79f333e3ad6d)
(property "Reference" "#PWR056" (at 110.49 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 110.49 65.0931 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 110.49 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 110.49 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1a8b1d7-63f5-4e89-8b5d-5762b275967d))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR056") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 172.72 77.47 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2feeca94-59e7-4e04-94ff-4e8321d07858)
(property "Reference" "#PWR052" (at 172.72 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 172.72 81.6031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 172.72 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b707798-f7f2-4977-8ab5-cdcd628d5dd2))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR052") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 163.83 77.47 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3537cf9e-82cd-4edb-8c56-e6f2ea3540dd)
(property "Reference" "#PWR050" (at 163.83 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 163.83 81.6031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 163.83 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 163.83 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6c6cb5b0-f631-49bd-a7f5-9f4a48541e7b))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR050") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 93.98 46.99 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 51818cd8-c70f-4153-8eb0-de265b059574)
(property "Reference" "#PWR058" (at 93.98 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 93.98 51.1231 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 93.98 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 93.98 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f0cadfce-d68b-4419-b230-73c11067491a))
(instances
(project "blinkekatze"
(path "/20b2a5b0-0a80-4b97-84d4-d5290b2926e5/9cb6db86-327d-4904-91ce-cd5a41de3209"
(reference "#PWR058") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Small") (at 102.87 48.26 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5d08acc3-e310-4219-abaf-7c0e1983401c)
(property "Reference" "R9" (at 101.3714 47.0916 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10k" (at 101.3714 49.403 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 102.87 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.87 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C25744" (at 102.87 48.26 0)