-
Notifications
You must be signed in to change notification settings - Fork 0
/
pmi-hw-alice.kicad_pcb
13060 lines (13015 loc) · 543 KB
/
pmi-hw-alice.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 "PMI-ALICE")
(date "2023-02-09")
(rev "V 1.3")
(company "Paderborn University - Measurement Engineering Group")
)
(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
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(grid_origin 60.198001 58.42)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/SCL")
(net 2 "/SDA")
(net 3 "GND")
(net 4 "+3V3")
(net 5 "Net-(D1-Pad2)")
(net 6 "Net-(D2-Pad2)")
(net 7 "Net-(D3-Pad2)")
(net 8 "Net-(D4-Pad2)")
(net 9 "Net-(D5-Pad2)")
(net 10 "Net-(D6-Pad2)")
(net 11 "Net-(D7-Pad2)")
(net 12 "Net-(D8-Pad2)")
(net 13 "Net-(D9-Pad2)")
(net 14 "Net-(D10-Pad2)")
(net 15 "/D_MP_G")
(net 16 "/D_MP_R")
(net 17 "/D_MS_G")
(net 18 "/D_MS_Y")
(net 19 "/D_MS_R")
(net 20 "/D_SP_G")
(net 21 "/D_SP_R")
(net 22 "/D_SS_G")
(net 23 "/D_SS_Y")
(net 24 "/D_SS_R")
(net 25 "/A0")
(net 26 "/A1")
(net 27 "/A2")
(net 28 "Net-(J5-Pad2)")
(net 29 "unconnected-(J1-Pad1)")
(net 30 "unconnected-(J1-Pad2)")
(net 31 "unconnected-(J2-Pad1)")
(net 32 "unconnected-(J2-Pad2)")
(net 33 "unconnected-(J3-Pad1)")
(net 34 "unconnected-(J3-Pad2)")
(net 35 "unconnected-(J4-Pad1)")
(net 36 "unconnected-(J4-Pad2)")
(net 37 "unconnected-(U1-Pad6)")
(net 38 "unconnected-(U1-Pad7)")
(net 39 "unconnected-(U1-Pad8)")
(net 40 "unconnected-(U1-Pad11)")
(net 41 "unconnected-(U1-Pad14)")
(net 42 "unconnected-(U1-Pad19)")
(net 43 "unconnected-(U1-Pad20)")
(net 44 "unconnected-(U1-Pad26)")
(net 45 "unconnected-(U1-Pad27)")
(net 46 "unconnected-(U1-Pad28)")
(footprint "Pmod_Interface-emt:Pmod_Interface_Male6" (layer "F.Cu")
(tedit 6075A57B) (tstamp 00000000-0000-0000-0000-0000607fe901)
(at 60.198001 58.42)
(descr "Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607fe329")
(attr through_hole)
(fp_text reference "J1" (at 0.4445 -2.2225) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f6e7652-3b30-45eb-8b17-e2ec1c8edf58)
)
(fp_text value "Pmod-Interface-I2C6-In" (at -0.92 17.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d6f4f05-ddaf-4429-9375-76e2ade165a3)
)
(fp_text user "${REFERENCE}" (at -2.77 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf88a130-93be-4c8b-888e-67a58bc6a682)
)
(fp_line (start -4.1 0.16) (end -10.1 0.16) (layer "F.SilkS") (width 0.12) (tstamp 00a74adc-c153-4148-bff7-f77c2c7686be))
(fp_line (start -4.1 -0.2) (end -10.1 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 046163d2-6a0c-4e21-a328-1f0a4d830695))
(fp_line (start -1.44 -1.33) (end -1.44 14.03) (layer "F.SilkS") (width 0.12) (tstamp 224b1450-92f4-435e-be50-802c5d9ba8b6))
(fp_line (start -1.44 14.03) (end -4.1 14.03) (layer "F.SilkS") (width 0.12) (tstamp 22a254e9-7a56-418f-9773-312f896ba8c8))
(fp_line (start -10.1 13.08) (end -4.1 13.08) (layer "F.SilkS") (width 0.12) (tstamp 24e1cfcf-c60e-4eb5-b891-2db5d3841359))
(fp_line (start -4.1 9.78) (end -10.1 9.78) (layer "F.SilkS") (width 0.12) (tstamp 261b8607-85a1-46b0-b88b-5936e9f9baaa))
(fp_line (start 1.27 0) (end 1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 2808ac64-d76b-4ec8-912b-49343feabdf9))
(fp_line (start -1.042929 5.46) (end -1.44 5.46) (layer "F.SilkS") (width 0.12) (tstamp 281d7b42-6ee0-498b-8776-950280812a6b))
(fp_line (start -1.44 6.35) (end -4.1 6.35) (layer "F.SilkS") (width 0.12) (tstamp 29047978-ba62-49a8-821f-5b823eb1a05f))
(fp_line (start -4.1 7.24) (end -10.1 7.24) (layer "F.SilkS") (width 0.12) (tstamp 2e3719e7-1d6e-43a2-9924-01f0b502153a))
(fp_line (start -10.1 4.7) (end -10.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 2e4c0a3c-734d-4d37-9a7c-0dc91be348c3))
(fp_line (start -1.042929 7.24) (end -1.44 7.24) (layer "F.SilkS") (width 0.12) (tstamp 347f728d-dd47-4a83-9a08-6474bfc0fae9))
(fp_line (start -4.1 4.7) (end -10.1 4.7) (layer "F.SilkS") (width 0.12) (tstamp 391310eb-17d3-4a8e-a18f-598f969201fb))
(fp_line (start -10.1 5.46) (end -4.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 391a40b4-62fa-4e4f-9353-39b2d930f533))
(fp_line (start -10.1 2.92) (end -4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 3d1d07e2-ebd3-4fbd-b108-bdee48a2dc83))
(fp_line (start -1.042929 13.08) (end -1.44 13.08) (layer "F.SilkS") (width 0.12) (tstamp 3d79f32a-4c19-4d2c-8fa8-4247e7c8df76))
(fp_line (start -1.44 11.43) (end -4.1 11.43) (layer "F.SilkS") (width 0.12) (tstamp 5431f93a-c163-4aab-aab5-0579f331915b))
(fp_line (start -1.042929 8) (end -1.44 8) (layer "F.SilkS") (width 0.12) (tstamp 5c9c6b2a-90bc-4d32-ad78-a4378e0844f5))
(fp_line (start -1.44 3.81) (end -4.1 3.81) (layer "F.SilkS") (width 0.12) (tstamp 5f87282b-02a2-4241-8c83-c84a80b2c048))
(fp_line (start -4.1 12.32) (end -10.1 12.32) (layer "F.SilkS") (width 0.12) (tstamp 5f98028f-c39c-43a2-99a7-ab01ff5a374f))
(fp_line (start -4.1 14.03) (end -4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 72cab765-9f32-4524-991c-99f77e4bcc08))
(fp_line (start -4.1 2.16) (end -10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 730199e6-c3ca-4a70-88d0-70d0a3b6e92e))
(fp_line (start -4.1 -1.33) (end -1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 76adf13b-e2dc-49fd-aabf-7a2fffb72b87))
(fp_line (start -1.042929 2.16) (end -1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 78a45590-eec3-4a41-9a12-bfa9de5e273b))
(fp_line (start -1.042929 4.7) (end -1.44 4.7) (layer "F.SilkS") (width 0.12) (tstamp 806a92b0-50dc-45d1-b61f-3fa9970ce01c))
(fp_line (start -1.042929 2.92) (end -1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 839b200f-ae26-4698-823e-f5524f231adb))
(fp_line (start -10.1 0.38) (end -4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 9fe62f09-a85b-46eb-9e61-4d1e2307c1a7))
(fp_line (start -10.1 10.54) (end -4.1 10.54) (layer "F.SilkS") (width 0.12) (tstamp a20f5d6e-5182-46f3-b0a1-63a358100e99))
(fp_line (start -1.11 0.38) (end -1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp b4f0f7cc-c03d-4f57-a765-f92516384b7b))
(fp_line (start -10.1 2.16) (end -10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp bd28bc25-f713-4c3e-9e37-e6d636235615))
(fp_line (start -1.042929 10.54) (end -1.44 10.54) (layer "F.SilkS") (width 0.12) (tstamp c47edc4c-7c16-44ff-8971-3b6825d6a938))
(fp_line (start -10.1 -0.38) (end -10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp c5784d94-5687-463d-b443-a7bd49caef0c))
(fp_line (start -1.44 1.27) (end -4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp ca01665d-4257-4088-9263-576ac5b59906))
(fp_line (start -10.1 9.78) (end -10.1 10.54) (layer "F.SilkS") (width 0.12) (tstamp cb1cc1ba-d113-4632-9413-481cb1fbece2))
(fp_line (start -10.1 8) (end -4.1 8) (layer "F.SilkS") (width 0.12) (tstamp cf85d3f6-a2ed-4b40-aa73-39f410d1785b))
(fp_line (start -10.1 7.24) (end -10.1 8) (layer "F.SilkS") (width 0.12) (tstamp d1d0b2ee-2a76-48c4-85dc-c4ce1f38e716))
(fp_line (start -1.042929 9.78) (end -1.44 9.78) (layer "F.SilkS") (width 0.12) (tstamp d3816f27-9a2f-46e3-b517-6e76f91fdc71))
(fp_line (start -1.11 -0.38) (end -1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp db56dc6e-0518-4c05-b89c-59e9a3b8b371))
(fp_line (start -4.1 -0.38) (end -10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp dd92def6-b4b0-420d-b9df-9b367e14d3bd))
(fp_line (start -1.042929 12.32) (end -1.44 12.32) (layer "F.SilkS") (width 0.12) (tstamp e1a35e73-98c4-4f10-bb34-1e33bf7d52ee))
(fp_line (start -10.1 12.32) (end -10.1 13.08) (layer "F.SilkS") (width 0.12) (tstamp e1e41d91-d115-49cb-a90b-635935820340))
(fp_line (start -4.1 0.04) (end -10.1 0.04) (layer "F.SilkS") (width 0.12) (tstamp e371a02c-9586-45d5-9f1b-0843508c4373))
(fp_line (start -4.1 0.28) (end -10.1 0.28) (layer "F.SilkS") (width 0.12) (tstamp ea35cea3-c059-4dd6-95a5-a7c456eaf05f))
(fp_line (start -4.1 -0.08) (end -10.1 -0.08) (layer "F.SilkS") (width 0.12) (tstamp f11e5e38-35b2-4976-8b0f-794ab32e0261))
(fp_line (start -1.44 8.89) (end -4.1 8.89) (layer "F.SilkS") (width 0.12) (tstamp f41d1fbc-2864-4931-af11-31f3c060632e))
(fp_line (start -4.1 -0.32) (end -10.1 -0.32) (layer "F.SilkS") (width 0.12) (tstamp fc17bfb8-51d3-44d4-9c49-a516e0747876))
(fp_line (start 1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp fd8bc022-541d-43ab-9325-88b297516cd7))
(fp_line (start 1.7 -3.81) (end 1.7 16.51) (layer "F.CrtYd") (width 0.05) (tstamp 36772259-82f1-44a5-9e24-9c5d8ac9199f))
(fp_line (start -3.81 -3.81) (end -3.81 16.51) (layer "F.CrtYd") (width 0.05) (tstamp 772ac156-a5e3-41d0-9ec1-778241836e33))
(fp_line (start -3.81 -3.81) (end 1.7 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp a9e0724e-7fa9-491b-9b28-6a6c9315f4cd))
(fp_line (start 1.7 16.51) (end -3.81 16.51) (layer "F.CrtYd") (width 0.05) (tstamp ada40d85-b791-418a-af61-70e322e04e6f))
(fp_line (start 0.32 9.84) (end -1.5 9.84) (layer "F.Fab") (width 0.1) (tstamp 0415048a-6db6-4a57-9d20-4bb10ae53b13))
(fp_line (start -4.04 0.32) (end -10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 06ac2228-4511-4cb5-8ce0-10402f2b9d72))
(fp_line (start -4.04 9.84) (end -10.04 9.84) (layer "F.Fab") (width 0.1) (tstamp 0c42cbbc-6084-4714-a23e-9075e53d48f2))
(fp_line (start -4.04 12.38) (end -10.04 12.38) (layer "F.Fab") (width 0.1) (tstamp 102ed8f8-9a70-459a-9b95-308af404fa70))
(fp_line (start 0.32 2.86) (end -1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 174bed90-a9df-4d16-a588-7912e4501432))
(fp_line (start 0.32 9.84) (end 0.32 10.48) (layer "F.Fab") (width 0.1) (tstamp 260e517c-322f-4fdc-bb30-835025485225))
(fp_line (start -10.04 -0.32) (end -10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 2a1cd761-1657-49c5-945d-81e3e7904401))
(fp_line (start 0.32 13.02) (end -1.5 13.02) (layer "F.Fab") (width 0.1) (tstamp 3fc3112c-72a4-4ab5-9236-9d5cbfde8f9c))
(fp_line (start 0.32 12.38) (end -1.5 12.38) (layer "F.Fab") (width 0.1) (tstamp 443abf45-4809-4b47-b1e2-6ac3b90da410))
(fp_line (start -4.04 4.76) (end -10.04 4.76) (layer "F.Fab") (width 0.1) (tstamp 47a0b5ea-5c4e-485f-9d9a-3856a1bfff45))
(fp_line (start -4.04 2.22) (end -10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 4b1187ca-87aa-4faf-8712-5c0bb6b80955))
(fp_line (start -4.04 2.86) (end -10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 4f83ed23-6c89-48dc-a726-9346294b3c38))
(fp_line (start -4.04 5.4) (end -10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 53dac694-31ea-41ad-80b7-a1a5c26b4dac))
(fp_line (start -4.04 10.48) (end -10.04 10.48) (layer "F.Fab") (width 0.1) (tstamp 66fd451a-f04c-4457-938d-fb312fa22d35))
(fp_line (start 0.32 7.94) (end -1.5 7.94) (layer "F.Fab") (width 0.1) (tstamp 67e4a8ad-1779-4095-b906-f15c9d8e895d))
(fp_line (start -4.04 7.94) (end -10.04 7.94) (layer "F.Fab") (width 0.1) (tstamp 6f1a8c63-a41e-4c77-a7fc-00862cc706ef))
(fp_line (start -4.04 13.97) (end -1.5 13.97) (layer "F.Fab") (width 0.1) (tstamp 75bdbdf6-ed2a-4501-b1d2-de53875c68af))
(fp_line (start -2.135 -1.27) (end -4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 772e5ba7-4778-4bd3-927d-29fd1c2a43a2))
(fp_line (start 0.32 4.76) (end 0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp 78edc92c-c19d-483c-9b55-524a2ee9ab45))
(fp_line (start 0.32 -0.32) (end 0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 7f143bce-0d6c-4478-ae79-8c7f73f3283a))
(fp_line (start -4.04 -1.27) (end -4.04 13.97) (layer "F.Fab") (width 0.1) (tstamp 8777b7c7-de6c-4429-b6d8-b03002755077))
(fp_line (start 0.32 0.32) (end -1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 881eb2b5-a9a7-4388-8ab1-9a693495d92b))
(fp_line (start 0.32 12.38) (end 0.32 13.02) (layer "F.Fab") (width 0.1) (tstamp 8aedbbd4-f674-44b6-980d-4e72f27f0013))
(fp_line (start -1.5 13.97) (end -1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp a9c584cd-f408-42a8-84e1-bb122ba1c09e))
(fp_line (start 0.32 5.4) (end -1.5 5.4) (layer "F.Fab") (width 0.1) (tstamp bd4b981a-d60f-476f-88c2-a3d031df82a8))
(fp_line (start 0.32 4.76) (end -1.5 4.76) (layer "F.Fab") (width 0.1) (tstamp bddc5927-afc3-455b-a21c-0f07eff0dcb7))
(fp_line (start -10.04 9.84) (end -10.04 10.48) (layer "F.Fab") (width 0.1) (tstamp c0324126-e20e-4f1e-94a5-ee13a3d44caf))
(fp_line (start 0.32 -0.32) (end -1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp d0e0cf6d-c222-4393-8f15-a73bac7f4a6b))
(fp_line (start -10.04 12.38) (end -10.04 13.02) (layer "F.Fab") (width 0.1) (tstamp d34dd98d-7efa-4112-a136-f2bb2f08a11f))
(fp_line (start -1.5 -0.635) (end -2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp d56d3ab3-a5b0-4bbc-be3e-3ab8a3b2cbf7))
(fp_line (start -10.04 2.22) (end -10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp d89d2e02-3592-4e84-b16e-99689407a052))
(fp_line (start -10.04 4.76) (end -10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp da38a768-c8b6-439a-9e41-b2118d4aedbf))
(fp_line (start 0.32 2.22) (end 0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp e0df8bd2-5f85-467c-bf4e-b0e0a6acf161))
(fp_line (start -4.04 7.3) (end -10.04 7.3) (layer "F.Fab") (width 0.1) (tstamp e7b3928a-869b-46d5-97c7-f47e87844ff5))
(fp_line (start 0.32 2.22) (end -1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp e9b9eb85-e5a9-426e-aa92-5460e88a9aec))
(fp_line (start 0.32 7.3) (end 0.32 7.94) (layer "F.Fab") (width 0.1) (tstamp eb290a01-3ed2-41cb-a25e-27d7c2d6b439))
(fp_line (start -4.04 13.02) (end -10.04 13.02) (layer "F.Fab") (width 0.1) (tstamp ed525d66-204c-448d-aa87-ff9082b37b5d))
(fp_line (start 0.32 10.48) (end -1.5 10.48) (layer "F.Fab") (width 0.1) (tstamp edb52c56-a348-487a-9938-97fa19865000))
(fp_line (start 0.32 7.3) (end -1.5 7.3) (layer "F.Fab") (width 0.1) (tstamp ee003df4-9b11-4198-8bbd-acbeace15ab8))
(fp_line (start -4.04 -0.32) (end -10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp f2b13cb3-1eb9-4ba5-8fb8-a3a99d870ae2))
(fp_line (start -10.04 7.3) (end -10.04 7.94) (layer "F.Fab") (width 0.1) (tstamp fa1e632d-6a6e-4a00-9c88-ad93c1d6f679))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "unconnected-(J1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 4e839c2c-5477-4b41-8cab-24b7a993a0f9))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J1-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp 14243a0a-c578-4033-acbc-a55c8396972f))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/SCL") (pinfunction "SCL") (pintype "bidirectional") (tstamp 5f7ee03b-488e-46f9-ac99-e92e6d984775))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 2b77b165-b530-4739-baa5-2cc42d401869))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 341a5660-9b35-4df7-ba48-14ced4b7b987))
(pad "6" thru_hole oval locked (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+3V3") (pinfunction "VCC") (pintype "passive") (tstamp b54a6253-221e-4572-91b4-d2151fec4776))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Pmod_Interface-emt:Pmod_Interface_Female6" (layer "F.Cu")
(tedit 60759317) (tstamp 00000000-0000-0000-0000-0000607fe966)
(at 110.998001 58.42)
(descr "Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607fe70c")
(attr through_hole)
(fp_text reference "J2" (at -0.3175 -2.0955 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 243aa90a-a2ba-4e1a-a420-4e057ed29f3b)
)
(fp_text value "Pmod-Interface-I2C6-Out" (at 4.92 17.53 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef7406fa-4d56-4250-9f85-830d50cfe3c9)
)
(fp_text user "${REFERENCE}" (at 5.775 6.35 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b935a55b-ada6-42a6-a321-d30b84bbf1db)
)
(fp_line (start 10.0905 -0.6985) (end 1.4605 -0.6985) (layer "F.SilkS") (width 0.12) (tstamp 04ce7211-93e2-446e-9ace-8b6f2cba68f2))
(fp_line (start 10.09 14.03) (end 1.46 14.03) (layer "F.SilkS") (width 0.12) (tstamp 0664adee-b877-4441-8471-4c1693823a3a))
(fp_line (start 1.46 9.8) (end 1.05 9.8) (layer "F.SilkS") (width 0.12) (tstamp 0951c4cb-8e16-4ad5-be2d-f8b99f015652))
(fp_line (start 1.46 5.44) (end 1.05 5.44) (layer "F.SilkS") (width 0.12) (tstamp 0b97ac54-5227-4f30-afbc-a3fee99cc75e))
(fp_line (start 10.09 8.89) (end 1.46 8.89) (layer "F.SilkS") (width 0.12) (tstamp 113f9b9b-4ee6-450a-80b9-32510aa8670d))
(fp_line (start 1.46 0.36) (end 1.05 0.36) (layer "F.SilkS") (width 0.12) (tstamp 1cc6453b-f55a-4487-ab7d-efb84850121d))
(fp_line (start 10.0905 -0.5715) (end 1.4605 -0.5715) (layer "F.SilkS") (width 0.12) (tstamp 1e585e3f-4411-4ba9-81e7-e03c2cb5b79d))
(fp_line (start 10.0905 0.8255) (end 1.4605 0.8255) (layer "F.SilkS") (width 0.12) (tstamp 1eca8b58-f05c-4916-ba2e-123c3a261bad))
(fp_line (start 10.0905 -1.143) (end 1.4605 -1.143) (layer "F.SilkS") (width 0.12) (tstamp 203a504b-3fb0-4e9b-9974-aa43a4e9f36b))
(fp_line (start 10.0905 -0.381) (end 1.4605 -0.381) (layer "F.SilkS") (width 0.12) (tstamp 21f7f206-05f5-438d-9d38-957e68f3531f))
(fp_line (start 10.0905 1.2065) (end 1.4605 1.2065) (layer "F.SilkS") (width 0.12) (tstamp 285d34af-9392-4a1d-9cea-8686022ea356))
(fp_line (start 10.09 6.35) (end 1.46 6.35) (layer "F.SilkS") (width 0.12) (tstamp 2d639f2b-c8a4-4deb-9ac7-04abbb62af73))
(fp_line (start 1.46 7.26) (end 1.05 7.26) (layer "F.SilkS") (width 0.12) (tstamp 2ddfeb94-1b72-46fa-9f4b-57ec192e48e6))
(fp_line (start 10.0905 0.3175) (end 1.4605 0.3175) (layer "F.SilkS") (width 0.12) (tstamp 2efe6175-62e2-4de3-927e-13711de3f553))
(fp_line (start 10.0905 -0.8255) (end 1.4605 -0.8255) (layer "F.SilkS") (width 0.12) (tstamp 31c1395b-07d0-4b98-85d0-a657785c72c3))
(fp_line (start 1.46 2.9) (end 1.05 2.9) (layer "F.SilkS") (width 0.12) (tstamp 328c7e1d-f99d-45d6-a820-6ad27389955b))
(fp_line (start 10.09 14.03) (end 10.09 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 343b887d-b7cd-450e-b2c2-a4cea2871fe2))
(fp_line (start 10.0905 0.1905) (end 1.4605 0.1905) (layer "F.SilkS") (width 0.12) (tstamp 443f3fc1-7f48-43e2-b4a7-111bc9059d74))
(fp_line (start 10.0905 -0.1905) (end 1.4605 -0.1905) (layer "F.SilkS") (width 0.12) (tstamp 449aabf0-13d7-4571-ab49-45826e87704e))
(fp_line (start 10.0905 0.635) (end 1.4605 0.635) (layer "F.SilkS") (width 0.12) (tstamp 4c7134ed-0287-45ec-bbf8-4503d248bbe1))
(fp_line (start 10.0905 -0.635) (end 1.4605 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 4f1afb68-6639-4705-9345-8ea27a12b193))
(fp_line (start 1.46 10.52) (end 1.05 10.52) (layer "F.SilkS") (width 0.12) (tstamp 556077e3-69f0-439f-b0cf-52fd9b57a703))
(fp_line (start 10.0905 -0.762) (end 1.4605 -0.762) (layer "F.SilkS") (width 0.12) (tstamp 5665a3c5-040a-4ba3-a0a6-6d82ef38ec15))
(fp_line (start 10.0905 0.254) (end 1.4605 0.254) (layer "F.SilkS") (width 0.12) (tstamp 592d6626-7aa6-42b1-84c0-57b595a99cd0))
(fp_line (start 10.0905 -0.127) (end 1.4605 -0.127) (layer "F.SilkS") (width 0.12) (tstamp 620a3f1d-cf42-47f3-9698-76c6dd357edb))
(fp_line (start 1.46 14.03) (end 1.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 650a6ac3-7fc5-4f8f-86ae-3f12a7b3635a))
(fp_line (start 1.46 2.18) (end 1.05 2.18) (layer "F.SilkS") (width 0.12) (tstamp 66122250-a097-45a7-b55e-b1df1d1f988a))
(fp_line (start 10.09 11.43) (end 1.46 11.43) (layer "F.SilkS") (width 0.12) (tstamp 6e3dc89f-e757-4f63-a1ec-8085553c95ea))
(fp_line (start 10.0905 -0.254) (end 1.4605 -0.254) (layer "F.SilkS") (width 0.12) (tstamp 74512073-7d0a-4537-ac19-ecbd0126e2ea))
(fp_line (start 10.0905 1.143) (end 1.4605 1.143) (layer "F.SilkS") (width 0.12) (tstamp 74fb1dea-97d3-4223-89c5-ec26fd813c56))
(fp_line (start 10.0905 -0.9525) (end 1.4605 -0.9525) (layer "F.SilkS") (width 0.12) (tstamp 764e7114-da4e-4399-ad33-de6a7b206fc4))
(fp_line (start 10.0905 -1.27) (end 1.4605 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 785eb779-07ae-44bc-8c7b-7023746092f1))
(fp_line (start 10.0905 0.9525) (end 1.4605 0.9525) (layer "F.SilkS") (width 0.12) (tstamp 836d2133-2f60-4a54-8fec-b5740ea3c038))
(fp_line (start 10.0905 -1.0795) (end 1.4605 -1.0795) (layer "F.SilkS") (width 0.12) (tstamp 84e82d35-6188-4289-96e0-a50a4161cc42))
(fp_line (start 10.0905 -0.4445) (end 1.4605 -0.4445) (layer "F.SilkS") (width 0.12) (tstamp 87da19f6-2748-4aa3-af01-c3a84aeec155))
(fp_line (start 1.46 -0.36) (end 1.05 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 88f66594-91b2-4e38-8a01-dcfb4f28d9b0))
(fp_line (start 1.46 12.34) (end 1.11 12.34) (layer "F.SilkS") (width 0.12) (tstamp 9705b903-5257-4470-b330-7702fb276183))
(fp_line (start 10.09 1.27) (end 1.46 1.27) (layer "F.SilkS") (width 0.12) (tstamp a143451d-2e8b-4d63-a195-5ecced0aebc4))
(fp_line (start 10.0905 -1.2065) (end 1.4605 -1.2065) (layer "F.SilkS") (width 0.12) (tstamp a9ed95a0-5af4-43c7-a72f-d716005386b7))
(fp_line (start 10.0905 0.0635) (end 1.4605 0.0635) (layer "F.SilkS") (width 0.12) (tstamp aba52e3a-59da-4644-878c-8203778e7366))
(fp_line (start 10.0905 -1.016) (end 1.4605 -1.016) (layer "F.SilkS") (width 0.12) (tstamp b535344f-ba6c-4336-aa3a-c6990bbac1a5))
(fp_line (start 10.0905 0.6985) (end 1.4605 0.6985) (layer "F.SilkS") (width 0.12) (tstamp b62fdf16-e5d4-4cf3-8a1a-a7283ab86d61))
(fp_line (start 10.0905 0) (end 1.4605 0) (layer "F.SilkS") (width 0.12) (tstamp b737c25a-a506-4032-9de2-c541abe9a6c6))
(fp_line (start 10.0905 0.762) (end 1.4605 0.762) (layer "F.SilkS") (width 0.12) (tstamp b8065b28-d139-4db2-8924-f1bde4832f04))
(fp_line (start 10.09 -1.33) (end 1.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bc35065c-7204-4f45-a9b4-3533e5f7999c))
(fp_line (start 10.09 3.81) (end 1.46 3.81) (layer "F.SilkS") (width 0.12) (tstamp bdadfac8-da05-4fb3-a47a-247cb6f5201c))
(fp_line (start -1.27 0.0635) (end -1.27 -1.2665) (layer "F.SilkS") (width 0.12) (tstamp c0b84322-266c-43f8-89f5-a3653170d4c1))
(fp_line (start 10.0905 0.381) (end 1.4605 0.381) (layer "F.SilkS") (width 0.12) (tstamp c2ba1b1a-a1c4-4c02-bc52-d6d845b6b5e4))
(fp_line (start 10.0905 0.127) (end 1.4605 0.127) (layer "F.SilkS") (width 0.12) (tstamp c4cf1685-91a4-4467-909f-fc4dba13d6f1))
(fp_line (start 10.0905 1.016) (end 1.4605 1.016) (layer "F.SilkS") (width 0.12) (tstamp c713ed3f-b2dc-4f6b-a609-38c977dc9432))
(fp_line (start 1.46 7.98) (end 1.05 7.98) (layer "F.SilkS") (width 0.12) (tstamp cf1bd5b8-91a8-4a86-870d-6ee9b03b54a7))
(fp_line (start 10.0905 -0.889) (end 1.4605 -0.889) (layer "F.SilkS") (width 0.12) (tstamp d38c2c10-d6e4-46fb-8ded-93caadeb4ab4))
(fp_line (start 10.0905 0.889) (end 1.4605 0.889) (layer "F.SilkS") (width 0.12) (tstamp d70b9d07-f113-42e0-920a-61d5909106f4))
(fp_line (start 1.46 4.72) (end 1.05 4.72) (layer "F.SilkS") (width 0.12) (tstamp d72cde74-c1db-4b8f-b31f-b3fa0bc4898f))
(fp_line (start 10.0905 0.5715) (end 1.4605 0.5715) (layer "F.SilkS") (width 0.12) (tstamp dbddfe3c-b24e-4b63-adf0-132fb65b23c0))
(fp_line (start 1.46 13.06) (end 1.11 13.06) (layer "F.SilkS") (width 0.12) (tstamp e1467f94-bc48-4c81-8f81-32355d6b8af8))
(fp_line (start 10.0905 0.508) (end 1.4605 0.508) (layer "F.SilkS") (width 0.12) (tstamp e58cf62b-727b-4027-b31b-66d2b1527cc1))
(fp_line (start 10.0905 -0.508) (end 1.4605 -0.508) (layer "F.SilkS") (width 0.12) (tstamp e7a9d617-b94a-40c4-9040-76b602de5faf))
(fp_line (start 10.0905 -0.0635) (end 1.4605 -0.0635) (layer "F.SilkS") (width 0.12) (tstamp f42bf9ce-b864-4e0e-a608-72c27ccfa43a))
(fp_line (start -0.16 -1.27) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp f6d7929a-4b1a-4eac-bbeb-c2f438097f7f))
(fp_line (start 10.0905 1.0795) (end 1.4605 1.0795) (layer "F.SilkS") (width 0.12) (tstamp f85a0b07-f866-483e-a91f-3885fb7be19c))
(fp_line (start 10.0905 -0.3175) (end 1.4605 -0.3175) (layer "F.SilkS") (width 0.12) (tstamp f96c9253-2edb-4210-9b6d-eae81d9cc14e))
(fp_line (start 10.0905 0.4445) (end 1.4605 0.4445) (layer "F.SilkS") (width 0.12) (tstamp fdd22e39-cd43-468c-8aeb-87f223d124f8))
(fp_line (start -1.8 -3.81) (end -1.8 16.51) (layer "F.CrtYd") (width 0.05) (tstamp 65323fc6-af01-4b37-aa28-c17137bed09d))
(fp_line (start -1.8 16.51) (end 10.16 16.51) (layer "F.CrtYd") (width 0.05) (tstamp 7e7b5286-e159-4a07-9ecf-95756809549c))
(fp_line (start 10.16 -3.81) (end -1.8 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp cf0f0579-98f5-4c8b-9111-da86152156cf))
(fp_line (start 10.16 16.51) (end 10.16 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp d5347753-4728-4307-b1dd-7b1015864eb4))
(fp_line (start 1.52 7.32) (end 0 7.32) (layer "F.Fab") (width 0.1) (tstamp 013b9918-0490-4c0f-bcd3-b13eacfb886a))
(fp_line (start 1.52 12.4) (end 0 12.4) (layer "F.Fab") (width 0.1) (tstamp 09f1c792-2376-4213-973e-ee4a804eb74a))
(fp_line (start 10.03 13.97) (end 1.524 13.97) (layer "F.Fab") (width 0.1) (tstamp 1a9b90a0-61f0-4f69-baca-7148dff9eeb0))
(fp_line (start 0 13) (end 1.52 13) (layer "F.Fab") (width 0.1) (tstamp 3ebab7e1-814d-40f1-bf45-166ffb0111b2))
(fp_line (start 0 0.3) (end 1.52 0.3) (layer "F.Fab") (width 0.1) (tstamp 4711e175-392f-4e35-9317-6508cfb4e888))
(fp_line (start 1.52 4.78) (end 0 4.78) (layer "F.Fab") (width 0.1) (tstamp 48f2669e-b758-4280-8571-049ed349118d))
(fp_line (start 10.03 -1.27) (end 10.03 13.97) (layer "F.Fab") (width 0.1) (tstamp 583110c4-2593-4d17-84d2-8732aff65d51))
(fp_line (start 0 5.38) (end 1.52 5.38) (layer "F.Fab") (width 0.1) (tstamp 59421b6e-23ef-4cfc-b3c0-9e2f079fd2be))
(fp_line (start 1.52 2.24) (end 0 2.24) (layer "F.Fab") (width 0.1) (tstamp 599ed580-0951-4773-b568-9fa22bd89474))
(fp_line (start 0 7.92) (end 1.52 7.92) (layer "F.Fab") (width 0.1) (tstamp 5bcba69c-08bd-470b-aaf1-4981c5da864c))
(fp_line (start 0 9.86) (end 0 10.46) (layer "F.Fab") (width 0.1) (tstamp 67264945-2415-40fc-bfe0-123de10aeec1))
(fp_line (start 0 4.78) (end 0 5.38) (layer "F.Fab") (width 0.1) (tstamp 6fc1d601-14a7-4560-995a-09b749ff52d1))
(fp_line (start 1.524 13.97) (end 1.52 -0.3) (layer "F.Fab") (width 0.1) (tstamp 7089e20a-10c5-4f66-b677-ca6e66d881bb))
(fp_line (start 0 2.24) (end 0 2.84) (layer "F.Fab") (width 0.1) (tstamp 75460f07-3b78-4d3d-8915-a4ee8eda4f12))
(fp_line (start 0 2.84) (end 1.52 2.84) (layer "F.Fab") (width 0.1) (tstamp 78e5ce4d-68c3-4156-a05b-23649d51557f))
(fp_line (start 0 10.46) (end 1.52 10.46) (layer "F.Fab") (width 0.1) (tstamp 96868ae8-fe10-426d-a97f-f90e7360c331))
(fp_line (start 0 7.32) (end 0 7.92) (layer "F.Fab") (width 0.1) (tstamp a5f319f7-75b3-4c10-9e98-7e12e44a52e9))
(fp_line (start 1.52 -0.3) (end 0 -0.3) (layer "F.Fab") (width 0.1) (tstamp b39274ea-8f3e-4816-a2e5-f9bfc5b6ab5e))
(fp_line (start 0 12.4) (end 0 13) (layer "F.Fab") (width 0.1) (tstamp c10ad8cf-c678-4abb-8693-e841c14a4d1c))
(fp_line (start 1.52 9.86) (end 0 9.86) (layer "F.Fab") (width 0.1) (tstamp c10b9abb-fd66-4a38-91f8-91c7eb91d6c8))
(fp_line (start 2.49 -1.27) (end 10.03 -1.27) (layer "F.Fab") (width 0.1) (tstamp cbae9ad8-6de3-4209-be6f-5df2ae0e5aa5))
(fp_line (start 2.49 -1.27) (end 1.52 -0.3) (layer "F.Fab") (width 0.1) (tstamp ea0cbf3e-9315-497e-be56-4de6664cd8bd))
(fp_line (start 0 -0.3) (end 0 0.3) (layer "F.Fab") (width 0.1) (tstamp fe4df57d-fb0d-434a-9e6d-89f197fd3957))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J2-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp f3df2d9d-3503-404e-8bfe-9f4f6445406c))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J2-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp 0c561cef-425b-4fb9-bcae-a88dc854a481))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/SCL") (pinfunction "SCL") (pintype "bidirectional") (tstamp 7fe05681-f578-4832-b0d7-7ae5fd2e4c5c))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 0730a0d2-ad9d-4b1f-b2a6-47a5d552cb7e))
(pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 29fdfc67-6424-44ab-b49a-54fa31b41a69))
(pad "6" thru_hole circle locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "+3V3") (pinfunction "VCC") (pintype "passive") (tstamp fef4ee0a-d472-4ec3-b1a6-98ee022b3e8d))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -180))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000060802197)
(at 94.107001 68.2498 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006097ef64")
(attr smd)
(fp_text reference "R5" (at 2.413 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp ade4f175-4261-46fb-a854-c8ed4fc19215)
)
(fp_text value "560" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5ab85c5-e9ec-449a-85d7-c1602fef4863)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1654106a-e32e-4c98-85f5-028fa27ce187)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 2aef70f1-3534-4742-a353-a9bca6432d06))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 690ec59a-7ace-40a3-965a-f1bada655cc4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2158823c-f745-4222-9735-9b9a97fc41d1))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3cd15221-e75e-4c1e-b0b9-a7f28fd89081))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 60a63f45-e8fe-4f9f-82d7-e43b7246bf25))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 99fe7c36-321a-415d-b208-51ef218f2ea6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6564e6a0-fda7-44d9-838b-74b27a9eb305))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c4db6105-daee-420c-b19f-49b08dbd1d56))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cf4b6e2f-5e8d-4475-9ea7-7d11060c9112))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e1e5513b-1016-4597-b8d2-cea806100041))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (pintype "passive") (tstamp f137ac37-4ea6-41c4-a7b6-b8658b8e36ff))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D4-Pad2)") (pintype "passive") (tstamp 1a55d721-8ba8-412b-9cc8-daff27167a92))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-0000608021ca)
(at 90.297001 56.515)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000608091d9")
(attr smd)
(fp_text reference "R2" (at -2.2606 0.0508 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 5f5b2c6b-f6c5-4736-8105-80c56f0db22a)
)
(fp_text value "560" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 870602c1-79ca-4e86-896c-e1274b5fe5a4)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b2a82a2e-c1f6-49f5-bec2-c4790d57a3be)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 89427191-0481-499e-a2af-088ddff944f6))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e147f738-e54e-4999-bf20-9c1dc0a91702))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 51cd11f3-93a1-49a7-b07b-47a8555646cc))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8c08e1e2-f5e9-4650-8cc4-3e5525d1cabb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b802842a-baa1-4cd2-abb6-1c6066adaddc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c28ab06d-6141-47f7-9914-e1749ef8b379))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 447396a0-34ad-4c8e-86ef-7c7b0885db51))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5883519b-2b67-4300-8a8f-71ef540203ee))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8dae33c7-1770-4e51-8f55-873abcc43c36))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f8f1412d-c7b5-481d-84c6-d5cb63e6eb7e))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (pintype "passive") (tstamp 1a67defe-82cb-486a-a988-3a51e9eef9ae))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D1-Pad2)") (pintype "passive") (tstamp db76a631-e970-4f33-b695-8618afd3536a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-0000608021db)
(at 76.073001 58.7375 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060805eca")
(attr smd)
(fp_text reference "R1" (at -2.3495 0.0635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63e62c72-b30d-4ce0-9776-71542ac8ada3)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb9c67f6-5c92-4f72-83d3-9fd22e840d1e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e48282ac-3145-45af-9ee0-4c2fc9421b1d)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 564bbc77-d7d4-4f7d-8edf-ce23944f64ae))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp cfbdb801-e534-4aff-aca9-122fac7d5b5b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2111764c-a554-4281-b2a8-5829aee68e77))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 296c040b-f6a9-4d18-bc37-ee4120623864))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 58d680de-3e43-4469-95ef-d3752e260c33))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ebef6521-f60c-493e-a8e6-65c65f89deaf))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 121b8ac7-936a-4bb2-bc8b-a29e174851d0))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 817fa9b7-edb4-4623-949b-49f03ff9d434))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 83b0180b-b692-4dd1-b30a-a744b9eb2032))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e49f4bbe-4586-4472-9215-3f849ec08e50))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (pintype "passive") (tstamp 56a63ddb-10d5-41ba-ae79-23478fcdeb43))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(J5-Pad2)") (pintype "passive") (tstamp 2d79eeb7-c32e-4918-86de-cedc8fd2cd88))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 6086736C) (tstamp 00000000-0000-0000-0000-000060804417)
(at 90.487501 61.722 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LS L29K-G1H2-1-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LSL29K-G1H2-1-Z")
(property "Reichelt Part No" "OSO LSL29K-G1J2")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006097ef6b")
(attr smd)
(fp_text reference "D4" (at 0 -1.397 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 4a216805-a5d4-4260-9e3e-558f9fa38233)
)
(fp_text value "MP_R" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29f98c75-67b8-4c49-b989-43aa12551095)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0f46a02c-7bb9-4fa2-89a5-d9db30e3d133)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 70f9e6e2-43a0-492a-8510-01ec9fa9048f))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 9135d856-5eea-48cf-a157-c19b56e7c9e1))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp d802e3a3-1bbf-48bc-b5a8-b02b6b3ef108))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 20a34f6e-0aad-4970-a993-271758fb88ab))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 620247f4-773c-4c97-b453-c58e7b79fb87))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc5be8b8-a00a-4283-83b9-561084aba7d3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fedc0733-fcee-4b30-ba59-1ce20d20283b))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 60ac21ac-0917-460a-b9dc-de6ded11801a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 61c57695-4398-472f-9524-d64b2a8d7b41))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cee5a160-3ab0-44a4-b52f-be272c17f7bb))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d1d28b2a-e7dd-4e59-9ec5-bbcb1251856e))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ff706c03-74ea-42d7-8dae-536ba5b717df))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/D_MP_R") (pinfunction "K") (pintype "passive") (tstamp 5895eadf-3b40-4281-bf20-8db173d32031))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 0349ea5e-e6c7-4a1d-b230-3c18bc547c8d))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000060804429)
(at 84.175601 58.7248 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LG L29K-F2J1-24-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LGL29KF2J124Z")
(property "Reichelt Part No" "LG L29K")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006097e9d7")
(attr smd)
(fp_text reference "D3" (at 0 -1.4478 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp d1ca4ae3-5fce-4a63-a66a-bf13c8a1920c)
)
(fp_text value "MS_G" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26c0c6b4-b30f-4b33-a73f-c6119464699b)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b8da75d5-667d-4424-8363-aa0897992e70)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1cd43115-ff86-4eb2-9f73-ad51ae3b68bf))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6a070b66-da48-49fc-80c9-a05b1325451f))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp b7af0d74-53a6-4469-a8b0-149a88e7ccb7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 257396f6-b4be-4e82-9427-8778f534c9c9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2cbe07ef-974e-40e8-af67-9adcda52762b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7d8ca1d7-b49e-4ba0-b613-1a3d03e6f6b8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d729cf5e-6452-4dad-a5b4-843eee58f3ca))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 4436accc-4d73-4cc9-8e56-766016918c5b))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4d6e2826-e134-42b6-aed6-c851cb391346))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6b2797da-416d-4925-afb9-1d67bcf57d50))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6f013238-c50c-4e7b-aa83-953811ebb16b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp e0a6e98d-7f76-4688-9339-5bd8cb0accc9))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D_MS_G") (pinfunction "K") (pintype "passive") (tstamp f8f5e2fd-e7b7-4d92-9f13-2bc26723c6a3))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 4db2b359-c3a0-42c1-9e66-2f81ca7e97f9))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006080443b)
(at 87.350501 58.7248 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LY L29K-H1K2-26")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LYL29KH1K226Z ")
(property "Reichelt Part No" " OSO LYL29K-H1K2 ")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006097e47f")
(attr smd)
(fp_text reference "D2" (at -0.2795 -1.4478 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 0031f74f-12b3-4ff7-b4fc-990b1cbe4909)
)
(fp_text value "MS_Y" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ced81b5-48b0-47cc-aa15-1e1ddb1cc2ca)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ef7d49f9-d081-463e-9722-6865a3576bd5)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 02666157-5338-4a69-8b1b-f43192f728b2))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 153ef604-7f18-4381-a7e1-71928486aff7))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 76ed5f1b-951d-43e5-a97b-5231c8e0f179))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5fed1816-25b8-4ed6-9c7c-ee1a8e9e5972))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 68abeefd-6427-4987-bc36-a9ddbfbb4075))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a9342c68-d82f-47ca-9f17-4096584fccb4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c4546c2b-1e83-4f99-ac1c-4244a59b4ed3))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 2589db45-0319-4cb0-b91a-be2e773d914d))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp a381c06d-9428-464c-95fc-57f70e70b81e))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c69a56ee-2d43-4d3c-932e-528eee6bf526))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c7d28bbf-a2e1-4f3c-9270-9d5f5ebd437e))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f66aca22-16cd-4b9e-8ad9-58de90a8349d))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/D_MS_Y") (pinfunction "K") (pintype "passive") (tstamp a13408dd-e971-48b0-aeab-42c91f209c39))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 5c84f294-46fa-4897-96e3-19d075150d56))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006080444d)
(at 90.5002 58.7248 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LS L29K-G1H2-1-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LSL29K-G1H2-1-Z")
(property "Reichelt Part No" "OSO LSL29K-G1J2")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060809915")
(attr smd)
(fp_text reference "D1" (at 0 -1.4478 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp d7fdf586-85a8-4fcc-928c-8a868f5520f1)
)
(fp_text value "MS_R" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da89c827-4687-41ac-a637-83c7cb5918ce)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3f8ed34e-fd26-4321-9ecb-41b8c55098ed)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1d93990f-d7ea-42cc-9dc0-262c66ca2725))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 56606e47-b7ef-4877-ad80-639e42ec113e))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp d4babba9-cfaa-4a71-92f6-5f772e551dfc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 08782204-f59e-40c3-91e6-6e5a69e72a4b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 57128ab1-9c4b-4dce-91c9-c4ec14e45ded))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5c5639a2-d174-4d16-b6b7-0aeca7351fb2))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ba8b4319-26d5-4cc5-a425-eb473ee42081))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 23531f51-adf7-42f3-8f27-9ed385b08476))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 26daaef4-4e0f-4b1a-b30a-bb6e9ad2707b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 285bc7c3-0946-4325-85a0-43cd238d53e0))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 71f969b8-3f0c-4803-93fb-2b53eee06776))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b4c5cbcf-feb3-4fe2-890b-dfe26c360f10))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D_MS_R") (pinfunction "K") (pintype "passive") (tstamp 7e2ae14c-2c0b-407e-97c4-d6cce41b0d16))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 5d18fde9-34dc-4979-881c-9037a5d1395c))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000060805678)
(at 101.727001 62.9158 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LG L29K-F2J1-24-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LGL29KF2J124Z")
(property "Reichelt Part No" "LG L29K")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990c00")
(attr smd)
(fp_text reference "D10" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 505bcec0-f5d9-4817-b249-1492d6c6118b)
)
(fp_text value "SP_G" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18eefc9c-645c-4b51-a89e-5fdc4e0f0695)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7f0c7be5-471d-454b-a7d2-a3fe1dbcface)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3756074b-62ec-4aa1-8dad-6ab88ed67f9c))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 837eb93a-3975-4647-bab5-4933942a01c7))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 87ec1271-0b1e-4b88-8530-e815bfbbcba1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 27f8c242-631c-486a-bd29-31f416c1cc1e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8410c51f-a834-4e9e-af6a-ed0f76d749f3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d69f02e9-a9d5-4aee-a415-1e620f5e75a0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f3b2af68-ac2a-4ba4-a332-f937143afc73))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 4371e30d-ebe7-4a45-9be9-3884e38fece4))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 85f950ff-103e-4ec0-a974-f030181303f3))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ae6be806-9a57-4746-a448-88fecd4c488d))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d74eee7f-e25e-475a-9fec-de98a5a9b63b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp e9518d7c-8ee8-440d-a869-beab478f4cf8))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/D_SP_G") (pinfunction "K") (pintype "passive") (tstamp 80bab0b4-7e5d-413a-aa0b-a1db3a737926))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(D10-Pad2)") (pinfunction "A") (pintype "passive") (tstamp c06304b7-cfe6-4beb-9a87-812c9eb475e5))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006080568b)
(at 101.727001 59.7408 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LS L29K-G1H2-1-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LSL29K-G1H2-1-Z")
(property "Reichelt Part No" "OSO LSL29K-G1J2")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990bf1")
(attr smd)
(fp_text reference "D9" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp bf9fd991-6f9d-4e24-a3d2-a85518ed215c)
)
(fp_text value "SP_R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 564e3781-e255-48c2-bb38-93fdec3a7f0a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6aa4110b-7aeb-4519-9854-92ad72dfb1ce)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8c6003f3-9e7e-47a3-8eb6-d3f244ee3089))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp a8dd1d2c-970e-4bb5-bcf2-76c4096f66ea))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ff893d42-4952-4644-bc70-99deb7ea5b79))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38931bf0-fc56-4e01-a66e-7cf08e04f788))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 651b8cd9-fb02-4cab-8c12-77a3198566b0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6cb91f47-5353-44f2-9c5f-e0b6de52da27))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dc2d90b2-01c6-44c3-89eb-155d591b8871))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2a73af95-639a-4f37-9d23-f8ea1e581249))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 31a0d369-6381-4631-9fe7-6679a725798e))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4e4b7430-5728-4ade-be1e-9fb0a7a15670))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 829ea6ff-4d22-492e-8418-f87bf8fed738))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c8a7aa7c-938d-4461-9da1-96b20fdef85c))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D_SP_R") (pinfunction "K") (pintype "passive") (tstamp 7fde3f60-28a8-433e-a4e3-1260464e7c98))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(D9-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 4fa1f0d6-e2a7-4318-825b-b9346e40cf27))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006080569e)
(at 98.729801 66.1162 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LG L29K-F2J1-24-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LGL29KF2J124Z")
(property "Reichelt Part No" "LG L29K")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990be2")
(attr smd)
(fp_text reference "D8" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp e0ad0692-47c2-461b-aee3-dc2838bed598)
)
(fp_text value "SS_G" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 494f89cd-53b8-4296-a789-9120b23cb80f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8685ac0c-16c9-484b-8b50-4ccf2019c17d)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0da30f3d-b798-4aa7-9773-dde53924e48b))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 91e63c37-5ae9-455d-ab73-bbb8e7e3bd1a))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp acaef6ce-623f-45b7-b679-feac85ea2d48))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44fd4d8a-4e44-43b8-91dd-3af4a9306561))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5f454354-ad11-400d-a15a-12a720d66f96))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 781a823a-d7c8-4849-8a01-4da0e1993247))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2d8bd61-8938-4681-b63b-11d785e7a79e))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 25a4fba8-e8cf-4d7f-9a68-5fdd899a6139))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2e008954-a5f7-4312-aa85-33a97e7e222f))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5206d806-02cb-4ec9-bbb3-594865cf1207))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 80b7a8df-7501-41ce-abde-8e237f910c19))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp c2a984d7-7f68-46b1-8902-595947443908))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/D_SS_G") (pinfunction "K") (pintype "passive") (tstamp f8def414-5ce2-42a8-b0f2-cf1511c3c675))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D8-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 0bb6802a-75d2-4838-811b-c0105bf4c7f2))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-0000608056c4)
(at 98.729801 59.7408 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LS L29K-G1H2-1-Z")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LSL29K-G1H2-1-Z")
(property "Reichelt Part No" "OSO LSL29K-G1J2")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990bbe")
(attr smd)
(fp_text reference "D6" (at 0 -1.498601 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 79604005-400f-4c95-9a6d-44affe36e077)
)
(fp_text value "SS_R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc3fe7b7-f278-43c3-a93a-ee38b8f3b296)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d0241479-1944-483e-adba-51fcbf52aeed)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 733380db-a40a-497c-8194-4a2fc306d3f4))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp b3235760-9fad-4af4-b810-db32023361d9))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp ef344568-2bfe-4fb3-9aab-3ca13c42c41d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 558dc045-92b6-44d3-9c65-b8cefcbb3f8e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7b4234a5-c6dd-4c85-b818-732372c011f8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dbd77809-0439-422d-a0e7-3864753453b2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f73cb3d1-5761-4be0-924e-1ee552055343))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 61be0893-5fad-4671-a67e-23e8022f95db))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 89458156-f929-41f4-8491-9466a2c280d4))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9a634e17-4220-4a5a-9f36-fac4810151c5))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp e52523bc-bc2c-4d70-ad27-c4a05c37ed46))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp e74e4012-712b-4c3a-b2fe-4f10947633f1))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/D_SS_R") (pinfunction "K") (pintype "passive") (tstamp c7e442f6-9e34-487e-b8f5-9cc129966622))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D6-Pad2)") (pinfunction "A") (pintype "passive") (tstamp fcb147d8-5a81-4dc4-9259-b4821cd87e1e))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-0000608135cc)
(at 98.729801 62.9158 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property " Manufacturer Part No " "LY L29K-H1K2-26")
(property "Manufacturer" "Osram")
(property "Mouser Part No " "720-LYL29KH1K226Z ")
(property "Reichelt Part No" " OSO LYL29K-H1K2 ")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990bd3")
(attr smd)
(fp_text reference "D7" (at 0 -1.498601 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 426f9780-af4b-4971-b3b2-120768473b76)
)
(fp_text value "SS_Y" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0846560b-508e-40ae-b2a8-5e476b27a3d9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4637d841-5839-440b-851a-5d09adfb7d46)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 0a03cfb5-e11d-417e-a667-97493477f241))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8ab576d3-a9a3-4df6-8567-22510466feff))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e0d54aeb-6271-496d-8910-6f13a3bcf821))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 34d1e4b6-4400-4223-a894-e949f168b8e6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5930f6a6-b407-45cb-903d-d9cc9b84f48f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 901a6f54-1817-4bd3-8b7e-6ba7308548cb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f8e9ddd3-b7f3-4b35-be41-19366f9caaaa))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 13a945a5-5653-45ae-9f19-f80b9564a7d3))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2ca64a9d-9a62-412a-91fe-ad1818d15358))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9162ff94-7d39-48ee-b76a-e67e4e881974))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e262fb6b-a4c2-49d0-8b2a-3950d9edc5cb))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f4ec4e2f-fad0-421b-a9d7-3aca49e58330))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D_SS_Y") (pinfunction "K") (pintype "passive") (tstamp ad045a49-289a-4cca-8878-f8077517a9b7))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D7-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 948906ed-cb2c-41e2-a4fb-f70463489855))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000060813b12)
(at 96.393001 68.58 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990bdb")
(attr smd)
(fp_text reference "R9" (at 2.2352 -0.0254 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp feb5f1f5-411e-44c5-8b30-99729f79d37e)
)
(fp_text value "330" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0249027-1c34-4ec9-a726-39f7c41c3dd0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0115325b-e869-49c2-aef6-f9a4bee8f505)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 95a1d036-b164-46c8-99b7-c35571d1c613))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b1ce0db9-1fbe-4fc4-8e74-56e1fda61138))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 404d97f6-dac3-4934-9d71-aea11dc6fd79))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4418e8e5-5f0e-4c64-b16f-7edf52110078))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e458629a-ba17-4d73-a70a-65ff3262c15b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa0adf2d-4c97-44a5-8752-466e789a8afa))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0f9b69a5-f7cb-4523-8bf0-37b7d1163561))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2174d4dd-52ec-4d04-8bb6-8bbdf14f24bf))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3c11a5df-aeed-4fe6-8274-da69249b99bc))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 538953e9-9712-4524-bf48-9fd177d2b991))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (pintype "passive") (tstamp 6963b0a6-2729-43ae-9267-e86d34f37831))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D8-Pad2)") (pintype "passive") (tstamp 9c90713d-22b8-4a1f-aedb-57f666dc5e18))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000060813d7b)
(at 96.3422 59.9186 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "pmi-hw-alice.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060990bb7")
(attr smd)
(fp_text reference "R7" (at -2.1844 0.127001 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)))
(tstamp 46a9e9f0-b5f8-4aa0-89c1-4c54cfe60497)
)
(fp_text value "560" (at 0 1.43 90) (layer "F.Fab")