-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaptaids.kicad_pcb
More file actions
3176 lines (3080 loc) · 193 KB
/
haptaids.kicad_pcb
File metadata and controls
3176 lines (3080 loc) · 193 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 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(41 "Cmts.User" user "User.Comments")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(49 "F.Fab" 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 "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(H3-Pad1)")
(net 2 "Net-(H4-Pad1)")
(net 3 "Net-(D1-K)")
(net 4 "Net-(U1-VBAT)")
(net 5 "Net-(U1-LBST)")
(net 6 "Net-(U1-VOC_SAMP)")
(net 7 "Net-(U1-VREF_SAMP)")
(net 8 "GND")
(net 9 "Net-(U1-VBAT_OV)")
(net 10 "Net-(U1-VRDIV)")
(net 11 "Net-(U1-VBAT_UV)")
(net 12 "Net-(U1-OK_HYST)")
(net 13 "Net-(U1-OK_PROG)")
(net 14 "Net-(U1-VSTOR)")
(net 15 "Net-(ROC1-Pad2)")
(net 16 "unconnected-(R2-Pad2)")
(net 17 "Net-(C1--)")
(net 18 "unconnected-(R1-Pad2)")
(net 19 "Net-(ROK4-Pad1)")
(net 20 "Net-(D2-K)")
(net 21 "unconnected-(S1-Pad2)")
(net 22 "unconnected-(S1-Pad3)")
(net 23 "Net-(D3-A)")
(net 24 "Net-(D3-G)")
(footprint "JPLPCB:SCR_small" (layer "F.Cu")
(tstamp 00fe1da6-e432-4288-8d95-87d3435a6ca1)
(at 105.23375 111.2 180)
(property "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon controlled rectifier, cathode/anode/gate")
(property "ki_keywords" "SCR thyristor")
(path "/6b64be4f-a425-457e-aa49-6392a7ce2726")
(attr smd)
(fp_text reference "D3" (at 0.02 -1.905) (layer "F.Fab") hide
(effects (font (size 1.143 1.143) (thickness 0.152)) (justify right))
(tstamp df7d5e64-8cbf-4898-935d-a935e36c1db8)
)
(fp_text value "Q_SCR_KAG" (at 0.02 -3.683) (layer "F.Fab") hide
(effects (font (size 1.143 1.143) (thickness 0.152)) (justify right))
(tstamp 4dc85503-fe3a-459f-bca7-e80cf2901b60)
)
(fp_line (start -0.762 -1.524) (end 0.889 -1.524)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp 0c64418f-4017-4329-a69f-88d7c732f5c4))
(fp_line (start -0.762 -0.517) (end -0.762 -1.524)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp 0fcd8bce-044a-4d0e-89c7-5cdb65a9d23a))
(fp_line (start -0.762 1.524) (end -0.762 0.517)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp 5ee89b82-02e9-4813-8e5a-ee14e9209874))
(fp_line (start 0.889 -1.524) (end 0.889 -1.467)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp f8abdce6-e163-49d6-97c2-a9ec8952fa90))
(fp_line (start 0.889 -0.433) (end 0.889 0.433)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp 829f12fe-c06c-40c7-8c8d-6387b1f3036d))
(fp_line (start 0.889 1.467) (end 0.889 1.524)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp d35140ec-dfac-4f8a-a11b-0e6ac93535a3))
(fp_line (start 0.889 1.524) (end -0.762 1.524)
(stroke (width 0.125) (type solid)) (layer "F.SilkS") (tstamp ce59bb01-c0aa-4deb-bd87-a1a950f48c14))
(fp_circle (center 2.23 0.2) (end 2.28 0.2)
(stroke (width 0.125) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0a6b7459-74c2-4684-a6e0-33ecdd0ad372))
(fp_circle (center 1.88 0.61) (end 2.08 0.61)
(stroke (width 0.4) (type solid)) (fill none) (layer "Cmts.User") (tstamp 02bb8547-67e7-460d-83f3-b6f5060843c8))
(pad "1" smd rect (at 1.25 0.95 90) (size 0.7 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "GND") (pinfunction "K") (pintype "passive") (tstamp 2530512d-3921-4d93-9ee5-2ae019b9d85d))
(pad "2" smd rect (at -1.25 0 90) (size 0.7 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 55b59a6c-6b74-49a7-b0e7-045b8193e7e8))
(pad "3" smd rect (at 1.25 -0.95 90) (size 0.7 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(D3-G)") (pinfunction "G") (pintype "input") (tstamp 63bf55ca-2d05-4cf2-b9a7-8fa76aea98da))
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu")
(tstamp 0265ec18-18de-41b5-82c7-a9e29bad7cd9)
(at 97.85 112.725)
(descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x01 1.00mm single row")
(property "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/428e9466-9d64-4646-a18f-3f1ea2425965")
(attr through_hole)
(fp_text reference "H4" (at 0 -1.56) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e775a2ff-a874-4b09-a0e3-0e95b6dae13f)
)
(fp_text value "A+" (at 0 0.685) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05dce5a9-dafb-49e9-a6fb-fc81452309aa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.76 0.76) (thickness 0.114)))
(tstamp 63ebef27-3714-4dfe-9c7d-1228a0152797)
)
(fp_line (start -0.695 -0.685) (end 0 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 128cd2aa-9792-4e63-89e6-2bbc0f76b170))
(fp_line (start -0.695 0) (end -0.695 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b09e403e-e049-4ea9-8a73-9fec67c30a33))
(fp_line (start -0.695 0.685) (end -0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 348c9014-f53d-44f7-bca2-c95605ed7513))
(fp_line (start -0.695 0.685) (end -0.608276 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bae59cb-c1b1-49eb-97f1-0879aa765db7))
(fp_line (start -0.695 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c54faf27-8573-41f0-9808-758426319b9c))
(fp_line (start 0.608276 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29b3a97f-3866-4f4e-9e92-127972714f41))
(fp_line (start 0.695 0.685) (end 0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a136a720-46b8-4698-ab37-9ae39795446d))
(fp_line (start -1.15 -1) (end -1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 876bbc72-9712-4a8d-b747-c17258d1ff36))
(fp_line (start -1.15 1) (end 1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39e8d178-7aec-423b-b9b8-39e832475629))
(fp_line (start 1.15 -1) (end -1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f526a0c-1d6f-428a-a27c-7f6d5eb54bab))
(fp_line (start 1.15 1) (end 1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34d4c76b-520c-4ca3-aa61-e7804d126051))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e226239-24f6-4919-8c0f-d09788006691))
(fp_line (start -0.635 0.5) (end -0.635 -0.1825)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af71a381-ed42-405c-afc6-c152a8734bbe))
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a8bb6b4-77c3-4d24-acad-b33c6da5da2c))
(fp_line (start 0.635 -0.5) (end 0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 395aa187-c0aa-471c-b4e9-818da3e453aa))
(fp_line (start 0.635 0.5) (end -0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21d772ff-b166-496e-b3e5-c7edde3658b4))
(pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "Net-(H4-Pad1)") (pinfunction "1") (pintype "input") (tstamp a22b254b-4ef5-4017-a94f-85ea68067226))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.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 07e1f009-6b89-4caa-bd73-c028143eb468)
(at 98.875 110.1 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/5c1b0d13-402c-4749-a06e-2ea3e7a23e83")
(attr smd)
(fp_text reference "CREF1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38e4ad36-643f-4d74-8258-998984ef20f6)
)
(fp_text value "0.01 μF" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e051bf7-dfe7-48ab-9f51-3a5e84ad2234)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 2dacf367-c836-4fbc-b710-0c80b8a972a1)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1de23ed7-d270-4bd5-91c2-2acd8f8c9165))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5902daba-2d6a-43b1-a4e1-09da6a1791a5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efc59bcb-81d5-4c91-be4b-f4a31709981a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f295fdd2-a667-4a0e-89f6-96da6c908263))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f1cbf4c-b146-450c-86df-cfc928095af0))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 950c6844-b779-47be-8ecc-224bb0fa1bc2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d2f246d-8062-46d7-9b17-b1a103c68e69))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28074b73-00d7-4de6-9aaa-266107fe002f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2537af0f-98e6-412c-9b44-bffff80b3501))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eabb8863-a8f2-45fe-b098-8a534a54a864))
(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 8 "GND") (pintype "passive") (tstamp 11018e08-ba9c-4857-81e0-1690784c977f))
(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 7 "Net-(U1-VREF_SAMP)") (pintype "passive") (tstamp b472a3b3-c8d1-4ee3-b778-74ba4560c43b))
(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 "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu")
(tstamp 13b98beb-3c10-4f8b-bf5b-bbf912dd57b2)
(at 106.9 109.9 180)
(descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x01 1.00mm single row")
(property "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/6eb59c97-c265-4c53-904e-a84c50376dd1")
(attr through_hole)
(fp_text reference "H13" (at 0 -1.56) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 762b0be2-322c-43ab-9560-35e13815a43a)
)
(fp_text value "O+" (at -1.175 -0.55 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef5859f6-cc0e-4711-aa1b-3f18bd06edb1)
)
(fp_line (start -0.695 -0.685) (end 0 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e87155c8-0ce6-400b-8f65-3773d401685d))
(fp_line (start -0.695 0) (end -0.695 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07a23bb7-6e52-49d3-8094-bce2057884cd))
(fp_line (start -0.695 0.685) (end -0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dd799cf-d96b-4e0d-a05b-9aa90afb3c24))
(fp_line (start -0.695 0.685) (end -0.608276 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a894a8a8-0a23-4ae4-bef0-72de5aca126d))
(fp_line (start -0.695 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 388b6328-3feb-4f49-841f-23b02b079257))
(fp_line (start 0.608276 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b47dc52a-b61f-4adb-8135-c9c2de59c67c))
(fp_line (start 0.695 0.685) (end 0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7ce3ffa-95af-4b9a-afab-14a5d4e79ea4))
(fp_line (start -1.15 -1) (end -1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83c5f2c6-a3c4-45cf-b71f-af89ead8b5f0))
(fp_line (start -1.15 1) (end 1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b2a17f0-eaeb-4dc8-9987-415830108ff2))
(fp_line (start 1.15 -1) (end -1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74b8287f-e7fb-4035-b2a1-e88e33b1d0db))
(fp_line (start 1.15 1) (end 1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28c065ad-cf83-43e5-882d-978ae1c57483))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dd201eb-cfd0-4453-b3a5-5798fb7e8708))
(fp_line (start -0.635 0.5) (end -0.635 -0.1825)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 798f0adc-ac69-44a4-a2a9-5c291578aa5f))
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54a5ea3c-19a4-4668-b2dd-0afd7cd03249))
(fp_line (start 0.635 -0.5) (end 0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d29828e-bb3f-445a-9a43-4694c2e26913))
(fp_line (start 0.635 0.5) (end -0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ac9bce6-6f0a-4420-ab8f-99156d97e039))
(pad "1" thru_hole rect (at 0 0 180) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 17 "Net-(C1--)") (pinfunction "1") (pintype "input") (tstamp a78902eb-b843-4408-b426-8bc43b7146e3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 1b38d13c-a1f6-475a-a38e-49de24bf5beb)
(at 100.775 108.15 90)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a21e196e-a6fb-4b97-af65-ac369e51bdae")
(attr smd)
(fp_text reference "RUV2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59d5fc71-c011-4405-832c-6b3fe5a29e2d)
)
(fp_text value "4.42 MΩ" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fe7dc69-e871-4441-b770-1e49137674e7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 69243077-747c-4162-a573-9432db56c8b8)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2253874e-9dac-4083-a562-290a2c925702))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01bad202-4d44-49c0-8b85-b8ab558a812b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95654331-7569-48e8-be22-12f964b92526))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 868c9ca2-fef6-4d41-89e5-2258d0f79795))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcd282c1-5a28-417d-a1bc-7ba0a997ad49))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f25d96d5-c879-4496-a80d-11e3e87ee5f2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11bd5fa9-b39c-493d-9b73-1cc6c9b3142b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cb2e679-b15c-4098-97a7-e3e29913823a))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56f06b45-2cb7-4da7-bdab-754bbe3391c3))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4830c46-d6ba-4ed5-a1f9-a10d7614055d))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(U1-VRDIV)") (pintype "passive") (tstamp 45e624de-3216-4090-8563-a51ee1c4f430))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U1-VBAT_UV)") (pintype "passive") (tstamp 5529e71e-0ca4-4cb3-9e45-aae6fc4e2809))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.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 22778942-538a-4bb7-83ac-aefb1f0434be)
(at 99.1 101.5 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/f3d335dc-335b-436e-98c3-25098e3b3964")
(attr smd)
(fp_text reference "CBYP1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db83be91-f3ec-4ec7-bdd6-e9b7eccb6b8f)
)
(fp_text value "0.01 μF" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e82d1a1-0445-4aef-bc6c-345064ebeecc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 64567451-99b9-4f77-a541-943157e61dae)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11c2c4ec-0899-4471-8251-017f7b1227df))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 992a4227-24a2-4713-8512-99eb38a956de))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 877a0f12-78e0-4193-8a5b-701bbc5719f0))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ebf6863-4193-4d18-a223-64d3cce8c2d3))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f12528f7-165d-4730-9f9d-722572a83900))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0551a1d6-7550-47b1-8fe4-ffa99e37ec9f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b4632de-908a-4a13-ad1d-365983d6ce41))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18ec828d-7f8c-48f4-9f97-8e0c88bdefb3))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 044a17ec-8baf-4414-bc79-26a86b05bd83))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26540153-8a4b-4b54-a3d9-c47e30690736))
(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 14 "Net-(U1-VSTOR)") (pintype "passive") (tstamp 783d23bc-af83-42d1-b804-7c49d11dafd9))
(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 8 "GND") (pintype "passive") (tstamp 1d142c52-6f8d-4b31-84a1-df3e32dd550d))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 243812ec-84d7-4537-b759-b3a089031b4a)
(at 96.65 103.05 -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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/cd93605f-de14-4ddd-b61f-0c6312d76152")
(attr smd)
(fp_text reference "CHVR1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cab45682-1fb3-4595-8986-802c991033f6)
)
(fp_text value "4.7 μF" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08617f57-c96a-414a-8898-d7e9976ec698)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 243fcf6c-824f-4211-9735-5830c1cc9454)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92e1f3b6-8285-4fd3-86f4-38feda256240))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee61d0be-b4cc-45bd-a9d9-0ae72c96896c))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a05776de-0ab2-4ae9-b849-d682bfcea247))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7db3eebb-5162-4818-a001-2fc6d012c7b8))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6de5874-edb5-4f6f-9293-d31ebdafae01))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 468bb888-cd66-4e84-88f2-9ec1245225f1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a341e21-37a2-4358-842d-3617102b03b6))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf5ec4e4-7049-4f32-8428-4cae5b2682e0))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4605bc9-c4c8-45ee-84f3-f7bbac32938a))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2fbf12c-9d52-4606-8b75-d344b61cad46))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 9cf9cf5d-f463-43be-b1aa-311027b27577))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(D2-K)") (pintype "passive") (tstamp c65fee2a-9ad9-4496-b342-8812068caad9))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 25b56ec8-7470-463a-b9ed-5e1d224a670e)
(at 97.8 110.11 -90)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5b20948e-7a68-4b1f-aca7-724c7b063970")
(attr smd)
(fp_text reference "ROC1" (at 0 -1.17 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5de75058-29e5-4517-95d2-c296d3cc5406)
)
(fp_text value "10 MΩ" (at 0 1.17 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9219e8c-94a4-415e-8dfe-d5a876479269)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a04d3daa-0d8a-4b6b-bcdd-a6852ad13604)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ae406ba-0db1-47d0-b18e-4da75eacf36c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0203b3d-53e7-4032-9480-14f5a27353f7))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16f3fba8-56ea-426e-af66-8c1e5581af9d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b20f4c1d-b96b-4fe8-9129-0d9569dd8390))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3217d066-564d-4726-9b44-f4c8ade49646))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ff51748-c1b1-4814-af67-e2829e8977da))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fdd5d3b-7c8f-49cd-a886-79f2c8143169))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8917e616-6c66-4335-9522-d98150310651))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7eb9ec86-54c8-4eb7-90a8-d451dc203b2b))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e303eaf-b2cc-4818-ae38-66eea62a626b))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(U1-VOC_SAMP)") (pintype "passive") (tstamp f0a70dfc-6077-422a-bdee-0b6ebffb6902))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(ROC1-Pad2)") (pintype "passive") (tstamp bb807d9c-8334-4639-b6e4-0d18d2d9e5bd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 349b78e6-9807-41a1-b963-f9dfec779bbd)
(at 100.085 113.225)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/6c138f2b-0010-44fe-8854-dc2e7fd21938")
(attr smd)
(fp_text reference "ROC12" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5385af4a-a700-4a75-9dbf-c7888a5bdee0)
)
(fp_text value "5.62 MΩ" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b7d6416-1923-42e1-bd0e-6feffb344025)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp fdbcb9cd-17e3-4aab-9c86-774f8897a057)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64dc2988-1b9e-4d30-9fe6-b5f12a5098d7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46ab498e-efa6-47dc-b38a-9302ded27e5d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9934ee96-ec09-40ae-acf5-57aca0c7e143))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bc6677c-70aa-493f-8acb-b49644177095))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fb40848-def0-4fdf-84c4-34df4ef9bbe4))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a62d7840-ed80-44c7-83f2-b95e4fa716d2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4921e1ce-13ec-4e29-94c3-115b9e149481))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87981d08-8617-4d05-8f61-17ff5fe57656))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfb15ce1-ce02-460a-9299-527e6408c91e))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5eb34996-563f-4b43-9315-e1cdacdc8663))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(ROC1-Pad2)") (pintype "passive") (tstamp a31fadce-dd87-41dd-b0d7-34e3202ee876))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp d10cdc96-157f-4971-a908-f9f8d0641425))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 3599833c-eb0f-40d4-9f07-77a7d4bbd3b9)
(at 102.55 109.24 90)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9ba05bdf-945a-4426-bdd4-e7c04215a657")
(attr smd)
(fp_text reference "ROK2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6668c386-ab5b-4b98-abdf-89af48da496a)
)
(fp_text value "4.22 MΩ" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fc437bc-ca44-413f-87a8-f2d7cdf3e2fd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b4ed30e6-b7ec-4dd5-832f-fadf11605f76)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1691d28-cda1-4af6-ae3d-30940b39586f))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d910b9b-ab60-4d4c-8438-4ac9448698dc))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9cfe8ca-1cad-43fa-8b5f-20816fb44b39))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67b987e7-a809-49d3-ad8b-28440ce0750f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45834df0-bb96-4453-bb27-5627c8490bcc))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9d41f49-879f-47e9-b8a4-ec5fef36ac13))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9413013a-1d05-41ed-80e4-92f451dba623))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55690da0-3c22-41d0-9c75-0d64444f0d1e))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7d880bf-b3ce-4322-82df-b7445aec225b))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5eab8304-0ac5-4db1-9af7-472482259f5a))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(U1-OK_HYST)") (pintype "passive") (tstamp 20b77543-2e5c-4bf8-9068-4adfe3cf4644))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-OK_PROG)") (pintype "passive") (tstamp 9a4429ee-d4fa-4162-afa0-c274cddf6111))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu")
(tstamp 4e129222-914f-40c3-a420-e770bb17805b)
(at 91.325 102.625)
(descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x01 1.00mm single row")
(property "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/be73db26-addf-4c75-a090-a5d5f0a5c7bf")
(attr through_hole)
(fp_text reference "H1" (at 0 -1.56) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f25a178a-5528-4429-94a2-59b9cee7fb44)
)
(fp_text value "DC+" (at 0.325 1.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be1809ab-305d-4efd-bd4a-b27e7cdae17e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.76 0.76) (thickness 0.114)))
(tstamp c59d7f18-ba2b-4421-97f3-cd901aae0824)
)
(fp_line (start -0.695 -0.685) (end 0 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12b656d2-4b3f-4fcc-bb25-9897eefbdf61))
(fp_line (start -0.695 0) (end -0.695 -0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a224ad42-32f6-4195-bc4b-48990e3f3935))
(fp_line (start -0.695 0.685) (end -0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 961cc8a9-169a-4787-bf6f-727d676e2407))
(fp_line (start -0.695 0.685) (end -0.608276 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dc2831e-0af5-4a4c-a987-4807f10ca8c0))
(fp_line (start -0.695 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa7f011-afcb-470a-ad98-a1adadec46a3))
(fp_line (start 0.608276 0.685) (end 0.695 0.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0eca6d51-d7fb-41f4-aa07-1dbe6f9748d2))
(fp_line (start 0.695 0.685) (end 0.695 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0032c090-7c8a-4f8e-8186-bb3b0b9f62ae))
(fp_line (start -1.15 -1) (end -1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3dd6d5b-7d09-4718-b4fb-877beec2bee1))
(fp_line (start -1.15 1) (end 1.15 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a75bcf17-6768-44d5-b8b0-f60bc05d4582))
(fp_line (start 1.15 -1) (end -1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7835c7fe-b19d-4a92-be82-c69e32758b58))
(fp_line (start 1.15 1) (end 1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cb57103-d9c2-4ff6-86a2-5efbe7aad4fc))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3412c286-707e-4626-b90a-12e42392048a))
(fp_line (start -0.635 0.5) (end -0.635 -0.1825)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5575bd9-f5fe-40b0-94a9-84f7fe58a8f1))
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b18af76c-19d6-4851-872c-559bd29421e6))
(fp_line (start 0.635 -0.5) (end 0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b097370-61d5-4fb4-91b1-04782fd66c2e))
(fp_line (start 0.635 0.5) (end -0.635 0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 501585d3-b0c5-4e48-a1d2-b07cf2653230))
(pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 20 "Net-(D2-K)") (pinfunction "1") (pintype "input") (tstamp cf0d49c7-929f-4218-a3e9-231c7ae36983))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "JPLPCB:RGT16_1P7X1P7" (layer "F.Cu")
(tstamp 51f23c74-49d3-4554-9240-e30666c82da2)
(at 99.524999 104.849999)
(tags "BQ25504RGTR ")
(property "Sheetfile" "EHHT_v2.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "BQ25504RGTR")
(path "/ce53495d-60b2-4d2b-9d66-88b5cc998376")
(attr smd)
(fp_text reference "U1" (at 5.08 -2.54 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a562eeb7-0b71-479d-87d7-ebdce594e456)
)
(fp_text value "BQ25504RGTR" (at 5.08 -7.62 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d795ec9f-c977-4dd1-9353-4701580dd31b)
)
(fp_text user "*" (at -2.149999 -1.474999) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b21923c6-1fc8-4f7e-87a9-23b16a7c8cd6)
)
(fp_text user "*" (at -2.149999 -1.474999 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f99a472b-9833-44e0-9437-ec7793b1cd1f)
)
(fp_text user "*" (at -2.535 -1.381) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 241fa261-27d0-41e0-b539-3360a8f4d1b1)
)
(fp_text user "*" (at -2.535 -1.381 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc7816c8-2a68-41c7-8586-594f7a30c570)
)
(fp_poly
(pts
(xy -1.875107 -0.865109)
(xy -1.875107 -0.634891)
(xy -1.074892 -0.634891)
(xy -1.074892 -0.865109)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 75d41bdb-5034-40bb-be42-f107b5ba3077))
(fp_poly
(pts
(xy -1.875107 -0.365107)
(xy -1.875107 -0.134892)
(xy -1.074892 -0.134892)
(xy -1.074892 -0.365107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp f4085d83-754f-423d-87c0-24bb6bf4be2c))
(fp_poly
(pts
(xy -1.875107 0.134892)
(xy -1.875107 0.365107)
(xy -1.074892 0.365107)
(xy -1.074892 0.134892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp b87c4281-ae26-4a12-8cc3-e494bd052a53))
(fp_poly
(pts
(xy -1.875107 0.634891)
(xy -1.875107 0.865109)
(xy -1.074892 0.865109)
(xy -1.074892 0.634891)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 256a17a3-f3d4-4e43-9f60-9fe99d81e5a2))
(fp_poly
(pts
(xy -0.865297 -1.875107)
(xy -0.865297 -1.074892)
(xy -0.635081 -1.074892)
(xy -0.635081 -1.875107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 7d1c8a91-dcdd-421b-aade-a2f08a71ea97))
(fp_poly
(pts
(xy -0.865297 1.074892)
(xy -0.865297 1.875107)
(xy -0.635081 1.875107)
(xy -0.635081 1.074892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp a4caa5a7-1dba-4620-b860-bd26196f9fff))
(fp_poly
(pts
(xy -0.365171 -1.875107)
(xy -0.365171 -1.074892)
(xy -0.134955 -1.074892)
(xy -0.134955 -1.875107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 60033667-136f-47e4-8cf8-c726f3645507))
(fp_poly
(pts
(xy -0.365171 1.074892)
(xy -0.365171 1.875107)
(xy -0.134955 1.875107)
(xy -0.134955 1.074892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 303a9b63-aa5a-4e5f-b4bb-9640c80ba335))
(fp_poly
(pts
(xy 0.134955 -1.875107)
(xy 0.134955 -1.074892)
(xy 0.365171 -1.074892)
(xy 0.365171 -1.875107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 694ced9c-4517-4d02-af0e-1b9d22966994))
(fp_poly
(pts
(xy 0.134955 1.074892)
(xy 0.134955 1.875107)
(xy 0.365171 1.875107)
(xy 0.365171 1.074892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 92221cf7-0dcf-46c0-bb2c-665b5fc10fc1))
(fp_poly
(pts
(xy 0.635081 -1.875107)
(xy 0.635081 -1.074892)
(xy 0.865297 -1.074892)
(xy 0.865297 -1.875107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 0a2cdb45-1e75-4000-a436-f5006f0350ae))
(fp_poly
(pts
(xy 0.635081 1.074892)
(xy 0.635081 1.875107)
(xy 0.865297 1.875107)
(xy 0.865297 1.074892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4a93e8b7-1b2d-4c82-b7ee-8df9df8e7ed9))
(fp_poly
(pts
(xy 1.074892 -0.865109)
(xy 1.074892 -0.634891)
(xy 1.875107 -0.634891)
(xy 1.875107 -0.865109)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp de205010-6e01-4176-9e57-de4897fac64a))
(fp_poly
(pts
(xy 1.074892 -0.365107)
(xy 1.074892 -0.134892)
(xy 1.875107 -0.134892)
(xy 1.875107 -0.365107)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 25024092-9ce9-48fa-ab57-23adc35f16ee))
(fp_poly
(pts
(xy 1.074892 0.134892)
(xy 1.074892 0.365107)
(xy 1.875107 0.365107)
(xy 1.875107 0.134892)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 391e0e0a-51ac-4144-8a59-a37200082a8d))
(fp_poly
(pts
(xy 1.074892 0.634891)
(xy 1.074892 0.865109)
(xy 1.875107 0.865109)
(xy 1.875107 0.634891)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 19479350-5a09-4830-a6b2-020022fcc5ec))
(fp_poly
(pts
(xy -0.77507 -0.77507)
(xy -0.77507 -0.4937)
(xy -0.635121 -0.4937)
(xy -0.4937 -0.635121)
(xy -0.4937 -0.77507)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4e187623-5932-4c09-885e-f7ad435debe5))
(fp_poly
(pts
(xy -0.77507 0.4937)
(xy -0.77507 0.77507)
(xy -0.4937 0.77507)
(xy -0.4937 0.635121)
(xy -0.635121 0.4937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4f832f66-34f4-417e-8517-d6c5d2e9082f))
(fp_poly
(pts
(xy 0.4937 -0.77507)
(xy 0.4937 -0.635121)
(xy 0.635121 -0.4937)
(xy 0.77507 -0.4937)
(xy 0.77507 -0.77507)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 2c7a030a-9b39-4799-afa6-d1f7ba5368fc))
(fp_poly
(pts
(xy 0.635121 0.4937)
(xy 0.4937 0.635121)
(xy 0.4937 0.77507)
(xy 0.77507 0.77507)
(xy 0.77507 0.4937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp c35f6eee-f09b-42ed-af9d-79f7cf193dff))
(fp_poly
(pts
(xy -0.77507 -0.2937)
(xy -0.77507 0.2937)
(xy -0.635121 0.2937)
(xy -0.4937 0.152279)
(xy -0.4937 -0.152279)
(xy -0.635121 -0.2937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 94f63f12-665f-46d7-b04c-d8bb35788f33))
(fp_poly
(pts
(xy -0.2937 -0.77507)
(xy -0.2937 -0.635121)
(xy -0.152279 -0.4937)
(xy 0.152279 -0.4937)
(xy 0.2937 -0.635121)
(xy 0.2937 -0.77507)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 842f502e-6b9b-4deb-b0b7-1535f0c88267))
(fp_poly
(pts
(xy -0.152279 0.4937)
(xy -0.2937 0.635121)
(xy -0.2937 0.77507)
(xy 0.2937 0.77507)
(xy 0.2937 0.635121)
(xy 0.152279 0.4937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 8e5c8b11-3247-4039-8820-8cadadfb02d3))
(fp_poly
(pts
(xy 0.635121 -0.2937)
(xy 0.4937 -0.152279)
(xy 0.4937 0.152279)
(xy 0.635121 0.2937)
(xy 0.77507 0.2937)
(xy 0.77507 -0.2937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 9d9a1a0f-ee6c-46c3-b7f0-6e3bbda306e4))
(fp_poly
(pts
(xy -0.152279 -0.2937)
(xy -0.2937 -0.152279)
(xy -0.2937 0.152279)
(xy -0.152279 0.2937)
(xy 0.152279 0.2937)
(xy 0.2937 0.152279)
(xy 0.2937 -0.152279)
(xy 0.152279 -0.2937)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp e502f66b-e98d-42c5-bc59-2cc70803a3d8))
(fp_line (start -1.828999 -1.828999) (end -1.828999 -1.222741)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d39e46f5-88fd-4852-89df-f3507263dc42))
(fp_line (start -1.828999 1.222741) (end -1.828999 1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 88e753d2-1c82-4c2c-bc18-243355c45446))
(fp_line (start -1.828999 1.828999) (end -1.222929 1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 54405ae6-389b-44cb-8a55-addc29039a98))
(fp_line (start -1.222929 -1.828999) (end -1.828999 -1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 30de6c56-cedb-4264-b54c-7f7a0114329a))
(fp_line (start 1.222929 1.828999) (end 1.828999 1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 02f0aa8a-6e63-4b8e-81d5-df9b2d5b7972))
(fp_line (start 1.828999 -1.828999) (end 1.222929 -1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bf2a08d9-c173-4062-8481-58dccf78fa1b))
(fp_line (start 1.828999 -1.222741) (end 1.828999 -1.828999)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8941087e-387b-41e2-afc0-b75ce7e50eda))
(fp_line (start 1.828999 1.828999) (end 1.828999 1.222741)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1dbf9b2e-8634-4d8c-9c27-4dfb90cc2ab5))
(fp_poly
(pts