-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathlg_hvac_esp32.kicad_pcb
More file actions
6610 lines (6588 loc) · 260 KB
/
Copy pathlg_hvac_esp32.kicad_pcb
File metadata and controls
6610 lines (6588 loc) · 260 KB
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 4.69)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "production/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "LINBUS")
(net 5 "Net-(U1-SS{slash}TR)")
(net 6 "RXD")
(net 7 "Net-(D1-A)")
(net 8 "TXD")
(net 9 "Net-(D2-K)")
(net 10 "unconnected-(J2-Pin_2-Pad2)")
(net 11 "unconnected-(J2-Pin_3-Pad3)")
(net 12 "unconnected-(J2-Pin_4-Pad4)")
(net 13 "unconnected-(J2-Pin_5-Pad5)")
(net 14 "unconnected-(J2-Pin_6-Pad6)")
(net 15 "unconnected-(J2-Pin_7-Pad7)")
(net 16 "unconnected-(J2-Pin_8-Pad8)")
(net 17 "unconnected-(J2-Pin_11-Pad11)")
(net 18 "unconnected-(J2-Pin_12-Pad12)")
(net 19 "unconnected-(J2-Pin_13-Pad13)")
(net 20 "unconnected-(J2-Pin_15-Pad15)")
(net 21 "unconnected-(J2-Pin_16-Pad16)")
(net 22 "unconnected-(J2-Pin_17-Pad17)")
(net 23 "unconnected-(J2-Pin_18-Pad18)")
(net 24 "unconnected-(J2-Pin_19-Pad19)")
(net 25 "unconnected-(J3-Pin_2-Pad2)")
(net 26 "unconnected-(J3-Pin_3-Pad3)")
(net 27 "unconnected-(J3-Pin_4-Pad4)")
(net 28 "unconnected-(J3-Pin_5-Pad5)")
(net 29 "unconnected-(J3-Pin_6-Pad6)")
(net 30 "unconnected-(J3-Pin_8-Pad8)")
(net 31 "unconnected-(J3-Pin_9-Pad9)")
(net 32 "unconnected-(J3-Pin_10-Pad10)")
(net 33 "unconnected-(J3-Pin_11-Pad11)")
(net 34 "unconnected-(J3-Pin_12-Pad12)")
(net 35 "unconnected-(J3-Pin_13-Pad13)")
(net 36 "unconnected-(J3-Pin_14-Pad14)")
(net 37 "unconnected-(J3-Pin_15-Pad15)")
(net 38 "unconnected-(J3-Pin_16-Pad16)")
(net 39 "unconnected-(J3-Pin_17-Pad17)")
(net 40 "unconnected-(J3-Pin_18-Pad18)")
(net 41 "unconnected-(J3-Pin_19-Pad19)")
(net 42 "Net-(U1-FB)")
(net 43 "Net-(U1-PG)")
(net 44 "unconnected-(U2-NC-Pad3)")
(net 45 "unconnected-(U2-NC-Pad8)")
(footprint "Package_LGA:Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias" (layer "F.Cu")
(tstamp 0da06eb7-62ae-4edc-a19d-38c77a95d643)
(at 49.276 59.436)
(descr "Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "Texas MicroSiP NoLead")
(property "LCSC" "C473914")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "17V Input 3A Step-Down Converter MicroSiP Module with Integrated Inductor, μSiL-8")
(property "ki_keywords" "17V 3A Step-down Buck Module")
(path "/26dced7e-dc3b-4e3e-9947-3e1957af4867")
(attr smd)
(fp_text reference "U1" (at 0 -2.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 638e96b8-47f4-45a5-b250-1caaeaa3910b)
)
(fp_text value "TPS82130" (at 0 2.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 426792a4-a2dc-4155-9d2b-cb41bb146879)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp cadbd0ed-8cfd-43f9-baba-f02fa6a7aaa3)
)
(fp_line (start -1.4 1.61) (end 1.4 1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84201128-8a51-4c4b-98df-95e875b999e7))
(fp_line (start 0 -1.61) (end 1.4 -1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32fed198-c9a3-4fcb-83b9-d2ebc0498edd))
(fp_line (start -1.65 -1.75) (end -1.65 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0061dba-dcc5-421c-be31-f4b9cf8533c4))
(fp_line (start -1.65 1.75) (end 1.65 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f6c6993-8795-4593-936a-4c837acdb251))
(fp_line (start 1.65 -1.75) (end -1.65 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44b51b1f-7b72-4777-baee-2e6f22b9b5f5))
(fp_line (start 1.65 1.75) (end 1.65 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28c299ea-c5c3-4801-a09d-19d3295ed84d))
(fp_line (start -1.4 -0.8) (end -0.7 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74eeae9b-2022-4c87-9c1b-31414e8a707a))
(fp_line (start -1.4 1.5) (end -1.4 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97d67b5c-e0c4-4d35-904a-75f358916462))
(fp_line (start -0.7 -1.5) (end 1.4 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 761db0e3-14df-4a1b-9a06-9891158b8857))
(fp_line (start 1.4 -1.5) (end 1.4 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf28d7c7-7cfd-44a1-8590-4eb36d27bb30))
(fp_line (start 1.4 1.5) (end -1.4 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8602af26-7dab-4d04-9862-c109d9270c81))
(pad "" smd roundrect (at 0 -0.63) (size 0.95 0.55) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a943b081-25b4-458b-b43a-ff1bb3327c32))
(pad "" smd roundrect (at 0 0) (size 0.95 0.55) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp b447589b-26da-4ed9-bedd-c26fd98924d7))
(pad "" smd roundrect (at 0 0.63) (size 0.95 0.55) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 85e60cc0-e20f-4ec5-ac96-c01c7650ca6b))
(pad "1" smd roundrect (at -1.0625 -0.975) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "EN") (pintype "input") (tstamp 9c224b90-8ad3-47f7-b5bf-4c94acbf829c))
(pad "2" smd roundrect (at -1.0625 -0.325) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "VIN") (pintype "power_in") (tstamp c6a01b52-8db4-474d-a8d4-9283423023c5))
(pad "3" smd roundrect (at -1.0625 0.325) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d2aab57e-2dee-4c33-823d-987d908f9d0a))
(pad "4" smd roundrect (at -1.0625 0.975) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 41cc92f3-7368-4baf-a552-dab9315dc50c))
(pad "5" smd roundrect (at 1.0625 0.975) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VOUT") (pintype "passive") (tstamp 67d5b471-65e9-4cba-9371-9fc6fb3656d5))
(pad "6" smd roundrect (at 1.0625 0.325) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(U1-FB)") (pinfunction "FB") (pintype "input") (tstamp 136c7457-3dac-40c3-b5f5-5b9581722161))
(pad "7" smd roundrect (at 1.0625 -0.325) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(U1-PG)") (pinfunction "PG") (pintype "open_collector") (tstamp fbd75e62-8c40-414e-8502-7a5425f7d52e))
(pad "8" smd roundrect (at 1.0625 -0.975) (size 0.625 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(U1-SS{slash}TR)") (pinfunction "SS/TR") (pintype "input") (tstamp 8b30b24c-66c4-429f-bdf0-05dd14d64c1d))
(pad "9" thru_hole circle (at 0 -0.75) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6b8ad3be-429f-467a-814c-d50c02dc805d))
(pad "9" thru_hole circle (at 0 0) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3f7a7daf-c5bd-40ad-910d-d47ca7a8489c))
(pad "9" smd rect (at 0 0) (size 0.5 2) (layers "B.Cu")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b8ee789e-aca7-4dfa-b8b5-fd1b8382b4f0))
(pad "9" smd rect (at 0 0) (size 1.1 1.9) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp dedb4f9c-53aa-4d3e-999a-991c60adc2cd))
(pad "9" thru_hole circle (at 0 0.75) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5df130ff-9bfa-4fdb-a63f-201759b3f532))
(model "${KICAD6_3DMODEL_DIR}/Package_LGA.3dshapes/Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 1b43b0f1-3603-4533-b8c5-30aff6cc5ebb)
(at 56.896 63.0955 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C149504")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/e5a6ebfd-a0fc-454f-8f3f-10f83058d3af")
(attr smd)
(fp_text reference "R3" (at 2.4365 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00705667-1998-4399-a5bf-af2ebfd82034)
)
(fp_text value "100k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f231690-1732-47a4-90a6-90695890cfcc)
)
(fp_text user "${REFERENCE}" (at -4.445 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp dde0a94d-9f7e-4c0d-b9bd-67d919096fa1)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bbbd8c8-4e36-4cd9-a712-7bf873ec1ef3))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a7f6efa-ef60-433d-acc0-6f9a9126bc57))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a4bd203-982c-47eb-8d5f-c6411ccb82db))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d700fab8-54ff-4598-b1ed-2da6ebf65439))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64785f4f-92fd-44e0-8e9a-2f3a123d3461))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5039f9ed-3687-480a-b451-438b92d2c07f))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2225601c-daae-46cb-9467-08f7096b4a9f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63e61c71-224b-4a45-a318-e6a3057bc573))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b57e035-c5f2-4692-ba8d-3bdd0e309a9c))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8a25d38-5aa4-4107-9d31-ac0ccc1ef2d4))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 43 "Net-(U1-PG)") (pintype "passive") (tstamp 1beb94ac-0980-4446-a15a-6f6028c2875b))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 3 "+3V3") (pintype "passive") (tstamp 0ccf3bde-866e-4231-b785-fc8e0833134f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 21445f35-cdf9-45ed-b042-42162bce0eb5)
(at 43.18 62.992 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C343058")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4a6329d4-97f5-4c0a-bf52-94fa3a70e0f2")
(attr smd)
(fp_text reference "C5" (at 1.524 -0.508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2d2c42f-0606-483f-b2ca-07b067e11e4c)
)
(fp_text value "220pF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3af8b90-faf6-4b21-8a25-518b1d8c352e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp e322e877-fa4b-40a1-b9eb-04bd2db5ed6c)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0d18875-4dd0-4b48-8aed-abf8573f00aa))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fd1f931-3e2e-4c57-9ba4-5a8c68737b5f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13c6b480-64d5-4c28-8352-28caeafe01dd))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1e6fe52-7e9f-4e57-8124-de3350fe9d71))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aff13891-e26e-4447-8851-ae7bd82730cc))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03e0db4a-f985-4ff6-bafd-b767f48ef534))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b6de017-d547-4a82-9481-9433b802e7c4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cca554f-4493-4aeb-a530-f254ededae9e))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46945706-1994-4ecb-abe6-6dae4533fbe8))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3df43fbc-36ba-406a-97a8-4326d8392fc2))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "LINBUS") (pintype "passive") (tstamp 8afea0dd-8a3a-4118-856d-4b06ba1173b6))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 6e916640-96fc-44f4-ae7b-999d88a42e78))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tstamp 399cc718-1211-4c70-b4e3-14786b4c88e1)
(at 52.324 80.264 180)
(descr "SOD-323")
(tags "SOD-323")
(property "LCSC" "C727111")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "75V 0.15A Fast switching Diode, SOD-323")
(property "ki_keywords" "diode")
(path "/ab4112a2-d06c-4b26-872d-2926b99ef488")
(attr smd)
(fp_text reference "D1" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cdcc656-da86-481a-a13d-9c01966402ef)
)
(fp_text value "1N4148WS" (at -1.27 -5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e33aeeb-1b7e-46d7-8f44-ec30e8201196)
)
(fp_line (start -1.5 -0.85) (end -1.5 0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48a5aae9-6385-4517-8319-1880b076c0e6))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cd7f312-40ea-4e98-84c4-48881e4882cb))
(fp_line (start -1.5 0.85) (end 1.05 0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63d21e0c-c764-4ae4-bee8-aeb1460cdc7d))
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6cba99f-921b-4b3b-baa2-62138eafb0a3))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6cd1c3bb-7b84-4800-8d53-33977d4aa4ce))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95589da1-41ce-4ceb-8fc8-bfd893562be9))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c568bc4c-cb07-4982-a752-1be24c63ce97))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a10f05b-f1a8-4fbe-bc63-29ceaacd17a4))
(fp_line (start -0.9 0.7) (end -0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d771e94e-0f74-4731-86f5-86187afaa8f6))
(fp_line (start -0.3 -0.35) (end -0.3 0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f0f4914-432d-4e36-8115-2a8f3e154413))
(fp_line (start -0.3 0) (end -0.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98060f6a-0fd9-43a5-abcd-87e9cb83ea41))
(fp_line (start -0.3 0) (end 0.2 -0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7fa523f-71f5-4bb7-862e-933803564a39))
(fp_line (start 0.2 -0.35) (end 0.2 0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e885b90-070c-44ee-a862-66cb7a82bcb6))
(fp_line (start 0.2 0) (end 0.45 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46411048-26da-4369-ba01-0ac72fcae2e6))
(fp_line (start 0.2 0.35) (end -0.3 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7023e80b-5dcd-4c99-b211-bda07ca1e029))
(fp_line (start 0.9 -0.7) (end 0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e8dbda0-cfae-4f3f-8632-81c2c998844f))
(fp_line (start 0.9 0.7) (end -0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d65096b-2ccd-4f03-afa3-bd1be62a8c57))
(pad "1" smd rect (at -1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+12V") (pinfunction "K") (pintype "passive") (tstamp 5280a91a-1586-4439-b982-455f53d1bce1))
(pad "2" smd rect (at 1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 30d1dc11-d8a4-4ec6-afe6-67e95405630d))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 60e2be4a-af7b-4af4-afa0-88d123bc0a82)
(at 47.717 65.913 180)
(descr "SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "LCSC" "C194371")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "LIN 2.2A/SAE J2602 transceiver with TXD dominant timeout, SOIC-8")
(property "ki_keywords" "LIN 2.2A/SAE J2602 Transceiver")
(path "/be957946-3830-4060-abd8-5d63e0456e40")
(attr smd)
(fp_text reference "U2" (at -0.035 3.429) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 276430ee-7a5d-49cc-bfc8-a189d35f3f0c)
)
(fp_text value "TJA1027" (at 0 3.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bc87a0d-e6d4-4780-ab6c-05e332dd0dff)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp b3f4024e-c845-4e84-a604-50ec3e25c806)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc529472-5f5c-4aee-8587-2ceaebef495d))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6500a9af-de45-4a95-a856-5049be5bcd22))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc65146f-31de-4f3b-a678-0e5eb0846754))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d1d1180-d14e-439a-993b-59283a64ff30))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85d017ce-00d8-4b9d-9318-d2d75da9809b))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3326710d-69e9-4099-a97d-86d21f9b321f))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aee17aa9-4063-4345-8a9e-06f60fdbf52e))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67a6b916-ca7a-41fc-ae72-435f634ad18a))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b4371c5-3a90-4fb2-825e-41df9b3602a8))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44356c0d-9b78-48f4-a3d4-ef05db46f5b0))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6a08934-0f05-4531-86f0-e5931f2293f7))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22fd0b99-335b-4814-8e02-dee040a2d596))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e24b314-e05b-43cf-a94e-9cd9a7f098a1))
(pad "1" smd roundrect (at -2.575 -1.905 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "RXD") (pinfunction "RXD") (pintype "open_collector") (tstamp 9d9de513-b0b8-4917-bc60-ace8437915b6))
(pad "2" smd roundrect (at -2.575 -0.635 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "~{SLP}") (pintype "input") (tstamp fc9167ff-04c2-4c93-8861-366b600933d2))
(pad "3" smd roundrect (at -2.575 0.635 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U2-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp b1b11244-2b27-47ec-9510-8d42301d7457))
(pad "4" smd roundrect (at -2.575 1.905 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "TXD") (pinfunction "TXD") (pintype "input") (tstamp c7bc1157-d136-494e-a26b-e0c9397a0f48))
(pad "5" smd roundrect (at 2.575 1.905 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 97b2f2a2-5f01-4427-b6c0-4abfca18df4f))
(pad "6" smd roundrect (at 2.575 0.635 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "LINBUS") (pinfunction "LIN") (pintype "bidirectional") (tstamp fa5537e7-6338-4bb0-9e15-feffe54ef305))
(pad "7" smd roundrect (at 2.575 -0.635 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "VBAT") (pintype "power_in") (tstamp 7d762afa-16da-4370-a601-da79b712e852))
(pad "8" smd roundrect (at 2.575 -1.905 180) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(U2-NC-Pad8)") (pinfunction "NC") (pintype "no_connect") (tstamp 26d34c7a-663c-44ce-bf5d-9011a0023f0c))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SO-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 7aa48356-0363-4881-a22e-060e5a1f9201)
(at 53.34 61.468 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C149504")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/b67f117f-3b97-41f7-93df-11f123a4c5c6")
(attr smd)
(fp_text reference "R2" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7a258e2-d08c-4fd4-b61c-45edb53abc36)
)
(fp_text value "100k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9389fcf1-09bd-481d-a4ef-9384a42d56e2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 5e066100-2ddd-4cf4-b70e-2e800bbbf810)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50613ac1-50d8-41b2-be0d-eeac7e93c1bf))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eeaf5c2e-573f-4dd1-ac5b-fbfecd16bd55))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51ce36e4-ec15-4597-aa48-2cb2bb66cff9))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9feb89e8-a76d-45d5-8af6-f4e73565a5d4))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15231d1a-4f4c-4d4c-8f35-26dfb618d04b))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ae72f91-4936-4acf-864c-826897b5085a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0967eaf7-3e4f-4a2f-9d90-7cb2691f23b6))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7269c319-0767-4b85-898a-3b8bb1c1b467))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa11e936-cdab-420f-a78f-caa32c69260a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b04b070-0d20-4a4e-8269-6ba14a597ba7))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 2 "GND") (pintype "passive") (tstamp db5b3db1-1522-4f64-8767-8904a5729aa9))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 42 "Net-(U1-FB)") (pintype "passive") (tstamp 3f14e26b-7cdc-410d-b3d8-a1e1b508e5c6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tstamp a6ec9a24-da98-43e9-b4ce-46c84e06e93a)
(at 41.656 67.564)
(descr "SOD-323")
(tags "SOD-323")
(property "LCSC" "C727111")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "75V 0.15A Fast switching Diode, SOD-323")
(property "ki_keywords" "diode")
(path "/f0cd2f6a-13e3-4422-92eb-7464963ad5dd")
(attr smd)
(fp_text reference "D2" (at -2.286 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 621a76b0-8cc0-4f42-9108-665d857c9cff)
)
(fp_text value "1N4148WS" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f543c112-e3e8-4b69-adab-faeaf3f67f68)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1911f83-4ef9-4bee-b675-1e4780547b8e)
)
(fp_line (start -1.5 -0.85) (end -1.5 0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6419661a-a939-4852-a270-933023c6552f))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a092e90-94de-47c2-9927-70ba208e7c04))
(fp_line (start -1.5 0.85) (end 1.05 0.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59ff2921-a262-47d7-869b-983d85fdef03))
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8162ff1e-dfaa-4d86-b090-962a0005a4b1))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62fee58a-5a4b-4f7e-a7db-a7ec2266b4f3))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df50afc1-b4f4-4a08-9387-9825fc7d6670))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39243d70-affd-49ec-862f-024c1a45fba5))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d52d6dac-e0dc-43f7-adb2-c28cdd357ce8))
(fp_line (start -0.9 0.7) (end -0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ea7cc4a-9f54-4274-8035-370397e0f165))
(fp_line (start -0.3 -0.35) (end -0.3 0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7139156b-2052-4ab2-89c5-dcffdf426f7e))
(fp_line (start -0.3 0) (end -0.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 694c47cb-504e-491d-90eb-b415fea4902c))
(fp_line (start -0.3 0) (end 0.2 -0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e387c53d-8ff8-43f7-829b-d15628513571))
(fp_line (start 0.2 -0.35) (end 0.2 0.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9f39fed-d7bb-4b81-b2f3-618e19551949))
(fp_line (start 0.2 0) (end 0.45 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 562714aa-c0c0-438a-9d24-8b0e8acf55de))
(fp_line (start 0.2 0.35) (end -0.3 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4d49ec5-8673-4fa4-863f-d751fb2fb39d))
(fp_line (start 0.9 -0.7) (end 0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73cea840-88be-4bb9-bf1e-7f99a6a23668))
(fp_line (start 0.9 0.7) (end -0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3bb3afd-0c5e-4d37-b0c0-6be758fe9570))
(pad "1" smd rect (at -1.05 0) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(D2-K)") (pinfunction "K") (pintype "passive") (tstamp ee6d8ae1-bbaa-45e2-9e12-8fd479184d18))
(pad "2" smd rect (at 1.05 0) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+12V") (pinfunction "A") (pintype "passive") (tstamp 49a73562-fc7a-44a1-8562-76326a6322ae))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x19_P2.54mm_Vertical" (layer "F.Cu")
(tstamp aa5327e4-4a85-4ff9-8b18-1088cb17351c)
(at 36.82632 34.70384)
(descr "Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x19 2.54mm single row")
(property "LCSC" "C2932678")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/703eeca0-3968-4694-b8e3-19731844f1de")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 077ffa85-3cf0-46a8-a6cd-7a56cafe7332)
)
(fp_text value "Conn_01x19_Female_1_to_19" (at 0 48.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 034c0f1e-d94c-4372-bf79-1230b088b68d)
)
(fp_text user "${REFERENCE}" (at 0 22.86 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af08cf6e-4b50-42d2-af0b-65ffc3da7df1)
)
(fp_line (start -1.33 1.27) (end -1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aad2a6fc-3411-4dfc-9f54-8cb62a398b30))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7e2634f-c1a7-4ae2-a468-061fe673ff3b))
(fp_line (start -1.33 47.05) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54381655-5825-4c24-835f-d749ff21a07c))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76c89ad5-7fc8-48d0-bc20-5cfc359f28bd))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2782302-6601-41fb-b5ae-b70d80dd2e33))
(fp_line (start 1.33 1.27) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39f727c6-009c-4121-bbc6-da333ff2a132))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 491d694c-3b23-4714-b710-dd3ae923ecb1))
(fp_line (start -1.8 47.5) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95e9cc5d-9d4f-4e7d-8250-802a1d99edef))
(fp_line (start 1.75 -1.8) (end 1.75 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bc152cc-74a8-45a6-b23e-8729d84ab701))
(fp_line (start 1.75 47.5) (end -1.8 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4abe302e-19d1-4cf1-9533-64bdc3700bc9))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a427992-32be-4231-9e9f-6c40b1113cb3))
(fp_line (start -1.27 46.99) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 333fa033-45f4-488b-96fa-33e8bfd7c9ef))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 134fd39b-f0ee-4447-add4-967543e83cf8))
(fp_line (start 1.27 -0.635) (end 1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cae58955-fc08-44b9-ab35-9569bc2d2ac8))
(fp_line (start 1.27 46.99) (end -1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 805ef32f-0edb-48ca-b91a-6c43ec8680e5))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 3a4123c5-47ec-457e-963e-f9c7d6ac0357))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(J2-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 8a3a3bc0-26ec-412e-b85c-cfd81b0831d7))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(J2-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 9ee765c3-d333-458c-9a41-d58cf46fb038))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J2-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp bc8904e7-9916-4eaa-bde5-779ef7b89d64))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(J2-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp ab6dbb51-1b21-4bef-8ae1-980707e4b6ca))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(J2-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 4c416d0e-526c-47fa-9e62-76e5366d155b))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(J2-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 55517af0-bc3c-4647-9887-24055cdaee42))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(J2-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 7b68b6b8-4b6e-489f-b706-3d5b44d51a83))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "TXD") (pinfunction "Pin_9") (pintype "passive") (tstamp 768ec11a-a4db-414b-bffc-4fd3cf8a2a4f))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "RXD") (pinfunction "Pin_10") (pintype "passive") (tstamp 2921b871-86b9-4d49-a823-a88e4928b9a0))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "unconnected-(J2-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 4a73121b-b15f-474e-a617-47091d43f62c))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(J2-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp 1b633196-8e4d-43ad-8cb3-17a1e618cae0))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(J2-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 9ba77434-025e-4ff4-b744-732175d1c800))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp 5d94747b-0d75-4413-a84d-c780065a68a6))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(J2-Pin_15-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp e06d1c17-b5f9-481c-a6a0-447b54406400))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J2-Pin_16-Pad16)") (pinfunction "Pin_16") (pintype "passive+no_connect") (tstamp 0f4af3fe-97b3-4089-bbb6-ad07f23ba972))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(J2-Pin_17-Pad17)") (pinfunction "Pin_17") (pintype "passive+no_connect") (tstamp 630d3ebb-e5f0-4775-b1c9-47806f31e151))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(J2-Pin_18-Pad18)") (pinfunction "Pin_18") (pintype "passive+no_connect") (tstamp 189bcb6c-3bd1-45ef-913c-904eb4941640))
(pad "19" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(J2-Pin_19-Pad19)") (pinfunction "Pin_19") (pintype "passive+no_connect") (tstamp 6160dd3e-877c-4053-9f48-6f9efcd161a4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x19_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal" (layer "F.Cu")
(tstamp b817450e-6b27-4189-817d-6368469ba5d9)
(at 42.204 73.66)
(descr "JST XH series connector, S3B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH horizontal")
(property "LCSC" "C157928")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/d4512ec7-3389-4b56-9e8b-bdbd8a828957")
(attr through_hole)
(fp_text reference "J1" (at 9.104 -0.182) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e12ec3e8-0d5b-47b1-abb9-9b31a4bb451e)
)
(fp_text value "JST_XH_S3B-XH-A-1_01x03" (at 2.5 8.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc50af72-15b3-4fb5-bf25-289e8b8f51f6)
)
(fp_text user "${REFERENCE}" (at 2.5 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc48681f-9397-420c-a160-4d40e8208b22)
)
(fp_line (start -2.56 -4.01) (end -1.14 -4.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c645efa1-5cf3-4d27-be7a-303fdbabecd8))
(fp_line (start -2.56 7.71) (end -2.56 -4.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34d6d782-5641-4526-b346-05de03ea8c0e))
(fp_line (start -1.14 -4.01) (end -1.14 0.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86b1650c-27f6-4516-8b60-2a6a434a183e))
(fp_line (start -0.3 -2.1) (end 0.3 -2.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9098a6bf-eae0-4636-90c3-6c2f5d9401fd))
(fp_line (start -0.25 1.6) (end -0.25 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 446c08d7-8986-4d18-8f0f-30d613706dfc))
(fp_line (start -0.25 7.1) (end 0.25 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0673bd15-bb27-42a3-b8dd-ff34de638161))
(fp_line (start 0 -1.5) (end -0.3 -2.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f84570f0-8f86-40f4-8c85-4d0ad12444b2))
(fp_line (start 0.25 1.6) (end -0.25 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0130066-f120-45ab-8ca4-de7cd402c362))
(fp_line (start 0.25 7.1) (end 0.25 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d70b07f0-7794-49ac-aab9-bba7744f562e))
(fp_line (start 0.3 -2.1) (end 0 -1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1353e9e-7eae-44e9-872c-ec11c41e5657))
(fp_line (start 2.25 1.6) (end 2.25 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15ddbae8-4879-44da-8c42-497366b84781))
(fp_line (start 2.25 7.1) (end 2.75 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d618158f-4184-4754-aa33-65a98e706342))
(fp_line (start 2.5 7.71) (end -2.56 7.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15328724-62c0-4c64-8165-7ba7fa235831))
(fp_line (start 2.5 7.71) (end 7.56 7.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18dfc73-4f65-499b-85e8-0e65b03fabb2))
(fp_line (start 2.75 1.6) (end 2.25 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86a6b9b9-3de3-44b4-b763-98233419d240))
(fp_line (start 2.75 7.1) (end 2.75 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1a929c4-c484-4255-9524-8c224d1f6e73))
(fp_line (start 4.75 1.6) (end 4.75 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d774050-1f75-473e-bdf5-d052504e6a25))
(fp_line (start 4.75 7.1) (end 5.25 7.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fcbe337-d147-4e02-846e-7f1ec4528bd0))
(fp_line (start 5.25 1.6) (end 4.75 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75080b0b-6140-45af-8605-622af6de8bea))
(fp_line (start 5.25 7.1) (end 5.25 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bc4bec0-de82-443a-a56c-94cfb0912fcb))
(fp_line (start 6.14 -4.01) (end 6.14 0.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8e9717b-c8d9-44dd-9eb5-d37e3b2c2fb5))
(fp_line (start 7.56 -4.01) (end 6.14 -4.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23a49e10-e7d0-41d9-a15a-25ac614cee99))
(fp_line (start 7.56 7.71) (end 7.56 -4.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 111c2bf6-9865-4ea4-a9f9-1702355a872d))
(fp_line (start -2.95 -4.4) (end -2.95 8.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c1b71cf-44fe-4b7f-bf7f-4966704258c9))
(fp_line (start -2.95 8.1) (end 7.95 8.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92adc2a7-705f-4e7b-90a7-1c91d9f5977d))
(fp_line (start 7.95 -4.4) (end -2.95 -4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bff35e53-0373-44e5-a0ce-05175bbecd57))
(fp_line (start 7.95 8.1) (end 7.95 -4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e085e529-431d-4fe9-aed9-287036ceabd6))
(fp_line (start -2.45 -3.9) (end -1.25 -3.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 978f5906-8b9c-49a6-9b77-25cbc28e396e))
(fp_line (start -2.45 7.6) (end -2.45 -3.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a54a2d51-4b66-4d14-b33d-1444b55de06d))
(fp_line (start -1.25 -3.9) (end -1.25 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7eedf75-4d8e-4db5-a979-879f661d7288))
(fp_line (start -1.25 0.6) (end 2.5 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2926e945-d9e3-4a4e-9b51-aad244dc04f4))
(fp_line (start -0.625 0.6) (end 0 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2009ab3a-f4bf-4c63-a0fe-9d170c762787))
(fp_line (start 0 -0.4) (end 0.625 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fdd0a3ff-3d05-4dc5-8f2c-3aa967326c19))
(fp_line (start 2.5 7.6) (end -2.45 7.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2798cc00-37db-458a-b5f8-bea65ae99be7))
(fp_line (start 2.5 7.6) (end 7.45 7.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 432045b0-7589-468b-8659-999ac30c51fa))
(fp_line (start 6.25 -3.9) (end 6.25 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d290f63-844a-4f7b-8aec-c610c29b1e2f))
(fp_line (start 6.25 0.6) (end 2.5 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17c7b03d-e4b9-4587-b2ce-0ee7a9d30575))
(fp_line (start 7.45 -3.9) (end 6.25 -3.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 334446cd-af18-48a8-bb73-a88f4d220620))
(fp_line (start 7.45 7.6) (end 7.45 -3.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381ea437-8589-413a-8d00-c27a465a3773))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 139dad75-0222-4e43-bc59-5c28bfe18b85))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 4 "LINBUS") (pinfunction "Pin_2") (pintype "passive") (tstamp c027fa6b-8e6d-4e11-8804-979831dae8d5))
(pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 7 "Net-(D1-A)") (pinfunction "Pin_3") (pintype "passive") (tstamp 31518452-8dcd-4719-9aa4-aad4159920e6))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp ba884cb2-63bf-4c50-8b66-c3860de5c02e)
(at 52.324 70.104 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C17673")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/386f04e7-715b-42e3-937b-378594f74cc8")
(attr smd)
(fp_text reference "R4" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da17c545-f7d6-4b7a-b32a-9980c1fdd5ea)
)
(fp_text value "4.7k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ceeaa25e-5dd0-4b0b-abeb-d03824759358)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 501d4bce-cdc1-4f22-a879-fa6401679036)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b533e2a-a396-4b85-abf3-b4e562338c74))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e6870e4-1f97-40e7-8a7a-56d8572ba4b0))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14dfd598-a72d-4fe1-aa24-f16a07e972b3))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3461eeb7-7801-4932-b532-6f5fec8d4434))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4169a8e-18b5-44ca-805a-3c8b3f7f3c21))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b367d3d-1497-4aa7-b0d9-36ab9417df1d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f9b3afe-36aa-4100-8eb1-fe067dbbac71))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21cc6309-19d3-4729-a9a9-b5621c52b7c2))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 658ce690-6c9f-41d9-8898-795178553f10))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aba076c8-6076-4aad-ba55-ee571a49789c))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 3 "+3V3") (pintype "passive") (tstamp 24c704a1-3d54-4688-8a8e-e29e75acf676))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 6 "RXD") (pintype "passive") (tstamp 918959b8-9288-4c0c-ae06-910b676ebb49))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp cf6556fa-15b5-4ffd-9acb-fe480d703c43)
(at 50.292 55.88 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C26404")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/a21ac9db-8450-4a67-b5fa-d407cabc827b")
(attr smd)
(fp_text reference "C2" (at 1.75 -0.36) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e5a0a5b-efa5-40cd-aaa0-ccdb46e8a0a0)
)
(fp_text value "3.3nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9716896b-83bd-43bd-a585-fb3abecd443f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b047ff12-846b-410d-b3b4-1a9e4d17b65d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ca656fa-7191-4256-9c54-82e6a0cbb5b4))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee73db22-8c3f-4535-b1f1-24cf681a0352))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3f12138-6632-405e-aba7-aaa8ec08b644))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8530c92e-97a2-4d9a-a10d-0aec8d000091))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e787f522-daba-4130-b443-190b5b855e39))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5e33bac-0d04-4e7c-98ca-b020d3f8ad0a))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b179552-2c1c-4ec5-8670-a280b23b2966))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a875d62-c023-487f-82f0-27dbcf74f2b9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca04d088-9d6e-44be-a42b-87756ac6b0e4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a3ac884-8928-4c9e-9181-7992eedf5489))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(U1-SS{slash}TR)") (pintype "passive") (tstamp c62445a8-7b6c-4d38-ba5b-86ce798ed628))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 25c3edd1-654a-424f-b192-1d4ebd3105bd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp ea7b464b-d0cf-4813-9723-6442e8bfdf5d)
(at 53.34 65.024 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C17629")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/f3c819eb-0fbc-47ee-8b9f-855e358af1d1")
(attr smd)
(fp_text reference "R1" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f59167db-872b-4b99-80b8-512ed5d5cee0)
)
(fp_text value "330k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc1b6b19-ccbc-4248-8ca8-8304abf46fd8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 5774bdd1-8194-448a-aec7-dfa84546f3f4)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35eab331-86c6-4cb6-9184-78f5a185c17a))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c50735f4-6020-400c-a452-2ae81a0d9fc9))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30c38d61-c40c-4343-b062-4ca436ed88b8))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd0bc3b7-bdeb-431d-8fc7-11d5fc431ce6))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 712800d2-6d31-48fd-89fb-bd6a85b1e45c))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93915dab-1c1b-47e1-b561-978ee5d4fe83))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4da0752-9255-4bac-97d9-905e5effd578))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c76b6f5-ee3a-4ad1-bdeb-0ae5ad222b2c))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d977a94d-6c9a-43b3-ae85-8020f05b746b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92c33c20-8ebf-40f4-8eec-0574c9f8029b))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 42 "Net-(U1-FB)") (pintype "passive") (tstamp 5c90fc84-95ac-4548-bdd9-458023368f41))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 3 "+3V3") (pintype "passive") (tstamp e3d78610-a48b-4b2a-9edf-1d7c13e98198))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp eee0e712-9905-455b-9345-42af9d32ddf8)
(at 41.148 65.532 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C17513")
(property "Sheetfile" "lg_hvac_esp32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/171c81f5-4950-4b55-9bdb-0f255d99f188")
(attr smd)
(fp_text reference "R5" (at 1.524 1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 701e1175-d532-4c5e-b013-c61641cdf82e)
)
(fp_text value "1k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6543b822-f58e-4dae-90e3-419252c93ac4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f4ad0534-361a-4967-ab71-475e6d58c79b)
)