-
Notifications
You must be signed in to change notification settings - Fork 0
/
pmod_lvs.kicad_pcb
14342 lines (14305 loc) · 552 KB
/
pmod_lvs.kicad_pcb
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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "PMOD levelshifter")
(date "2021-11-03")
(rev "v1.0a")
(comment 1 "Made by mole99")
)
(layers
(0 "F.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)
)
(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.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.1)
(solder_mask_min_width 0.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "LV1")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "+5V")
(net 5 "HV1")
(net 6 "HV0")
(net 7 "HV2")
(net 8 "HV3")
(net 9 "LV0")
(net 10 "LV2")
(net 11 "LV3")
(net 12 "HV4")
(net 13 "HV5")
(net 14 "HV6")
(net 15 "HV7")
(net 16 "LV4")
(net 17 "LV5")
(net 18 "LV6")
(net 19 "LV7")
(footprint "connector:PMODSocket_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 61D1B1CF) (tstamp 00000000-0000-0000-0000-00006174e5b9)
(at 166.37 95.805001)
(descr "Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 2x06 2.54mm double row")
(property "Sheetfile" "pmod_lvs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061743584")
(attr through_hole)
(fp_text reference "J1" (at 5.65 -2.77) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44bf2e37-b80e-4858-aeec-2060ce9be79f)
)
(fp_text value "PMOD_Socket" (at 5.65 15.47) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 957d7599-18c7-43d0-875a-781d1c073cda)
)
(fp_text user "${REFERENCE}" (at 8.315 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19f2adc1-66e1-49a1-8594-73145f993482)
)
(fp_line (start 1.49 12.34) (end 1.05 12.34) (layer "F.SilkS") (width 0.12) (tstamp 047e3733-4197-403f-9330-1728435fbbbb))
(fp_line (start 0 -1.33) (end -1.11 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0735e292-addf-4fc2-b1e2-2df357c23bc0))
(fp_line (start 12.63 0.325235) (end 4 0.325235) (layer "F.SilkS") (width 0.12) (tstamp 0ae314be-4c68-45d4-baf4-49c4459acabe))
(fp_line (start 1.49 10.52) (end 1.05 10.52) (layer "F.SilkS") (width 0.12) (tstamp 0d197a50-c2e7-437c-b51b-ec308a31f17e))
(fp_line (start 12.63 0.20714) (end 4 0.20714) (layer "F.SilkS") (width 0.12) (tstamp 0dde259e-664f-4cfd-a8fb-d2e486e0dcdd))
(fp_line (start 12.63 0.67952) (end 4 0.67952) (layer "F.SilkS") (width 0.12) (tstamp 11c3f139-3346-484a-90a3-06923bcabd93))
(fp_line (start 12.63 -0.50143) (end 4 -0.50143) (layer "F.SilkS") (width 0.12) (tstamp 11e9ad2d-c575-42a4-af8b-cbc126930ade))
(fp_line (start 4 -1.33) (end 4 14.03) (layer "F.SilkS") (width 0.12) (tstamp 1c22f8a6-98a1-4a7b-bcf7-4edad41f2fd7))
(fp_line (start 4 0.36) (end 3.59 0.36) (layer "F.SilkS") (width 0.12) (tstamp 2dca5582-d0b4-4f13-b330-555d43f19edd))
(fp_line (start 4 4.72) (end 3.59 4.72) (layer "F.SilkS") (width 0.12) (tstamp 38a48e82-884a-49b0-bf6a-f46773f816b6))
(fp_line (start 1.49 -0.36) (end 1.11 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 38ab1fdb-c2e3-48bf-b03c-d1adf470c7f6))
(fp_line (start 4 7.26) (end 3.59 7.26) (layer "F.SilkS") (width 0.12) (tstamp 3a1bf000-5d37-42b6-8440-20d68c319ca8))
(fp_line (start 12.63 -0.147145) (end 4 -0.147145) (layer "F.SilkS") (width 0.12) (tstamp 4213b34b-979c-4d41-97ab-0543a21afbfb))
(fp_line (start 4 12.34) (end 3.59 12.34) (layer "F.SilkS") (width 0.12) (tstamp 43c0608b-a3be-4b4c-817d-e03ca1ad7749))
(fp_line (start 1.49 5.44) (end 1.05 5.44) (layer "F.SilkS") (width 0.12) (tstamp 472f7527-aa71-463c-adc3-ff38fd02afe9))
(fp_line (start 12.63 -1.33) (end 12.63 14.03) (layer "F.SilkS") (width 0.12) (tstamp 5d924fc8-643e-411e-a7b6-23ad8258099b))
(fp_line (start 12.63 -1.21) (end 4 -1.21) (layer "F.SilkS") (width 0.12) (tstamp 5e6d8415-c2d8-44bc-b5d6-e696a0111c85))
(fp_line (start 12.63 0.089045) (end 4 0.089045) (layer "F.SilkS") (width 0.12) (tstamp 62e271dc-7c98-4f66-8b22-62c58a14db37))
(fp_line (start 12.63 -0.619525) (end 4 -0.619525) (layer "F.SilkS") (width 0.12) (tstamp 63b208a7-a732-402e-a767-976947a5eaf1))
(fp_line (start 4 9.8) (end 3.59 9.8) (layer "F.SilkS") (width 0.12) (tstamp 64e55848-0542-4114-9714-6ae9562be1e0))
(fp_line (start 12.63 0.561425) (end 4 0.561425) (layer "F.SilkS") (width 0.12) (tstamp 69ccf0dd-1552-465b-9f7b-284647f53f0c))
(fp_line (start 12.63 8.89) (end 4 8.89) (layer "F.SilkS") (width 0.12) (tstamp 6b483970-1fdb-43f6-b345-99251ec0d271))
(fp_line (start 4 -0.36) (end 3.59 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 6c586ced-c13d-411c-924c-d831e03e1dd8))
(fp_line (start 12.63 -0.02905) (end 4 -0.02905) (layer "F.SilkS") (width 0.12) (tstamp 6c5b0dfe-07c5-4d47-ace9-d900501a6a98))
(fp_line (start 12.63 3.81) (end 4 3.81) (layer "F.SilkS") (width 0.12) (tstamp 728265c0-cf6c-4757-a9e4-ece5b12d4ecc))
(fp_line (start 12.63 1.27) (end 4 1.27) (layer "F.SilkS") (width 0.12) (tstamp 758e26f5-2c91-4d9f-a4f4-50b31f509a4f))
(fp_line (start 12.63 -0.97381) (end 4 -0.97381) (layer "F.SilkS") (width 0.12) (tstamp 78a57db7-bf8e-4ba7-99c9-94d7db7ca375))
(fp_line (start 1.49 2.18) (end 1.05 2.18) (layer "F.SilkS") (width 0.12) (tstamp 7c015706-9518-4b69-97f4-5695d09724bc))
(fp_line (start 12.63 1.1519) (end 4 1.1519) (layer "F.SilkS") (width 0.12) (tstamp 7d531d5a-4639-4999-8abe-7165ec169aeb))
(fp_line (start 1.49 9.8) (end 1.05 9.8) (layer "F.SilkS") (width 0.12) (tstamp 82516f0a-c513-4e4a-ab0d-a8325057179e))
(fp_line (start 1.49 7.26) (end 1.05 7.26) (layer "F.SilkS") (width 0.12) (tstamp 8502e614-2077-4238-a9f2-980b6759df7d))
(fp_line (start 12.63 0.91571) (end 4 0.91571) (layer "F.SilkS") (width 0.12) (tstamp 8c425083-2dc2-41ed-8b00-d6735d288a6b))
(fp_line (start 12.63 -0.383335) (end 4 -0.383335) (layer "F.SilkS") (width 0.12) (tstamp 8fc2c392-4287-4524-915f-d2b486043ae3))
(fp_line (start 12.63 1.033805) (end 4 1.033805) (layer "F.SilkS") (width 0.12) (tstamp 91c346e1-763b-44df-abf0-2706901c4f66))
(fp_line (start 1.49 7.98) (end 1.05 7.98) (layer "F.SilkS") (width 0.12) (tstamp 93a81f63-447c-42b6-b847-7e662e0fd33a))
(fp_line (start 12.63 0.44333) (end 4 0.44333) (layer "F.SilkS") (width 0.12) (tstamp 9640b45c-6461-4425-9c6a-acb82ab81aec))
(fp_line (start 4 5.44) (end 3.59 5.44) (layer "F.SilkS") (width 0.12) (tstamp 96ce6380-3359-41e0-aaf6-d17d90cb7d66))
(fp_line (start 4 2.18) (end 3.59 2.18) (layer "F.SilkS") (width 0.12) (tstamp 9cee5fa2-d75d-4cc7-8192-574319fa460b))
(fp_line (start 12.63 -0.855715) (end 4 -0.855715) (layer "F.SilkS") (width 0.12) (tstamp 9dcfd329-9949-4764-8e5b-1b838b7b4b5d))
(fp_line (start 4 2.9) (end 3.59 2.9) (layer "F.SilkS") (width 0.12) (tstamp a91694cb-0cc1-4e04-afa2-637a379023ed))
(fp_line (start 12.63 14.03) (end 4 14.03) (layer "F.SilkS") (width 0.12) (tstamp b28c0bed-02ea-4023-9179-457c0f2bd5be))
(fp_line (start 12.63 11.43) (end 4 11.43) (layer "F.SilkS") (width 0.12) (tstamp c7a27027-e48a-4734-9536-803005155579))
(fp_line (start 12.63 0.797615) (end 4 0.797615) (layer "F.SilkS") (width 0.12) (tstamp caa53fb4-2ab1-4603-987d-79b55ba94296))
(fp_line (start 4 13.06) (end 3.59 13.06) (layer "F.SilkS") (width 0.12) (tstamp cac47d0f-e269-400d-b7a5-4e63d7e25daf))
(fp_line (start 1.49 2.9) (end 1.05 2.9) (layer "F.SilkS") (width 0.12) (tstamp cd70c525-6b6a-4153-8579-824a2e955b6f))
(fp_line (start 1.49 4.72) (end 1.05 4.72) (layer "F.SilkS") (width 0.12) (tstamp d0a50a0e-ae20-4c38-b3d9-40c3ffce08f5))
(fp_line (start 12.63 -1.33) (end 4 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d435b276-db37-4eb9-a27b-0cfb5a4a7071))
(fp_line (start 12.63 -1.091905) (end 4 -1.091905) (layer "F.SilkS") (width 0.12) (tstamp d4dbc494-6d93-47dc-bc72-756d698c087f))
(fp_line (start 12.63 -0.26524) (end 4 -0.26524) (layer "F.SilkS") (width 0.12) (tstamp d690e760-20fb-4173-acf1-5f80a62b18af))
(fp_line (start 4 7.98) (end 3.59 7.98) (layer "F.SilkS") (width 0.12) (tstamp d84f2f09-3afe-4b47-8c0d-236f708da2a2))
(fp_line (start 1.49 0.36) (end 1.11 0.36) (layer "F.SilkS") (width 0.12) (tstamp e3ac0a34-ba95-4607-b3ce-7cdbc793537f))
(fp_line (start 12.63 6.35) (end 4 6.35) (layer "F.SilkS") (width 0.12) (tstamp e43a8404-b646-477c-a473-74abd93184ed))
(fp_line (start 12.63 -0.73762) (end 4 -0.73762) (layer "F.SilkS") (width 0.12) (tstamp eb42a9e2-c91e-476d-b87d-b7626f64a068))
(fp_line (start 1.49 13.06) (end 1.05 13.06) (layer "F.SilkS") (width 0.12) (tstamp f57cc4c3-5f92-479d-8a3a-c8f4e58c6cc7))
(fp_line (start -1.11 -1.33) (end -1.11 0) (layer "F.SilkS") (width 0.12) (tstamp f67e2424-f42b-460a-886b-e9e10cf585cb))
(fp_line (start 4 10.52) (end 3.59 10.52) (layer "F.SilkS") (width 0.12) (tstamp fb7e3e13-0043-4dff-ab8f-1ec100342b13))
(fp_line (start -1.8 -1.8) (end 13.05 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 153081c7-dff0-45d2-8bc9-897d9e67b75b))
(fp_line (start 13.05 -1.8) (end 13.05 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 52ee90aa-18c3-4f6c-820d-681850f00795))
(fp_line (start -1.8 14.45) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 556c9a2b-47f8-4a8f-8c31-cf612c4945b6))
(fp_line (start 13.05 14.45) (end -1.8 14.45) (layer "F.CrtYd") (width 0.05) (tstamp dc2ec183-cfc6-4db4-9e37-86a15c3f1d50))
(fp_line (start 4.06 -0.3) (end 4.06 13.97) (layer "F.Fab") (width 0.1) (tstamp 0453cb12-1187-479b-bc53-c12a8c357ad1))
(fp_line (start 12.57 13.97) (end 12.57 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0fae514f-3e87-4df1-b558-bffdd29ac354))
(fp_line (start 4.06 2.84) (end 0 2.84) (layer "F.Fab") (width 0.1) (tstamp 3a374032-f9f0-4f1c-b03d-59289549413c))
(fp_line (start 4.06 10.46) (end 0 10.46) (layer "F.Fab") (width 0.1) (tstamp 3c39af55-3e08-4fe1-8259-49fa35d2e4a8))
(fp_line (start 0 2.84) (end 0 2.24) (layer "F.Fab") (width 0.1) (tstamp 434d3f4f-5086-4098-86d9-933ffde99da7))
(fp_line (start 5.03 -1.27) (end 4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp 4e2b4eea-d412-4432-8157-1b9581d79557))
(fp_line (start 0 0.3) (end 0 -0.3) (layer "F.Fab") (width 0.1) (tstamp 6c67f295-212a-4df0-b656-df0433bc2f5e))
(fp_line (start 4.06 13) (end 0 13) (layer "F.Fab") (width 0.1) (tstamp 72837998-3d07-4d7f-9706-9dffef83f088))
(fp_line (start 0 13) (end 0 12.4) (layer "F.Fab") (width 0.1) (tstamp 888f8a01-7097-4859-82e6-65af2f85901c))
(fp_line (start 4.06 5.38) (end 0 5.38) (layer "F.Fab") (width 0.1) (tstamp 894d5335-e5bc-48db-a413-d2508c1b9889))
(fp_line (start 0 9.86) (end 4.06 9.86) (layer "F.Fab") (width 0.1) (tstamp 8ae00676-6533-4140-b475-82de857650bf))
(fp_line (start 0 7.92) (end 0 7.32) (layer "F.Fab") (width 0.1) (tstamp 9e060538-9520-4846-84a3-5a93163fe675))
(fp_line (start 4.06 7.92) (end 0 7.92) (layer "F.Fab") (width 0.1) (tstamp a9c17a20-276c-4447-9ca1-b785fc712eb2))
(fp_line (start 0 12.4) (end 4.06 12.4) (layer "F.Fab") (width 0.1) (tstamp b16e6941-e7a9-49c0-9756-264263900518))
(fp_line (start 0 10.46) (end 0 9.86) (layer "F.Fab") (width 0.1) (tstamp bdc05e9f-757d-4b67-be2b-34212d29f4f4))
(fp_line (start 4.06 13.97) (end 12.57 13.97) (layer "F.Fab") (width 0.1) (tstamp c360ef11-84c3-41a9-a3b0-c5fdaad2b2e1))
(fp_line (start 0 -0.3) (end 4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp d0ba1ad5-154e-4cf1-8b0e-d75f485c4498))
(fp_line (start 4.06 0.3) (end 0 0.3) (layer "F.Fab") (width 0.1) (tstamp ddc95a86-3403-425c-83f3-e0ed707380a9))
(fp_line (start 0 7.32) (end 4.06 7.32) (layer "F.Fab") (width 0.1) (tstamp e0ad3520-142e-4ad8-af8b-4bef3294b002))
(fp_line (start 12.57 -1.27) (end 5.03 -1.27) (layer "F.Fab") (width 0.1) (tstamp ea73d14e-20c8-4a8c-ae07-48ace6ca4034))
(fp_line (start 0 4.78) (end 4.06 4.78) (layer "F.Fab") (width 0.1) (tstamp f07f323f-9bcd-4ca3-8b29-67cc4c2d237a))
(fp_line (start 0 2.24) (end 4.06 2.24) (layer "F.Fab") (width 0.1) (tstamp f292ae83-8284-4bd0-b36d-005cd03f11d2))
(fp_line (start 0 5.38) (end 0 4.78) (layer "F.Fab") (width 0.1) (tstamp fb25826a-5312-48b2-ba1f-c102f36d9032))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "HV0") (pinfunction "Pin_1") (pintype "passive") (tstamp 1b66601c-f11f-4fb4-8966-6c4fc22acdda))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "HV1") (pinfunction "Pin_2") (pintype "passive") (tstamp 5ed06b80-11ff-43e0-acb5-b60a22485cf0))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "HV2") (pinfunction "Pin_3") (pintype "passive") (tstamp 41e12696-0aa8-462e-af92-c6028c36ede2))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "HV3") (pinfunction "Pin_4") (pintype "passive") (tstamp 3d51617c-b882-4175-9674-778233a5a1fa))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp faf0bfa3-1579-442b-b85d-fb2bff9423ae))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp 1384fc41-5ffd-45e3-a049-fc47687b3bf9))
(pad "7" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "HV4") (pinfunction "Pin_7") (pintype "passive") (tstamp 588ac470-d856-4e6d-a55f-72ba7a74234c))
(pad "8" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "HV5") (pinfunction "Pin_8") (pintype "passive") (tstamp f4d68080-2d2e-4dcb-986c-8414a97cc210))
(pad "9" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "HV6") (pinfunction "Pin_9") (pintype "passive") (tstamp 3b261ba8-4b32-4c17-8c9e-7fa7b6141251))
(pad "10" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "HV7") (pinfunction "Pin_10") (pintype "passive") (tstamp 683c4975-9a3e-401c-b5a4-021bf2a62566))
(pad "11" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp f061b5b1-c168-4314-b24d-86845395e811))
(pad "12" thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "Pin_12") (pintype "passive") (tstamp 90376ee7-376f-4aa7-a89d-ba75c78d3808))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "connector:PMODHeader_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 61D1B1B3) (tstamp 00000000-0000-0000-0000-00006174e632)
(at 137.585001 95.805001)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "pmod_lvs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061744b2f")
(attr through_hole)
(fp_text reference "J2" (at -5.08 -2.54) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d156a759-c835-4c71-aa6c-abb2e3ce39b2)
)
(fp_text value "PMOD_Header" (at -5.08 15.24) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 282b63e2-e3ec-4dc5-8e10-398627305fa9)
)
(fp_text user "${REFERENCE}" (at -5.31 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d2080ba-4d74-4e70-90c8-3e506eb1b7c3)
)
(fp_line (start -1.042929 9.78) (end -1.497071 9.78) (layer "F.SilkS") (width 0.12) (tstamp 0cf1f298-b5af-44b6-99eb-5a6c8f938332))
(fp_line (start -6.64 -0.2) (end -12.64 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 0d6d3ac8-4002-4df6-8142-21db02a6d375))
(fp_line (start -3.582929 5.46) (end -3.98 5.46) (layer "F.SilkS") (width 0.12) (tstamp 0d87bca8-e02e-41a0-85ea-0133e2df41b3))
(fp_line (start -6.64 -1.33) (end -3.98 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 14afaf99-a1d5-480c-8ae7-f90f00a6bc7a))
(fp_line (start -3.98 3.81) (end -6.64 3.81) (layer "F.SilkS") (width 0.12) (tstamp 16754998-23a8-4057-9482-8cf79fc5eab0))
(fp_line (start -6.64 12.32) (end -12.64 12.32) (layer "F.SilkS") (width 0.12) (tstamp 1762522e-ac57-4de8-be3b-d16653163557))
(fp_line (start -12.64 2.16) (end -12.64 2.92) (layer "F.SilkS") (width 0.12) (tstamp 1d6f5f96-0f02-4cc9-8d43-cd42e5a56007))
(fp_line (start -3.98 -1.33) (end -3.98 14.03) (layer "F.SilkS") (width 0.12) (tstamp 24940654-25af-426e-aeeb-64e86167174f))
(fp_line (start -1.042929 8) (end -1.497071 8) (layer "F.SilkS") (width 0.12) (tstamp 25af3b10-7eff-41c0-ad86-bcde2810ac27))
(fp_line (start -3.582929 10.54) (end -3.98 10.54) (layer "F.SilkS") (width 0.12) (tstamp 2eb6d724-f2b1-4c18-99d0-1a3188e41592))
(fp_line (start -3.98 1.27) (end -6.64 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2fa114fa-1928-4f55-a232-374bb414d084))
(fp_line (start -6.64 0.04) (end -12.64 0.04) (layer "F.SilkS") (width 0.12) (tstamp 3802c5ae-6749-45b9-9909-98712664d39f))
(fp_line (start -1.042929 2.16) (end -1.497071 2.16) (layer "F.SilkS") (width 0.12) (tstamp 39586bd4-8411-44aa-9716-79af1fbe89ae))
(fp_line (start -3.582929 7.24) (end -3.98 7.24) (layer "F.SilkS") (width 0.12) (tstamp 41f98611-38f4-443b-93c8-269a77fadbd1))
(fp_line (start -12.64 7.24) (end -12.64 8) (layer "F.SilkS") (width 0.12) (tstamp 46e69e2f-935b-4cf8-b376-c1bd19439e01))
(fp_line (start -1.042929 7.24) (end -1.497071 7.24) (layer "F.SilkS") (width 0.12) (tstamp 4a1aaabc-9e51-4e51-9e80-d41d65599440))
(fp_line (start -3.98 14.03) (end -6.64 14.03) (layer "F.SilkS") (width 0.12) (tstamp 4a8745df-2db3-45f3-8704-f352d04800f6))
(fp_line (start -3.582929 8) (end -3.98 8) (layer "F.SilkS") (width 0.12) (tstamp 533424f1-32fa-4f45-99b9-8fdae60c0a16))
(fp_line (start -3.98 11.43) (end -6.64 11.43) (layer "F.SilkS") (width 0.12) (tstamp 5382b8d5-bc22-4e49-8ae3-9f0786588dff))
(fp_line (start -12.64 5.46) (end -6.64 5.46) (layer "F.SilkS") (width 0.12) (tstamp 5587b9f4-d70b-40a2-9dcb-5804510ad8d5))
(fp_line (start -12.64 4.7) (end -12.64 5.46) (layer "F.SilkS") (width 0.12) (tstamp 59be0872-36a6-4bca-89d7-8a77f13e5efd))
(fp_line (start -12.64 0.38) (end -6.64 0.38) (layer "F.SilkS") (width 0.12) (tstamp 5a06d624-5dba-4224-9a1f-43c0a0fc144b))
(fp_line (start -3.582929 12.32) (end -3.98 12.32) (layer "F.SilkS") (width 0.12) (tstamp 5b30f8b6-7aaa-4dbe-9473-94d22a0c3ce1))
(fp_line (start -3.98 8.89) (end -6.64 8.89) (layer "F.SilkS") (width 0.12) (tstamp 6d2225a3-fb32-4520-adad-334565cc0368))
(fp_line (start -12.64 12.32) (end -12.64 13.08) (layer "F.SilkS") (width 0.12) (tstamp 6fb1055f-2dbe-401f-a761-f8cb8246128d))
(fp_line (start -6.64 0.16) (end -12.64 0.16) (layer "F.SilkS") (width 0.12) (tstamp 708de6b5-5c51-4114-b2f6-e6507b543f48))
(fp_line (start 1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 7bad590c-fcf7-4590-8c9d-7ce560121633))
(fp_line (start -12.64 10.54) (end -6.64 10.54) (layer "F.SilkS") (width 0.12) (tstamp 7bcd5c7e-9253-4b44-a91b-f8c9f7fd01d3))
(fp_line (start -6.64 2.16) (end -12.64 2.16) (layer "F.SilkS") (width 0.12) (tstamp 84dc018e-aecc-4f5c-bcdc-c5f9aeca5aa9))
(fp_line (start -3.582929 0.38) (end -3.98 0.38) (layer "F.SilkS") (width 0.12) (tstamp 86185bc8-4991-4397-a9a5-18c753465653))
(fp_line (start -12.64 13.08) (end -6.64 13.08) (layer "F.SilkS") (width 0.12) (tstamp 8e43de47-04a2-4e94-8170-7e0d2dd97e7a))
(fp_line (start -6.64 9.78) (end -12.64 9.78) (layer "F.SilkS") (width 0.12) (tstamp 8ee66031-8500-410d-816c-8261cdcfdd3a))
(fp_line (start -6.64 -0.38) (end -12.64 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 9412cd64-ca11-441f-b7d1-dbfbfb19dc33))
(fp_line (start -1.11 -0.38) (end -1.497071 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 987c852a-8b28-484a-9330-cd5b7ec8e0ff))
(fp_line (start -6.64 0.28) (end -12.64 0.28) (layer "F.SilkS") (width 0.12) (tstamp a2c668a9-2ec6-4d75-94f2-fa33c69d5017))
(fp_line (start -1.042929 2.92) (end -1.497071 2.92) (layer "F.SilkS") (width 0.12) (tstamp aa33469c-c2fc-45ca-9a1b-3d78c61741ef))
(fp_line (start -6.64 14.03) (end -6.64 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b11ef367-88ae-41a1-9ee4-01885538b94c))
(fp_line (start -3.582929 13.08) (end -3.98 13.08) (layer "F.SilkS") (width 0.12) (tstamp c22c605f-5994-4ea8-b337-4de462ac72f7))
(fp_line (start -1.042929 10.54) (end -1.497071 10.54) (layer "F.SilkS") (width 0.12) (tstamp c355b370-53e6-4712-b55a-19d2056ea7da))
(fp_line (start -12.64 2.92) (end -6.64 2.92) (layer "F.SilkS") (width 0.12) (tstamp c57ac537-1e31-485e-8d0c-e88ac95f0d27))
(fp_line (start -1.11 0.38) (end -1.497071 0.38) (layer "F.SilkS") (width 0.12) (tstamp c85dafc1-ecb0-4c75-b374-ff2c34dab22f))
(fp_line (start 1.27 0) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp c8e7906c-35ce-4436-8634-35b1ec2e2399))
(fp_line (start -3.582929 4.7) (end -3.98 4.7) (layer "F.SilkS") (width 0.12) (tstamp c91ede71-166e-4cb3-820b-9f8588f172e7))
(fp_line (start -1.042929 12.32) (end -1.497071 12.32) (layer "F.SilkS") (width 0.12) (tstamp d319dd91-9cc2-46c6-aee6-4220bb9db732))
(fp_line (start -3.582929 -0.38) (end -3.98 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d3e1eb85-1a96-4712-8b4d-816197e5a8a8))
(fp_line (start -6.64 -0.32) (end -12.64 -0.32) (layer "F.SilkS") (width 0.12) (tstamp d5153286-4148-4eed-ac9c-c30f0d37578c))
(fp_line (start -6.64 4.7) (end -12.64 4.7) (layer "F.SilkS") (width 0.12) (tstamp d7da137a-7ae2-4f39-8748-fd78be877af4))
(fp_line (start -6.64 7.24) (end -12.64 7.24) (layer "F.SilkS") (width 0.12) (tstamp d96ef103-a024-4b66-862d-fc0287f7175c))
(fp_line (start -3.582929 2.92) (end -3.98 2.92) (layer "F.SilkS") (width 0.12) (tstamp e70cd141-1336-4c81-abf2-2de7751d4274))
(fp_line (start -3.582929 2.16) (end -3.98 2.16) (layer "F.SilkS") (width 0.12) (tstamp eb3c3064-b797-4c31-8a10-7e685e50e968))
(fp_line (start -6.64 -0.08) (end -12.64 -0.08) (layer "F.SilkS") (width 0.12) (tstamp ec28920f-a5c5-49d2-8170-2809cfc01fb0))
(fp_line (start -12.64 -0.38) (end -12.64 0.38) (layer "F.SilkS") (width 0.12) (tstamp ec5ec2e3-9844-4e38-81a9-71815c0fca16))
(fp_line (start -1.042929 13.08) (end -1.497071 13.08) (layer "F.SilkS") (width 0.12) (tstamp edf4f4c7-7f51-48e6-93d5-3fed02bb596b))
(fp_line (start -1.042929 5.46) (end -1.497071 5.46) (layer "F.SilkS") (width 0.12) (tstamp f0d551f1-e6a1-4b2d-88a6-dc3bc93c9d76))
(fp_line (start -12.64 9.78) (end -12.64 10.54) (layer "F.SilkS") (width 0.12) (tstamp f45b9ba7-4ec1-4d3d-b749-21ab737e4a33))
(fp_line (start -3.582929 9.78) (end -3.98 9.78) (layer "F.SilkS") (width 0.12) (tstamp f78ce682-f940-43a7-a295-728ba3a000bb))
(fp_line (start -12.64 8) (end -6.64 8) (layer "F.SilkS") (width 0.12) (tstamp f8886324-1ffd-4af4-9303-cb0e0afb1159))
(fp_line (start -3.98 6.35) (end -6.64 6.35) (layer "F.SilkS") (width 0.12) (tstamp fcb28508-537a-4ed9-baca-97b0567a9ada))
(fp_line (start -1.042929 4.7) (end -1.497071 4.7) (layer "F.SilkS") (width 0.12) (tstamp fd62d803-3247-4d07-b86b-6ee2bd01cfaa))
(fp_line (start -13.1 14.5) (end -13.1 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 018cd398-d151-4ea1-b7fc-e3b302ae4d65))
(fp_line (start -13.1 -1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7ea37e2f-84eb-4d50-9d9d-56e0868523b0))
(fp_line (start 1.8 -1.8) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 9f070bab-e41b-44ea-b52d-11aa864889a7))
(fp_line (start 1.8 14.5) (end -13.1 14.5) (layer "F.CrtYd") (width 0.05) (tstamp b24fce00-f146-48ae-8ee6-1d6596724f32))
(fp_line (start 0.32 9.84) (end 0.32 10.48) (layer "F.Fab") (width 0.1) (tstamp 0393f753-56b0-4abc-8121-88d4b32a1c02))
(fp_line (start -4.04 13.97) (end -4.04 -0.635) (layer "F.Fab") (width 0.1) (tstamp 09135b8c-99bd-4689-8a9d-f9e0e78e0cb9))
(fp_line (start -6.58 7.3) (end -12.58 7.3) (layer "F.Fab") (width 0.1) (tstamp 09c6471a-3c9e-418d-b9fc-eeece6cdce26))
(fp_line (start 0.32 5.4) (end -4.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 0aa1d782-3ee7-4bbd-bca2-0475655c0d89))
(fp_line (start -12.58 7.3) (end -12.58 7.94) (layer "F.Fab") (width 0.1) (tstamp 0c88b2b6-91aa-4c50-9283-e6c4784110f7))
(fp_line (start -6.58 9.84) (end -12.58 9.84) (layer "F.Fab") (width 0.1) (tstamp 0ce8963b-8835-46a5-ad6a-1fb8632c8166))
(fp_line (start 0.32 4.76) (end 0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp 0fe9eef3-2dda-449c-903e-aaaf45dc7437))
(fp_line (start -6.58 0.32) (end -12.58 0.32) (layer "F.Fab") (width 0.1) (tstamp 1409ce97-dbf9-474a-99c2-8fd686d6f8bd))
(fp_line (start 0.32 7.3) (end -4.04 7.3) (layer "F.Fab") (width 0.1) (tstamp 23b29ad1-01d9-49a5-8750-710c8784a448))
(fp_line (start -6.58 13.97) (end -4.04 13.97) (layer "F.Fab") (width 0.1) (tstamp 288b98da-7d78-4756-80af-9838b0a5f5d1))
(fp_line (start 0.32 7.3) (end 0.32 7.94) (layer "F.Fab") (width 0.1) (tstamp 29b31287-e74e-4029-bba6-22e3b2cedd59))
(fp_line (start 0.32 9.84) (end -4.04 9.84) (layer "F.Fab") (width 0.1) (tstamp 3bdd3052-919c-4289-abda-c7c68b06a88a))
(fp_line (start 0.32 13.02) (end -4.04 13.02) (layer "F.Fab") (width 0.1) (tstamp 47ad4852-b8f5-4582-a69f-2ebfa298ced8))
(fp_line (start -12.58 -0.32) (end -12.58 0.32) (layer "F.Fab") (width 0.1) (tstamp 6a00eecc-1188-44da-8f93-f7abc0ed91c4))
(fp_line (start 0.32 -0.32) (end -4.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 6b258c87-4626-4178-8ac5-e24a912d694a))
(fp_line (start 0.32 -0.32) (end 0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 6b3fdad8-c4d3-459e-864c-11c20e3e54d5))
(fp_line (start -12.58 9.84) (end -12.58 10.48) (layer "F.Fab") (width 0.1) (tstamp 6c2b4daf-6b1a-4579-8209-4e2cf93a411c))
(fp_line (start -6.58 10.48) (end -12.58 10.48) (layer "F.Fab") (width 0.1) (tstamp 7118af42-776f-4cab-aef3-3c83c57af644))
(fp_line (start -6.58 -0.32) (end -12.58 -0.32) (layer "F.Fab") (width 0.1) (tstamp 72cd5e59-50b8-4342-b049-13e6926dd30a))
(fp_line (start 0.32 10.48) (end -4.04 10.48) (layer "F.Fab") (width 0.1) (tstamp 7336aa07-7bb5-413e-83c3-30b3ed31d4e2))
(fp_line (start -12.58 4.76) (end -12.58 5.4) (layer "F.Fab") (width 0.1) (tstamp 76a7b2bf-a7ec-4885-a77f-753486499b7f))
(fp_line (start -6.58 13.02) (end -12.58 13.02) (layer "F.Fab") (width 0.1) (tstamp 7bacaa27-0f64-494c-a57b-10617ec9f89e))
(fp_line (start 0.32 2.22) (end 0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 82a78782-4c0d-4bde-badf-d80b8a047e5c))
(fp_line (start -6.58 2.86) (end -12.58 2.86) (layer "F.Fab") (width 0.1) (tstamp 8447b362-b3db-4a05-bb74-97435567ed03))
(fp_line (start 0.32 12.38) (end -4.04 12.38) (layer "F.Fab") (width 0.1) (tstamp 889377e4-248c-42e4-897d-18b75874ca17))
(fp_line (start 0.32 0.32) (end -4.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 897ea0fb-a2a4-4a13-94e4-33b9f6ab2267))
(fp_line (start 0.32 2.86) (end -4.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 9241cf85-2cc5-43fa-9b23-f9bf3618aa92))
(fp_line (start -6.58 12.38) (end -12.58 12.38) (layer "F.Fab") (width 0.1) (tstamp 95fc8d5d-369a-4387-b5a6-2c57ab2a2803))
(fp_line (start 0.32 7.94) (end -4.04 7.94) (layer "F.Fab") (width 0.1) (tstamp 99800d9b-1419-466e-b5ca-cdbe805bb234))
(fp_line (start -12.58 12.38) (end -12.58 13.02) (layer "F.Fab") (width 0.1) (tstamp a31b2b91-7ef4-4d5c-88e6-12f8962d397b))
(fp_line (start -6.58 5.4) (end -12.58 5.4) (layer "F.Fab") (width 0.1) (tstamp a5a10380-379d-4fe1-8eb4-02cf6b28b1ea))
(fp_line (start -6.58 4.76) (end -12.58 4.76) (layer "F.Fab") (width 0.1) (tstamp a637b9af-89ee-4107-a8a8-dfe8650d15c6))
(fp_line (start -4.04 -0.635) (end -4.675 -1.27) (layer "F.Fab") (width 0.1) (tstamp b0f648b8-35fa-4b08-9157-c44c6b7b9b61))
(fp_line (start -4.675 -1.27) (end -6.58 -1.27) (layer "F.Fab") (width 0.1) (tstamp b302ceb6-7aaa-422b-94ba-7d669cf9be6c))
(fp_line (start 0.32 2.22) (end -4.04 2.22) (layer "F.Fab") (width 0.1) (tstamp be1bb5f1-cdff-4f12-bf92-82fd7daf9872))
(fp_line (start -6.58 2.22) (end -12.58 2.22) (layer "F.Fab") (width 0.1) (tstamp c024ac6c-861c-4be6-ba67-56c8061666a5))
(fp_line (start -12.58 2.22) (end -12.58 2.86) (layer "F.Fab") (width 0.1) (tstamp c47a6112-de2b-4cb5-aeb0-aa08ebba4226))
(fp_line (start -6.58 -1.27) (end -6.58 13.97) (layer "F.Fab") (width 0.1) (tstamp ccaf1aa7-2347-4934-b199-56054b0e3127))
(fp_line (start -6.58 7.94) (end -12.58 7.94) (layer "F.Fab") (width 0.1) (tstamp f2df3248-7c4b-4072-a56e-bb5caacd5043))
(fp_line (start 0.32 12.38) (end 0.32 13.02) (layer "F.Fab") (width 0.1) (tstamp f7ee47d2-54f0-4110-a472-b6a195d12d95))
(fp_line (start 0.32 4.76) (end -4.04 4.76) (layer "F.Fab") (width 0.1) (tstamp f830ffb5-bd6c-4240-a754-edd4a2a17c1f))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "LV0") (pinfunction "Pin_1") (pintype "passive") (tstamp 665d49f8-730c-49e1-aaa3-f293fbbc4648))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "LV1") (pinfunction "Pin_2") (pintype "passive") (tstamp 965d29c9-a303-412f-b366-dfdd65cdf818))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "LV2") (pinfunction "Pin_3") (pintype "passive") (tstamp 0fe712c9-d6e9-4bea-a63b-9a74ec512d57))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "LV3") (pinfunction "Pin_4") (pintype "passive") (tstamp 697aed11-d5f5-463b-afcb-74f244925e7a))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp f1d9fc19-5d75-4282-8834-c5248e6380c7))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_6") (pintype "passive") (tstamp 35a6be62-e534-4dc4-b2ea-fdc04734f633))
(pad "7" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "LV4") (pinfunction "Pin_7") (pintype "passive") (tstamp 7e5789c8-3ac7-418b-90ce-6fa7b264baed))
(pad "8" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "LV5") (pinfunction "Pin_8") (pintype "passive") (tstamp 4122add4-4b71-4d0f-b293-2efe8b7e7899))
(pad "9" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "LV6") (pinfunction "Pin_9") (pintype "passive") (tstamp 6aec1e72-147c-42ed-be82-51a3af523256))
(pad "10" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "LV7") (pinfunction "Pin_10") (pintype "passive") (tstamp 62b13533-7e12-42e2-adac-45d2411da086))
(pad "11" thru_hole oval (at -2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 51576cf8-1a25-4f84-ac4b-665228ce03ae))
(pad "12" thru_hole oval (at -2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp cb3a8df6-e5f3-4026-b071-0e57bdcb1c8e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-0000617840e8)
(at 151.892 100.838)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "pmod_lvs.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000617d25c0")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9868f8df-84de-4198-bc5a-e4cb5914a55e)
)
(fp_text value "HV_connector" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d56bf05-59fb-46c5-88c3-b08968b32f6a)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a1ebe72-12d2-4de6-be2d-7b2e3b8d1299)
)
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 25327a1b-47c7-4761-a1a5-c3ac76e3ae10))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2ab2c366-4950-44fe-9409-dbacbeefc3b6))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 2fe509d8-79ff-4a94-95fb-f8729e63ef62))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 46365a20-9922-4e2b-aba6-c030de897dbe))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 7b945a2a-77e0-4fb7-8bbc-c87bcae38960))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 976f0644-d6c4-4a36-acd0-27679fb995bf))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 16ca76ba-7778-4a26-8827-e98019d1ef95))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 54f758d9-cb8b-42cc-984d-6d007f40a9af))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f0b37359-bfba-46e0-b22f-722a0aa8ec2c))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp f688d7af-f7a1-4ca0-a034-aadaf7675ead))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 261a3c4e-fd39-479b-806d-96963045780b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 999dd7c7-7821-4a81-bc74-506c985e27ca))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 9e4c3391-98da-4303-b551-b5fcb82a7073))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c28c6d16-4199-4cc5-a145-81d962acd236))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp c73897bf-af30-4d29-88dd-f248bdeed3d8))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 8b5679f3-7511-4226-8ff5-e6d2465fa960))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp bae16587-3193-4196-b5a9-2310c6c9cb8d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000617a618e)
(at 144.5768 96.1136)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter0")
(property "Spice_Lib_File" "spice/BSS138.spice")
(property "Spice_Model" "BSS138/ZTX")
(property "Spice_Netlist_Enabled" "Y")
(property "Spice_Primitive" "X")
(path "/00000000-0000-0000-0000-0000617b7a5e/00000000-0000-0000-0000-0000617bf599")
(attr smd)
(fp_text reference "Q1" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb5018d3-d085-40e5-ad7f-9608786a2ddb)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e96938d6-e017-4cc7-87d9-701ff78bfc72)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 7feb664b-55be-48d4-8d08-d51045a4a06f)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 1115b88b-a427-4357-a4b8-cbadbd3cfb4f))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 4b8fbe85-76b0-4124-a5a3-59a8051e7609))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 83697f64-af7b-4118-9dad-0736136b22e7))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 933b1f03-1a5e-42c7-9f10-10e175a2e3ff))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 46ffe9f3-f889-41ff-9f44-2e4672521f38))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 715daa15-f810-4ed0-a3e4-be0fec0da91d))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7f969e11-6e20-40bb-9635-30b115fefe76))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp b732ec15-dbfa-4367-93b5-235bd11e8123))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 4e69643d-fd45-49a9-8f93-93a716f8ced0))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 74d234f4-e148-4adc-8c5c-ff2132e673d4))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp a64cb325-0748-467a-8bf1-6e9f00a3c23c))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp c79f4540-ad9a-41c4-9266-0beaf2e2011d))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp dd5e8d11-6d7b-4439-a18d-4daa06144fab))
(pad "1" smd roundrect locked (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "G") (pintype "input") (tstamp ad4498ed-ba95-47cc-8b4b-0235dbdd93fd))
(pad "2" smd roundrect locked (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "LV0") (pinfunction "S") (pintype "passive") (tstamp e63f8af8-5515-4e21-9d6e-839ea9007f15))
(pad "3" smd roundrect locked (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "HV0") (pinfunction "D") (pintype "passive") (tstamp a005e582-9c49-49e4-a75d-d913c84e54db))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617a6358)
(at 147.6756 96.1136 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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter0")
(path "/00000000-0000-0000-0000-0000617b7a5e/00000000-0000-0000-0000-0000617bf589")
(attr smd)
(fp_text reference "R2" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60207614-da4a-4d10-831b-dc0de05ea6bb)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abcc0548-510f-457c-be87-6057538a1cad)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f63e14d6-867c-496f-813e-67064dce8f5c)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c72289a3-7be8-4ab1-8b95-157307e19d4e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp cc7f5e66-8836-4f0c-aca2-327545e78c3c))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 24889da0-ad7b-41a5-a07a-19da991177fa))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 25004dbf-8559-4a7f-81f0-2e8c164e45e0))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9535f227-1a2c-43fb-8db7-9ab86771eec9))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bb77e001-57ac-4ded-b72a-827b37df5587))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 36b95ad4-fc45-4513-bb51-ff5868cbd54e))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 516c4b9b-806b-47b9-b765-463e1826fcb0))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 95b18226-db5f-44f4-890b-cc46a224e995))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp d4c6923c-948e-46d2-baab-325b4c02b540))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 4 "+5V") (pintype "passive") (tstamp dae7cb05-0a41-4920-8b91-d3c933d249fe))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 6 "HV0") (pintype "passive") (tstamp 71923108-ae47-4f0d-8f85-d0c61523d4ff))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617a702d)
(at 141.5288 96.1155 -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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter0")
(path "/00000000-0000-0000-0000-0000617b7a5e/00000000-0000-0000-0000-0000617bf58f")
(attr smd)
(fp_text reference "R1" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6581a115-4545-41dd-84f3-044cdc94aed8)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3aa4ae56-bb27-4a94-b8af-9a0512baa87c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp caacde42-c4d5-4728-b0d0-b525528c4d01)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1dc27d07-b818-4dbe-9aba-1f466c7c305a))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 325a7f3a-cfaf-46c9-a406-67d92ea24ad8))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0ecba5b1-f461-4b83-8f09-b6937b2dd570))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3c0a3e81-8ead-474b-a074-96fafe066175))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6c8ad4a5-1491-4abf-a21f-28132e081d04))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 73e20b74-33a7-4097-8667-25bdad2b2d92))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0a63ee85-4dba-4180-8887-bfb6c1e41fc2))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 40cbe425-1827-4958-bf4f-82d968dd238c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4327ad73-ca5e-4a3a-8b6e-2f1797f5fe92))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5be03f18-79e0-4b42-a70b-fc295b5ca1ae))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 2a7929ff-9f40-4bd1-bcfb-e606c3c4db50))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 9 "LV0") (pintype "passive") (tstamp 63fd9309-ba1b-4004-ae88-b98fb16c7f51))
(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 "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000617aba48)
(at 144.5768 100.1136)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter1")
(property "Spice_Lib_File" "spice/BSS138.spice")
(property "Spice_Model" "BSS138/ZTX")
(property "Spice_Netlist_Enabled" "Y")
(property "Spice_Primitive" "X")
(path "/00000000-0000-0000-0000-0000617e26da/00000000-0000-0000-0000-0000617bf599")
(attr smd)
(fp_text reference "Q2" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8930d81a-f162-4ec7-a3af-ec2673ba9184)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ccc87dd-3398-4a4c-92eb-5f8fe7b67598)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp b6e35c61-452b-4c08-bcc8-2aa6eafcbdd0)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 706caee7-fb0b-49e5-8d64-cd19c91975cb))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 72f4857e-84f6-4f22-a0e5-1e657fef51b7))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp b22db80a-6957-4c75-baf1-2ebd303c0e80))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp de3dd82f-8b41-4857-b553-8aac50dea621))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 3c15589c-4b49-4215-91d8-a15a4273e093))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 5e9c6ec2-6190-47c4-867e-ae6a94c71b22))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 6a7dae85-c8d5-4dfa-9a4c-74259cc82445))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9a62783d-f90a-4c2c-a51c-ce581679c648))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 3237e9ae-59e0-4dc1-adef-67e16656cf37))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 4b02d665-b876-4c69-9bda-cbf92ee17fd2))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 640dd4b3-4061-48b8-977d-8df9206e1b29))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 73ee2f4f-0970-499b-bcc9-f62e0dcb140e))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp b7a6d12d-0fe7-4352-9880-877d11209350))
(pad "1" smd roundrect locked (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "G") (pintype "input") (tstamp 98c4fb7f-5389-4f3e-b126-09e04590b3df))
(pad "2" smd roundrect locked (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "LV1") (pinfunction "S") (pintype "passive") (tstamp 4fbe0adc-6daa-4c3f-9127-dd42daba707c))
(pad "3" smd roundrect locked (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "HV1") (pinfunction "D") (pintype "passive") (tstamp 355eb33b-a5b9-4f3d-ac06-a25dd984ce3d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000617aba70)
(at 144.5768 104.1136)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter2")
(property "Spice_Lib_File" "spice/BSS138.spice")
(property "Spice_Model" "BSS138/ZTX")
(property "Spice_Netlist_Enabled" "Y")
(property "Spice_Primitive" "X")
(path "/00000000-0000-0000-0000-0000617e4b86/00000000-0000-0000-0000-0000617bf599")
(attr smd)
(fp_text reference "Q3" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d8a93f8-ccda-4c3d-9d89-f49b88a58ea2)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34aa44f8-5fbc-41fc-8615-d6a4aebb8149)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp f3f6114c-826b-47db-a505-d69cac68c2c3)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 04fb3473-bf75-4cb8-a996-abcae0f23d64))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 8c5ba10a-0576-4fb6-beb4-d7d94c6b603e))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp a5f82e83-b97c-4617-ae5e-bac11035f7f1))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp b5634e8b-b9fc-4cc5-8d55-5c9e08ecf916))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 05b82e14-f048-40d5-a246-54c2603bc8f7))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1761b53b-8a92-409e-a3fa-c91a249b00d3))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1f068f91-9ce6-488a-bc29-c513992d2e5a))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 245eb71a-d9d0-428e-87a0-6d8feb34b9aa))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 0eef6440-58b4-4a42-9024-9b725aed023d))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 1093cf59-b6f9-4725-bdd7-07a14603e89b))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 4caf56ce-17cc-45b8-bb82-bdbb1d48e693))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 8a3b2fa8-8f3f-469c-9f3e-15338ee4fdc3))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 94bee912-a5d1-4c15-8575-debc0aef9528))
(pad "1" smd roundrect locked (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "G") (pintype "input") (tstamp a61ca904-e72f-4219-a8e8-b8d24b598b0d))
(pad "2" smd roundrect locked (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "LV2") (pinfunction "S") (pintype "passive") (tstamp 1fce0474-45e0-43ec-8f5c-cc7d70d45450))
(pad "3" smd roundrect locked (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "HV2") (pinfunction "D") (pintype "passive") (tstamp 60d7f525-659e-49a4-9018-04ea4c4e6782))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000617aba98)
(at 144.5768 108.1136)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter3")
(property "Spice_Lib_File" "spice/BSS138.spice")
(property "Spice_Model" "BSS138/ZTX")
(property "Spice_Netlist_Enabled" "Y")
(property "Spice_Primitive" "X")
(path "/00000000-0000-0000-0000-0000617e4ca6/00000000-0000-0000-0000-0000617bf599")
(attr smd)
(fp_text reference "Q4" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 740e710a-0870-43d3-9d35-cab555004341)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e3eaa2b-e0d4-49aa-9e53-e650a5b511b3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp f43c53d7-758f-4105-bb88-0d040d06eac8)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 11829e50-f2a2-42c2-851d-5811ea155178))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 307128b1-8144-4994-b25f-ae6ac70461b3))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 4239aef6-92e8-4e8c-91a2-1d1284ddcadb))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 8b341e9a-a6f0-4e0f-a066-7e551c76790a))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 0a6f0a6e-fef6-4c62-a4c3-3dcea739d1a8))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 19c85d4e-b603-4af9-b40f-ea448e4586ac))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8121565e-1776-4a11-a9a8-efe5c20daf76))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ca69bdbb-0c4b-42dd-97a4-a131efe0dfa5))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 0cb44826-abbf-43ee-b1b6-28ab87ab79b8))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 60c95a69-985e-49c0-9d5d-037b3f67b016))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 634911ca-9c28-48d7-9e1e-eaad4dda478a))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp ec9f8d30-8619-4c24-9ebf-5ec542febd81))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp fdd32df6-552a-4e85-8d67-104747e19d0d))
(pad "1" smd roundrect locked (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "G") (pintype "input") (tstamp 574923d5-2982-4639-bb3a-aef38b01f552))
(pad "2" smd roundrect locked (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "LV3") (pinfunction "S") (pintype "passive") (tstamp 73b594fb-dc36-4bf7-a251-b61481009c33))
(pad "3" smd roundrect locked (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "HV3") (pinfunction "D") (pintype "passive") (tstamp 91052514-cef3-4b9e-ad05-7e9a624b396e))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abad0)
(at 147.6756 100.1136 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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter1")
(path "/00000000-0000-0000-0000-0000617e26da/00000000-0000-0000-0000-0000617bf589")
(attr smd)
(fp_text reference "R4" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9fa1d62-6ef1-4bf8-a8c4-7f49a6cb32b4)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40574799-f690-4474-94e6-69e1136257ac)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3657f227-70de-4662-b3ba-fd3e18611cf4)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9186d059-4710-4fee-afca-c95a497cf90e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp d9237fba-952f-40c6-9f2e-a328505de124))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 20072d68-d457-405b-9d9a-255c45074f84))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 21360ed2-05d7-4d5e-9a1d-8b83d63c45ee))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 93882c4d-fd49-4765-acc1-2890a56de60b))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ca85bde2-1872-4229-b6ec-60de14bddb77))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 82595d55-8158-4b59-b3de-4c7c6a0ec7e9))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9bd1c6d0-534b-4367-8564-c22ce8f2a3a0))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp d3076846-aab0-4d5f-880b-e827ec19e611))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp dc8ec80b-950e-4381-903f-466e7ca37b32))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 4 "+5V") (pintype "passive") (tstamp f20fd26d-4f22-4914-8478-542a5ecfd94e))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 5 "HV1") (pintype "passive") (tstamp c5d99d5b-a92d-4f3a-ae1b-0256250e57db))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abaf0)
(at 147.6756 104.1136 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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter2")
(path "/00000000-0000-0000-0000-0000617e4b86/00000000-0000-0000-0000-0000617bf589")
(attr smd)
(fp_text reference "R6" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0cba9e5-ac9b-4f6c-8748-01b175b309f3)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa75e992-7924-4857-b379-f5334f02c965)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp bc5e8fac-9571-4753-9573-e4db02fb7bc3)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 675fd285-203a-4fe3-9a4a-afbda9910ce1))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 8d5236e4-b976-4775-a2cf-837499618364))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3c75d3cc-2a1e-4113-98e7-6b24f35edd4c))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7a81ba7a-8768-4d0b-903c-f4fb572da7c8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bc19e63b-14d6-4343-8d08-65f315588d2e))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fe3163da-275e-437d-8da6-bc54bcf17f0a))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c7d517d8-8f7c-4d9b-89fd-821233b6d961))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d651d92c-3b54-461f-bf05-ac51a4503b9f))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e64277a1-78de-4005-bc6a-1ce4b42345e8))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp eb694221-7ef7-4ee9-b43d-b87573d19413))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 4 "+5V") (pintype "passive") (tstamp b71935fb-bd43-420d-ad92-7211f98786ea))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 7 "HV2") (pintype "passive") (tstamp 888d6bc9-2933-4c35-921e-79a6447a1a06))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abb10)
(at 147.6756 108.1136 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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter3")
(path "/00000000-0000-0000-0000-0000617e4ca6/00000000-0000-0000-0000-0000617bf589")
(attr smd)
(fp_text reference "R8" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89507691-30fb-4f98-9ec1-1b903564bb9a)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc2c8292-4927-47c0-b726-06b485456a4a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp df4162ce-8340-41d7-93f2-1cf419cb95c8)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0041033f-e7de-413c-9f78-59c554b8a0fb))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 4ddcee61-2c9a-44bd-9638-4018f25d7d97))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 211a0da5-c851-4434-9120-ed05d002205a))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7fdef218-6a64-4038-bcae-aa9de136d43c))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8e5fa50c-262e-47cd-a190-1c245b19ff93))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp b7c25b7b-132f-489e-aa1f-c0bc41d89f04))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 39425908-3e8d-42bb-b3bd-abdbfc81f66e))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3d6f7bf9-29fc-42c6-a297-71edf9f62e6e))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ddca35af-d996-4e90-a757-26af86e20d99))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f5005b6a-17b6-4c24-9f1a-e958307c661f))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 4 "+5V") (pintype "passive") (tstamp 48f118d6-f904-40a0-9e7f-4a1f6afdf1bd))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 8 "HV3") (pintype "passive") (tstamp fe338fa2-25da-4a8c-90b8-353f1a478c5c))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abb40)
(at 141.5288 100.1155 -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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter1")
(path "/00000000-0000-0000-0000-0000617e26da/00000000-0000-0000-0000-0000617bf58f")
(attr smd)
(fp_text reference "R3" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bda2056-fd24-4859-ba37-f29727fe908d)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1ed50ad-4742-48a5-bc72-8efe700932e3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 385530ef-1953-4c82-9430-c923dcace3fe)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 4c6fb14a-f0c3-41d1-98d4-976439a1a844))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 71a53963-69e2-43f8-b14e-02854758d8f9))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 288d7b37-8a6c-43cf-b4e1-32fa853b7317))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7c776a17-a2ba-4811-befd-0267d346a257))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 919e5dd6-41c9-4041-9198-5c393d733dd4))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d8af19d8-6c46-4487-8b13-e535781bb4e7))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1b715c4f-9664-45c5-a3f0-e94d3e408e41))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 720f660c-bcc7-4f22-8440-9946d77b046c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 8414148e-1bbd-4e04-a998-83324a63c720))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp daa888ed-f856-4900-a834-bf78b7d08738))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 74957951-f69a-4325-91f6-8d6f635dda91))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 1 "LV1") (pintype "passive") (tstamp 834ff83d-3db9-47b9-ae27-5cb38c94b6ba))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abb60)
(at 141.5288 104.1155 -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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter2")
(path "/00000000-0000-0000-0000-0000617e4b86/00000000-0000-0000-0000-0000617bf58f")
(attr smd)
(fp_text reference "R5" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f9d0ed5-f10a-48f7-9890-d8f7780962b1)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e2ba670-b9c9-4639-8a23-ae133fcaf242)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ce2df517-8a04-40a3-a73d-c698f44965f2)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp fbb96e0c-3794-476a-ba8a-ab1c93b831fc))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp fd605fc9-cca3-4538-82d6-6c23d210ade0))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 47620704-c0f4-4907-bc4e-2e9a773d507f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 56f8ba36-9fed-4915-8ee9-655accb0650e))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8df73a0a-2cbe-4324-87a7-7f49f904ac7d))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 981752d9-9b05-459b-ae6c-ec700bccbed8))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1bc60681-0b0e-4c89-a308-b07913afb1f1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3514f0a2-fd23-4d8f-98a2-ff626c870a84))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp a9396233-2988-4fcc-ae65-3290d37dd63c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp fabde2f2-3d99-46b0-91fb-37ecae3153ff))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp dff088de-cf97-4638-9eae-f90726d5374e))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 10 "LV2") (pintype "passive") (tstamp 2ce921f7-33fa-4c58-b221-39e9830077d6))
(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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000617abb80)
(at 141.5288 108.1155 -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 "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "lvlshifter3")
(path "/00000000-0000-0000-0000-0000617e4ca6/00000000-0000-0000-0000-0000617bf58f")
(attr smd)
(fp_text reference "R7" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1a39e33-f7b5-4065-a15f-069381ceeda4)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae94c20e-d140-4150-80f4-2d9a519eb855)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c2d78d5e-ac30-4395-8235-c290d6afc603)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 21f317ad-8248-4207-94ce-4a38bb423328))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 96934109-1c7d-4964-898f-7aa79cdfd7b5))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 272f5b19-45dc-4465-a52d-f9028817fb98))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a21dbdab-500c-4b77-a276-9b382810c707))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e0147a5b-5e71-43b9-b463-f4c75d9e2e80))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f704908d-a04b-42c7-b0a7-5eb571115972))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1eb61aa9-6da1-4798-a086-4a74d7eea0c1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 2d7c2d56-5c02-4083-8a35-fa25ec580c5a))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp efe16c5c-6ee0-40e0-9b70-e41a1d65b739))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f9e918ad-4659-4e97-9346-322df030c79a))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp a56f1b88-ff04-48a8-ab98-baa129b0d6aa))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 11 "LV3") (pintype "passive") (tstamp 3f4eda51-5eb8-415a-becd-d0d8b66c357c))
(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 "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000617ae1fe)
(at 160.0708 96.1136)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "lvlshifter.kicad_sch")
(property "Sheetname" "sheet617B763E")
(property "Spice_Lib_File" "spice/BSS138.spice")
(property "Spice_Model" "BSS138/ZTX")
(property "Spice_Netlist_Enabled" "Y")
(property "Spice_Primitive" "X")
(path "/00000000-0000-0000-0000-0000617b763e/00000000-0000-0000-0000-0000617bf599")
(attr smd)