-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathice4pi.kicad_pcb
3218 lines (3161 loc) · 222 KB
/
ice4pi.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")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(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)
(aux_axis_origin 50 49)
(grid_origin 50 49)
(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 true)
(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 0)
(scaleselection 1)
(outputdirectory "gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3.3V")
(net 3 "+5V")
(net 4 "/DIO01")
(net 5 "/DIO02")
(net 6 "/DIO04")
(net 7 "/DIO03")
(net 8 "/NRFD")
(net 9 "/NDAC")
(net 10 "/DAV")
(net 11 "/EOI")
(net 12 "/IFC")
(net 13 "/SRQ")
(net 14 "/ATN")
(net 15 "/GPIB_DIO08")
(net 16 "/GPIB_DIO07")
(net 17 "/GPIB_DIO06")
(net 18 "/GPIB_DIO05")
(net 19 "/GPIB_DIO04")
(net 20 "/GPIB_DIO03")
(net 21 "/GPIB_DIO02")
(net 22 "/GPIB_DIO01")
(net 23 "/GPIB_TE")
(net 24 "/DIO05")
(net 25 "/DIO06")
(net 26 "/DIO07")
(net 27 "/DIO08")
(net 28 "/GPIB_DC")
(net 29 "/GPIB_SRQ")
(net 30 "/GPIB_ATN")
(net 31 "/GPIB_DAV")
(net 32 "/GPIB_NRFD")
(net 33 "/GPIB_NDAC")
(net 34 "/GPIB_IFC")
(net 35 "/GPIB_REN")
(net 36 "/GPIB_PE")
(net 37 "/REN")
(net 38 "/CTRL_LED")
(net 39 "Net-(D7-Pad1)")
(net 40 "Net-(D8-Pad1)")
(net 41 "unconnected-(J2-Pad3)")
(net 42 "unconnected-(J2-Pad5)")
(net 43 "unconnected-(J2-Pad8)")
(net 44 "unconnected-(J2-Pad10)")
(net 45 "unconnected-(J2-Pad11)")
(net 46 "unconnected-(J2-Pad27)")
(net 47 "/GPIB_EOI")
(net 48 "unconnected-(J2-Pad28)")
(net 49 "unconnected-(J2-Pad40)")
(footprint "ice4pi:mount_hole" locked (layer "F.Cu")
(tedit 55217C7B) (tstamp 00000000-0000-0000-0000-00005c471d7e)
(at 53.5 52.5)
(descr "Mounting hole, 2,7mm")
(attr through_hole)
(fp_text reference "" (at 0 -4.0005) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f)
)
(fp_text value "" (at 0.09906 3.59918) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f)
)
(fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c))
(fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
(fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 701e1517-e8cf-46f4-b538-98e721c97380))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 235067e2-1686-40fe-a9a0-61704311b2b1))
(fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 31f91ec8-56e4-4e08-9ccd-012652772211))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
(solder_mask_margin 1.725) (clearance 1.725) (tstamp be41ac9e-b8ba-4089-983b-b84269707f1c))
)
(footprint "ice4pi:mount_hole" locked (layer "F.Cu")
(tedit 55217C7B) (tstamp 00000000-0000-0000-0000-000061f3d36a)
(at 53.5 101.5)
(descr "Mounting hole, 2,7mm")
(attr through_hole)
(fp_text reference "" (at 0 -4.0005) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0cd3439-276c-41ba-b38d-f84f6da38415)
)
(fp_text value "" (at 0.09906 3.59918) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b854a395-bfc6-4140-9640-75d4f9296771)
)
(fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0))
(fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0))
(fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
(fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
(solder_mask_margin 1.725) (clearance 1.725) (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4))
)
(footprint "ice4pi:mount_hole" locked (layer "F.Cu")
(tedit 55217C7B) (tstamp 00000000-0000-0000-0000-000061f3d769)
(at 111.5 101.5)
(descr "Mounting hole, 2,7mm")
(attr through_hole)
(fp_text reference "" (at 0 -4.0005) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5e5220d-5b7e-47da-a902-b997ec8d4d58)
)
(fp_text value "" (at 0.09906 3.59918) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
)
(fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b))
(fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp eac8d865-0226-4958-b547-6b5592f39713))
(fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp f2480d0c-9b08-4037-9175-b2369af04d4c))
(fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b))
(fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp f345e52a-8e0a-425a-b438-90809dd3b799))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
(solder_mask_margin 1.725) (clearance 1.725) (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
)
(footprint "Package_DIP:DIP-20_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000061f55d75)
(at 57 91.5 90)
(descr "20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061f46c2e")
(attr smd)
(fp_text reference "U6" (at 3.81 -2.1 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)
)
(fp_text value "SN75160BN" (at 3.81 25.19 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1535036-5d36-405f-bb86-3819621c4f23)
)
(fp_text user "${REFERENCE}" (at 3.81 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)
)
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(fp_line (start 6.46 24.19) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(fp_line (start 1.16 -1.33) (end 1.16 24.19) (layer "F.SilkS") (width 0.12) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(fp_line (start 1.16 24.19) (end 6.46 24.19) (layer "F.SilkS") (width 0.12) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(fp_line (start -1.1 -1.55) (end -1.1 24.4) (layer "F.CrtYd") (width 0.05) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start 8.7 24.4) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(fp_line (start -1.1 24.4) (end 8.7 24.4) (layer "F.CrtYd") (width 0.05) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(fp_line (start 6.985 -1.27) (end 6.985 24.13) (layer "F.Fab") (width 0.1) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(fp_line (start 6.985 24.13) (end 0.635 24.13) (layer "F.Fab") (width 0.1) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(fp_line (start 0.635 24.13) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/GPIB_TE") (pinfunction "TE") (pintype "input") (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/DIO01") (pinfunction "B1") (pintype "bidirectional") (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/DIO02") (pinfunction "B2") (pintype "bidirectional") (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/DIO03") (pinfunction "B3") (pintype "bidirectional") (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/DIO04") (pinfunction "B4") (pintype "bidirectional") (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/DIO05") (pinfunction "B5") (pintype "bidirectional") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/DIO06") (pinfunction "B6") (pintype "bidirectional") (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DIO07") (pinfunction "B7") (pintype "bidirectional") (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/DIO08") (pinfunction "B8") (pintype "bidirectional") (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(pad "11" thru_hole oval locked (at 7.62 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/GPIB_PE") (pinfunction "~{PE}") (pintype "input") (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(pad "12" thru_hole oval locked (at 7.62 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/GPIB_DIO08") (pinfunction "D8") (pintype "bidirectional") (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(pad "13" thru_hole oval locked (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/GPIB_DIO07") (pinfunction "D7") (pintype "bidirectional") (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(pad "14" thru_hole oval locked (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/GPIB_DIO06") (pinfunction "D6") (pintype "bidirectional") (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(pad "15" thru_hole oval locked (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/GPIB_DIO05") (pinfunction "D5") (pintype "bidirectional") (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(pad "16" thru_hole oval locked (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/GPIB_DIO04") (pinfunction "D4") (pintype "bidirectional") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(pad "17" thru_hole oval locked (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/GPIB_DIO03") (pinfunction "D3") (pintype "bidirectional") (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(pad "18" thru_hole oval locked (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/GPIB_DIO02") (pinfunction "D2") (pintype "bidirectional") (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(pad "19" thru_hole oval locked (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/GPIB_DIO01") (pinfunction "D1") (pintype "bidirectional") (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(pad "20" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(model "${KISYS3DMOD}/Package_DIP.3dshapes/DIP-20_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-20_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000061f55d9d)
(at 86.21 91.5 90)
(descr "20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061f5ba6c")
(attr smd)
(fp_text reference "U7" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966)
)
(fp_text value "SN75161BN" (at 3.81 25.19 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef)
)
(fp_text user "${REFERENCE}" (at 3.81 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f)
)
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(fp_line (start 1.16 -1.33) (end 1.16 24.19) (layer "F.SilkS") (width 0.12) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(fp_line (start 1.16 24.19) (end 6.46 24.19) (layer "F.SilkS") (width 0.12) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(fp_line (start 6.46 24.19) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start 8.7 24.4) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 128e34ce-eee7-477d-b905-a493e98db783))
(fp_line (start -1.1 -1.55) (end -1.1 24.4) (layer "F.CrtYd") (width 0.05) (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(fp_line (start -1.1 24.4) (end 8.7 24.4) (layer "F.CrtYd") (width 0.05) (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(fp_line (start 6.985 24.13) (end 0.635 24.13) (layer "F.Fab") (width 0.1) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start 0.635 24.13) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(fp_line (start 6.985 -1.27) (end 6.985 24.13) (layer "F.Fab") (width 0.1) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/GPIB_TE") (pinfunction "TE") (pintype "input") (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/REN") (pinfunction "REN") (pintype "tri_state") (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/IFC") (pinfunction "IFC") (pintype "tri_state") (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/NDAC") (pinfunction "NDAC") (pintype "tri_state") (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/NRFD") (pinfunction "NRFD") (pintype "tri_state") (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/DAV") (pinfunction "DAV") (pintype "tri_state") (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/EOI") (pinfunction "EOI") (pintype "tri_state") (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/ATN") (pinfunction "ATN") (pintype "tri_state") (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/SRQ") (pinfunction "SRQ") (pintype "tri_state") (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(pad "11" thru_hole oval locked (at 7.62 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/GPIB_DC") (pinfunction "DC") (pintype "input") (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(pad "12" thru_hole oval locked (at 7.62 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/GPIB_SRQ") (pinfunction "SRQ") (pintype "bidirectional") (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(pad "13" thru_hole oval locked (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/GPIB_ATN") (pinfunction "ATN") (pintype "bidirectional") (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(pad "14" thru_hole oval locked (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/GPIB_EOI") (pinfunction "EOI") (pintype "bidirectional") (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(pad "15" thru_hole oval locked (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/GPIB_DAV") (pinfunction "DAV") (pintype "bidirectional") (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
(pad "16" thru_hole oval locked (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "/GPIB_NRFD") (pinfunction "NRFD") (pintype "bidirectional") (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(pad "17" thru_hole oval locked (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/GPIB_NDAC") (pinfunction "NDAC") (pintype "bidirectional") (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(pad "18" thru_hole oval locked (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/GPIB_IFC") (pinfunction "IFC") (pintype "bidirectional") (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(pad "19" thru_hole oval locked (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/GPIB_REN") (pinfunction "REN") (pintype "bidirectional") (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(pad "20" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(model "${KISYS3DMOD}/Package_DIP.3dshapes/DIP-20_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ice4pi:centronix-24-male" (layer "F.Cu")
(tedit 61FB0AC7) (tstamp 00000000-0000-0000-0000-000061f5de5b)
(at 124 77 90)
(descr "24-pin Centronix male (GPIB)")
(tags "GPIB")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061f4603b")
(attr smd)
(fp_text reference "J3" (at 16.62 -2.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
)
(fp_text value "Conn_02x12_Top_Bottom" (at 0 12.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c04618d-9115-4179-b234-a8faf854ea92)
)
(fp_line (start -12.25 -4.00265) (end -12.5 -4.435663) (layer "F.SilkS") (width 0.12) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(fp_line (start -12.5 -4.435663) (end -12 -4.435663) (layer "F.SilkS") (width 0.12) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(fp_line (start -12 -4.435663) (end -12.25 -4.00265) (layer "F.SilkS") (width 0.12) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(fp_line (start -27.35 10.7) (end 27.35 10.7) (layer "F.SilkS") (width 0.12) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(fp_line (start -27.35 -4.4) (end 27.35 -4.4) (layer "F.SilkS") (width 0.12) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "0" thru_hole circle locked (at 23.4 0 90) (size 4 4) (drill 3.1) (layers *.Cu *.Mask) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
(pad "0" thru_hole circle locked (at -23.4 0 90) (size 4 4) (drill 3.1) (layers *.Cu *.Mask) (tstamp e5203297-b913-4288-a576-12a92185cb52))
(pad "1" thru_hole circle locked (at -11.88 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 4 "/DIO01") (pinfunction "Pin_1") (pintype "passive") (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(pad "2" thru_hole circle locked (at -9.72 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 5 "/DIO02") (pinfunction "Pin_2") (pintype "passive") (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(pad "3" thru_hole circle locked (at -7.56 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "/DIO03") (pinfunction "Pin_3") (pintype "passive") (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(pad "4" thru_hole circle locked (at -5.4 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 6 "/DIO04") (pinfunction "Pin_4") (pintype "passive") (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(pad "5" thru_hole circle locked (at -3.24 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 11 "/EOI") (pinfunction "Pin_5") (pintype "passive") (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b))
(pad "6" thru_hole circle locked (at -1.08 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 10 "/DAV") (pinfunction "Pin_6") (pintype "passive") (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
(pad "7" thru_hole circle locked (at 1.08 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "/NRFD") (pinfunction "Pin_7") (pintype "passive") (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
(pad "8" thru_hole circle locked (at 3.24 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 9 "/NDAC") (pinfunction "Pin_8") (pintype "passive") (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
(pad "9" thru_hole circle locked (at 5.4 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 12 "/IFC") (pinfunction "Pin_9") (pintype "passive") (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb))
(pad "10" thru_hole circle locked (at 7.56 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 13 "/SRQ") (pinfunction "Pin_10") (pintype "passive") (tstamp f7667b23-296e-4362-a7e3-949632c8954b))
(pad "11" thru_hole circle locked (at 9.72 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 14 "/ATN") (pinfunction "Pin_11") (pintype "passive") (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120))
(pad "12" thru_hole circle locked (at 11.88 -2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
(pad "13" thru_hole circle locked (at -11.88 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 24 "/DIO05") (pinfunction "Pin_13") (pintype "passive") (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
(pad "14" thru_hole circle locked (at -9.72 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 25 "/DIO06") (pinfunction "Pin_14") (pintype "passive") (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(pad "15" thru_hole circle locked (at -7.56 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 26 "/DIO07") (pinfunction "Pin_15") (pintype "passive") (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
(pad "16" thru_hole circle locked (at -5.4 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 27 "/DIO08") (pinfunction "Pin_16") (pintype "passive") (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(pad "17" thru_hole circle locked (at -3.24 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 37 "/REN") (pinfunction "Pin_17") (pintype "passive") (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
(pad "18" thru_hole circle locked (at -1.08 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_18") (pintype "passive") (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(pad "19" thru_hole circle locked (at 1.08 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_19") (pintype "passive") (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(pad "20" thru_hole circle locked (at 3.24 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_20") (pintype "passive") (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(pad "21" thru_hole circle locked (at 5.4 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_21") (pintype "passive") (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
(pad "22" thru_hole circle locked (at 7.56 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_22") (pintype "passive") (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
(pad "23" thru_hole circle locked (at 9.72 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_23") (pintype "passive") (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
(pad "24" thru_hole circle locked (at 11.88 2.145 90) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_24") (pintype "passive") (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
(model "${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm.wrl"
(offset (xyz -16.5 2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000061f8ff09)
(at 51.1 85.05 -90)
(descr "Resistor SMD 0402 (1005 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 "PN" "ERJ-2GEJ102X ")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061fb76b5")
(attr smd)
(fp_text reference "R3" (at 1.85 -0.1 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a)
)
(fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(D7-Pad1)") (pintype "passive") (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000061f911a7)
(at 54.5 84.5 -90)
(descr "Capacitor SMD 0402 (1005 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 "capacitor")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062178b3e")
(attr smd)
(fp_text reference "C33" (at -2.4 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
)
(fp_text value "220 nF" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00e38d63-5436-49db-81f5-697421f168fc)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b6cd701f-4223-4e72-a305-466869ccb250)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp e7e08b48-3d04-49da-8349-6de530a20c67))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp af347946-e3da-4427-87ab-77b747929f50))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000061f911b6)
(at 83.71 84.5 -90)
(descr "Capacitor SMD 0402 (1005 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 "capacitor")
(property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062178d2f")
(attr smd)
(fp_text reference "C34" (at -2.4 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(fp_text value "220 nF" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fcec304-c6b1-4655-8326-beacd0476953)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7036) (tstamp 00000000-0000-0000-0000-000061f936d4)
(at 58.31 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062281311")
(attr smd)
(fp_text reference "R111" (at -0.75 -1.17 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 479331ff-c540-41f4-84e6-b48d65171e59)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc15f583-a41b-43af-ba94-a75455506a96)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/DIO01") (pintype "passive") (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7041) (tstamp 00000000-0000-0000-0000-000061f936e3)
(at 60.85 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623757a5")
(attr smd)
(fp_text reference "R112" (at -0.75 -1.15 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 45884597-7014-4461-83ee-9975c42b9a53))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/DIO02") (pintype "passive") (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7075) (tstamp 00000000-0000-0000-0000-000061f93701)
(at 65.89 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623a185d")
(attr smd)
(fp_text reference "R114" (at -0.75 -1.11 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e091e263-c616-48ef-a460-465c70218987))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/DIO04") (pintype "passive") (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7087) (tstamp 00000000-0000-0000-0000-000061f93710)
(at 68.43 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623b78c8")
(attr smd)
(fp_text reference "R115" (at -0.75 -1.07 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f959907b-1cef-4760-b043-4260a660a2ae)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/DIO05") (pintype "passive") (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD70CC) (tstamp 00000000-0000-0000-0000-000061f9371f)
(at 70.97 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623cd92d")
(attr smd)
(fp_text reference "R116" (at -0.75 -1.03 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/DIO06") (pintype "passive") (tstamp 96de0051-7945-413a-9219-1ab367546962))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD70F2) (tstamp 00000000-0000-0000-0000-000061f9372e)
(at 73.51 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623e3990")
(attr smd)
(fp_text reference "R117" (at -0.75 -0.99 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 011ee658-718d-416a-85fd-961729cd1ee5)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d76d925-f900-42af-a03f-bb32d2381b09)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 593b8647-0095-46cc-ba23-3cf2a86edb5e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4e27930e-1827-4788-aa6b-487321d46602))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 60aa0ce8-9d0e-48ca-bbf9-866403979e9b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8cd050d6-228c-4da0-9533-b4f8d14cfb34))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bde95c06-433a-4c03-bc48-e3abcdb4e054))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/DIO07") (pintype "passive") (tstamp a5be2cb8-c68d-4180-8412-69a6b4c5b1d4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD710D) (tstamp 00000000-0000-0000-0000-000061f9373d)
(at 76.05 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000623f99f9")
(attr smd)
(fp_text reference "R118" (at -0.75 -0.95 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b287f145-851e-45cc-b200-e62677b551d5)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c25449d6-d734-4953-b762-98f82a830248)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9286cf02-1563-41d2-9931-c192c33bab31))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cebb9021-66d3-4116-98d4-5e6f3c1552be))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d1eca865-05c5-48a4-96cf-ed5f8a640e25))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 63c56ea4-91a3-4172-b9de-a4388cc8f894))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 66bc2bca-dab7-4947-a0ff-403cdaf9fb89))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9b6bb172-1ac4-440a-ac75-c1917d9d59c7))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/DIO08") (pintype "passive") (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD704D) (tstamp 00000000-0000-0000-0000-000061f9a699)
(at 63.35 94.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006238b800")
(attr smd)
(fp_text reference "R113" (at -0.75 -1.15 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 79770cd5-32d7-429a-8248-0d9e6212231a)
)
(fp_text value "3.3K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 98914cc3-56fe-40bb-820a-3d157225c145)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/DIO03") (pintype "passive") (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD702C) (tstamp 00000000-0000-0000-0000-000061f9fdd7)
(at 58.27 96.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006243d8de")
(attr smd)
(fp_text reference "R121" (at 0.25 -1.23 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33)
)
(fp_text value "6.2K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6513181c-0a6a-4560-9a18-17450c36ae2a)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8b290a17-6328-4178-9131-29524d345539))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3e0392c0-affc-4114-9de5-1f1cfe79418a))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 66218487-e316-4467-9eba-79d4626ab24e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp cf815d51-c956-4c5a-adde-c373cb025b07))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp dca1d7db-c913-4d73-a2cc-fdc9651eda69))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/DIO01") (pintype "passive") (tstamp f357ddb5-3f44-43b0-b00d-d64f5c62ba4a))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 12a24e86-2c38-4685-bba9-fff8dddb4cb0))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7059) (tstamp 00000000-0000-0000-0000-000061f9fde6)
(at 60.81 96.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062455676")
(attr smd)
(fp_text reference "R122" (at 0.25 -1.19 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d)
)
(fp_text value "6.2K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp da6f4122-0ecc-496f-b0fd-e4abef534976))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 626679e8-6101-4722-ac57-5b8d9dab4c8b))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9f782c92-a5e8-49db-bfda-752b35522ce4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b7bf6e08-7978-4190-aff5-c90d967f0f9c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ccc4cc25-ac17-45ef-825c-e079951ffb21))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/DIO02") (pintype "passive") (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 691af561-538d-4e8f-a916-26cad45eb7d6))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7064) (tstamp 00000000-0000-0000-0000-000061f9fdf5)
(at 63.35 96.5 -90)
(descr "Resistor SMD 0402 (1005 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" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006246c8ed")
(attr smd)
(fp_text reference "R123" (at 0.25 -1.15 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db)
)
(fp_text value "6.2K" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6325c32f-c82a-4357-b022-f9c7e76f412e)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 501880c3-8633-456f-9add-0e8fa1932ba6)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6afc19cf-38b4-47a3-bc2b-445b18724310))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 84d296ba-3d39-4264-ad19-947f90c54396))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a90361cd-254c-4d27-ae1f-9a6c85bafe28))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 91fe070a-a49b-4bc5-805a-42f23e10d114))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d01102e9-b170-4eb1-a0a4-9a31feb850b7))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fe14c012-3d58-4e5e-9a37-4b9765a7f764))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/DIO03") (pintype "passive") (tstamp 7a879184-fad8-4feb-afb5-86fe8d34f1f7))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c454102f-dc92-4550-9492-797fc8e6b49c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 61FD7080) (tstamp 00000000-0000-0000-0000-000061f9fe04)
(at 65.89 96.5 -90)