-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pi400VT100.kicad_pcb
9382 lines (9349 loc) · 388 KB
/
Pi400VT100.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)
(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.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 "Net-(C1-Pad1)")
(net 2 "Net-(C1-Pad2)")
(net 3 "+3V3")
(net 4 "GND")
(net 5 "Net-(C3-Pad2)")
(net 6 "Net-(C4-Pad2)")
(net 7 "Net-(C4-Pad1)")
(net 8 "Net-(C5-Pad2)")
(net 9 "unconnected-(J1-Pad4)")
(net 10 "/VGAV")
(net 11 "/VGAH")
(net 12 "unconnected-(J1-Pad9)")
(net 13 "unconnected-(J1-Pad11)")
(net 14 "unconnected-(J1-Pad12)")
(net 15 "unconnected-(J1-Pad15)")
(net 16 "/VGAR")
(net 17 "/VGAG")
(net 18 "/VGAB")
(net 19 "unconnected-(J2-Pad2)")
(net 20 "unconnected-(J2-Pad4)")
(net 21 "/R6")
(net 22 "/G4")
(net 23 "/G7")
(net 24 "/RXD5")
(net 25 "/TXD5")
(net 26 "unconnected-(J2-Pad7)")
(net 27 "unconnected-(J2-Pad15)")
(net 28 "/ID_C")
(net 29 "/ID_D")
(net 30 "unconnected-(J2-Pad16)")
(net 31 "/B4")
(net 32 "/B7")
(net 33 "/R5")
(net 34 "/B5")
(net 35 "/B6")
(net 36 "/R4")
(net 37 "unconnected-(J2-Pad17)")
(net 38 "unconnected-(J2-Pad20)")
(net 39 "/R7")
(net 40 "/G6")
(net 41 "/G5")
(net 42 "/RTS5")
(net 43 "/CTS5")
(net 44 "unconnected-(J2-Pad26)")
(net 45 "/H")
(net 46 "/V")
(net 47 "unconnected-(J2-Pad29)")
(net 48 "/RXD")
(net 49 "/TXD")
(net 50 "unconnected-(J2-Pad31)")
(net 51 "unconnected-(J2-Pad34)")
(net 52 "/CTS")
(net 53 "/RTS")
(net 54 "unconnected-(J2-Pad38)")
(net 55 "unconnected-(J2-Pad40)")
(net 56 "unconnected-(J3-Pad1)")
(net 57 "unconnected-(J3-Pad4)")
(net 58 "unconnected-(J3-Pad6)")
(net 59 "unconnected-(J3-Pad9)")
(footprint "Capacitors_SMD:C_0805" (layer "F.Cu")
(tedit 58AA8463) (tstamp 00000000-0000-0000-0000-00005fa73d0d)
(at 168.25 78.75 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa8484c")
(attr smd)
(fp_text reference "C1" (at 0 -0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e3d105c-3308-491c-a0aa-594e6247a479)
)
(fp_text value "100n" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5821604d-5ceb-420a-b7e4-ba8f3233a4b7)
)
(fp_text user "${REFERENCE}" (at 0 -0.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 80cc6be9-668a-4344-9b65-0659b9071698))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 45d251bd-4b8c-43e0-a1a3-865b3e4a5a83))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 7924cdcb-45b3-439a-a58e-4e78f2ff9e7a))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp cc268aca-4ea7-4c71-a771-346b177957a8))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp d0da5fea-7bb8-466a-808d-a285a956d318))
(pad "1" smd rect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 4b325ae5-e73e-4571-bbb6-af750e7a58b8))
(pad "2" smd rect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp 8e99653b-c67d-4ba5-a650-293257580275))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitors_SMD:C_0805" (layer "F.Cu")
(tedit 58AA8463) (tstamp 00000000-0000-0000-0000-00005fa73d1e)
(at 150 78.75)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa98b38")
(attr smd)
(fp_text reference "C2" (at -0.2 -0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20a43104-38cb-4a67-8590-5917234169dc)
)
(fp_text value "100n" (at -4.2 -0.15) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa18dae7-2fb1-4387-a3c1-308ca16c5c1d)
)
(fp_text user "${REFERENCE}" (at -0.2 0.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 494350ab-d17d-4de3-8b96-f15451154d6a))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 51153875-01b9-46f2-8b14-6306c8586588))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 38f1f681-d503-49fe-ab87-4225bebb7b32))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 622fea85-fc3a-49dd-a4af-3bfd36c6693d))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp ae113a97-dd90-42bf-96ea-bb92e7431ac6))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 70b4eaa4-61ff-4379-b06d-623ca05164b1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp aaf14fa5-bc5e-4b91-b0fb-212df5ce1861))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp adda719e-cc0a-4a85-b429-67f8b39774f5))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp e1e9dd9e-df2b-4b75-b02e-38146938802b))
(pad "1" smd rect locked (at -1 0) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pintype "passive") (tstamp 279cd597-6735-4af4-af86-33cfd2693447))
(pad "2" smd rect locked (at 1 0) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pintype "passive") (tstamp 2e955124-6939-410c-81be-086896fd0cd7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitors_SMD:C_0805" (layer "F.Cu")
(tedit 58AA8463) (tstamp 00000000-0000-0000-0000-00005fa73d2f)
(at 168.25 84 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa85837")
(attr smd)
(fp_text reference "C3" (at 0.15 -0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8be39d5-6d33-44d1-b22d-658056cfaa92)
)
(fp_text value "100n" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 899f4c1a-985b-472e-a9b0-465d356ef34c)
)
(fp_text user "${REFERENCE}" (at 0.05 -0.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 578b9c3f-045a-4830-a037-9fe8cd94bc66)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 2498638f-f5bc-47e0-a9d3-49191018a41a))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 5199ad7b-ab84-4971-9df3-53270a0a37ba))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 0fe1f74e-4cc8-412d-b8bc-832159a1ad3e))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 6fc49b93-842f-4814-8ca6-1e11c16fa8fa))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 97db2584-9d07-47ab-a55c-f2cbce602789))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp d2d5f057-3d3f-4824-ba53-bea972f61938))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 2223eeb5-aa83-44a0-a53a-f71aacabab9c))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 2f1a67f5-44b6-4eb7-b122-776c3e081dbc))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp ce1420d2-2748-4ed6-89ac-721f9b8252dd))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp f35f3ca6-627a-459d-ac6f-93bc55931ba4))
(pad "1" smd rect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pintype "passive") (tstamp 7915db52-1f07-44c7-b796-c7fc1aca7b67))
(pad "2" smd rect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C3-Pad2)") (pintype "passive") (tstamp cad3b6e3-3bb4-4763-abef-63fde40972bf))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitors_SMD:C_0805" (layer "F.Cu")
(tedit 58AA8463) (tstamp 00000000-0000-0000-0000-00005fa73d40)
(at 164.25 78.75 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa83d7d")
(attr smd)
(fp_text reference "C4" (at 0.15 -0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6765903-bc36-44e7-9cb8-22f731f64003)
)
(fp_text value "100n" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19b27451-36d1-4db8-a770-a2f4704d803b)
)
(fp_text user "${REFERENCE}" (at 0.15 -0.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ea989fb-9cda-4210-89d1-fe153727e40c)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp c256589d-83d1-4f06-a2eb-b3eee59a3f04))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp cf7be387-da08-4d97-a3e9-4ac4123d2c0a))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 4e647fa9-4baf-493a-891e-373b7bb90db1))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 6eaf44a5-2bb8-4e84-ae85-e082a57042dd))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp b9f78253-7769-4896-9d90-a085649a16bc))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp ea6915c8-6017-425c-9a4e-41c153c8dabe))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 3a04ac0e-2ee8-4210-b45b-490cd2425450))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 61e76907-90d9-4f86-b582-ad651e60aa0c))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp a2c9cbc7-7eac-476f-b409-1772289f1cc4))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp b48e1e47-217a-4f46-9867-a25c61e99a99))
(pad "1" smd rect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(C4-Pad1)") (pintype "passive") (tstamp c0eb397c-0f0a-48f2-a4a7-a39c38857565))
(pad "2" smd rect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(C4-Pad2)") (pintype "passive") (tstamp f64aa569-ea55-4736-9c96-3bfc2b30ccbd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitors_SMD:C_0805" (layer "F.Cu")
(tedit 58AA8463) (tstamp 00000000-0000-0000-0000-00005fa73d51)
(at 168.25 82.25 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa864b2")
(attr smd)
(fp_text reference "C5" (at 0.15 -0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d4ec9d6-b4f1-4935-a655-c469bc01feb9)
)
(fp_text value "100n" (at 0 1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62faf466-a5e1-4997-954a-e3f3f47e0a99)
)
(fp_text user "${REFERENCE}" (at 0.15 -0.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5939629d-2bb5-4863-83b9-27abfaf3eac4)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 407396c7-a5e2-4ecf-b616-5f9c7dafa52b))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp e873deca-9d09-405a-95a4-80d6995b5991))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 206ace7c-6dae-4c64-b30f-758119e57387))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 64272f01-95d4-4c13-ba7c-3f30a36f0035))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 791f08b2-190f-425b-84e1-3aec99a46611))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 7afec855-ed33-4dd1-8a74-3d2203c81740))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 31e8e591-b069-4d14-81fb-1e93e03fe645))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 564f1f04-6ff3-46a0-97e8-50ef7acc139d))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 58b8f6af-04ea-4eb0-addd-d814725f2fe4))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 633a5fce-b259-449f-9fbe-80229fc70017))
(pad "1" smd rect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pintype "passive") (tstamp 814df96b-3bb6-4126-aa8c-e8b33dded25a))
(pad "2" smd rect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(C5-Pad2)") (pintype "passive") (tstamp 34937f78-0cd7-450b-8935-ad6822032278))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "_LaurentPerso:DB_15F-VGA" (layer "F.Cu")
(tedit 5C521F11) (tstamp 00000000-0000-0000-0000-00005fa73d8e)
(at 129 65.5 180)
(descr "D-SUB 15 pin VGA socket, Tyco P/N 440467-1")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059848d1d")
(attr through_hole)
(fp_text reference "J1" (at 7.3 -6.9) (layer "F.SilkS")
(effects (font (size 1.524 1.524) (thickness 0.2)))
(tstamp bc35943f-a590-4110-881f-43b94dc3ef60)
)
(fp_text value "VGA" (at -6.9 -5.2) (layer "F.SilkS")
(effects (font (size 1.524 1.524) (thickness 0.2)))
(tstamp 6388b06e-af5c-405f-b16c-ee4225810f35)
)
(fp_line (start 14.097 -3.713) (end 14.859 -2.316) (layer "F.SilkS") (width 0.2) (tstamp 0862a9b0-7459-4a5b-8ff5-5feddf0d18fe))
(fp_line (start 11.43 -4.475) (end 13.716 -4.475) (layer "F.SilkS") (width 0.2) (tstamp 0bedad37-3e3c-4266-b4c1-07c7e3d0463e))
(fp_line (start -10.16 -2.062) (end -10.16 -2.316) (layer "F.SilkS") (width 0.2) (tstamp 146b4319-9474-44ef-b1d5-69dbae1dd3b4))
(fp_line (start -11.43 -4.475) (end -11.43 -1.935) (layer "F.SilkS") (width 0.2) (tstamp 239e2fad-43c2-4c5d-b01d-958b74c9d73b))
(fp_line (start 10.922 -3.713) (end 10.287 -2.316) (layer "F.SilkS") (width 0.2) (tstamp 2c73e00f-5d35-4d88-becf-fdafa0c411c7))
(fp_line (start 11.43 -1.935) (end 11.43 -4.475) (layer "F.SilkS") (width 0.2) (tstamp 39e0f00a-b805-421f-8ed9-5c24ef6aaebe))
(fp_line (start 10.287 -2.062) (end 14.859 -2.062) (layer "F.SilkS") (width 0.2) (tstamp 3db2b854-567f-4631-b764-bc8442698c9a))
(fp_line (start 13.716 -4.475) (end 13.716 -1.935) (layer "F.SilkS") (width 0.2) (tstamp 45108c5b-3874-4f53-b99e-7b06655c64f6))
(fp_line (start -10.922 -3.713) (end -10.16 -2.316) (layer "F.SilkS") (width 0.2) (tstamp 4669b17e-5fae-4b5d-94be-7208bcd71fb5))
(fp_line (start -15.494 -0.03) (end -15.494 -8.412) (layer "F.SilkS") (width 0.2) (tstamp 5a8f98be-3861-4e9a-bd06-b6217ad585d8))
(fp_line (start -14.097 -3.713) (end -10.922 -3.713) (layer "F.SilkS") (width 0.2) (tstamp 6cd7c58d-b03d-4db3-ab50-a7d7e7c1e928))
(fp_line (start -15.494 -1.935) (end 15.494 -1.935) (layer "F.SilkS") (width 0.2) (tstamp 72941de6-4056-41a3-be67-7819992eeaa3))
(fp_line (start -14.986 -2.316) (end -14.986 -2.062) (layer "F.SilkS") (width 0.2) (tstamp 75640a86-c7da-4929-8b77-923b3c6bee6b))
(fp_line (start -14.986 -2.062) (end -10.16 -2.062) (layer "F.SilkS") (width 0.2) (tstamp 7ff53ce7-3b96-4229-89d1-8f8a87153527))
(fp_line (start -15.494 -0.03) (end 15.494 -0.03) (layer "F.SilkS") (width 0.2) (tstamp 88070912-713c-4330-af62-557ab402d00d))
(fp_line (start -13.716 -1.935) (end -13.716 -4.475) (layer "F.SilkS") (width 0.2) (tstamp 8e9472d5-2e62-43cd-b888-fa5c05783852))
(fp_line (start 9.017 -1.935) (end 9.017 -8.412) (layer "F.SilkS") (width 0.2) (tstamp a593f909-65fb-4700-bd27-abc51f135083))
(fp_line (start -14.097 -3.713) (end -14.986 -2.316) (layer "F.SilkS") (width 0.2) (tstamp a74d645f-303f-41ae-8029-4f5b19b6a1a3))
(fp_line (start 14.859 -2.316) (end 10.287 -2.316) (layer "F.SilkS") (width 0.2) (tstamp b7f2850c-f58b-4cf9-8802-41c268c3767e))
(fp_line (start -10.16 -2.316) (end -14.986 -2.316) (layer "F.SilkS") (width 0.2) (tstamp b92befd8-ceb5-44db-8e92-e20bd1c458d5))
(fp_line (start -13.716 -4.475) (end -11.43 -4.475) (layer "F.SilkS") (width 0.2) (tstamp bb2fdfc9-f8f7-4d99-a460-31e1e9e1906f))
(fp_line (start 14.859 -2.062) (end 14.859 -2.316) (layer "F.SilkS") (width 0.2) (tstamp c2c03574-5377-4324-aee9-f32dc2ee76d8))
(fp_line (start 15.494 -8.412) (end 15.494 -0.03) (layer "F.SilkS") (width 0.2) (tstamp c8e996cd-46bc-414d-bd5b-ed4d35049e19))
(fp_line (start 10.922 -3.713) (end 14.097 -3.713) (layer "F.SilkS") (width 0.2) (tstamp ca23c7b9-efd5-48e1-a126-b6d8dbdfb631))
(fp_line (start 10.287 -2.316) (end 10.287 -2.062) (layer "F.SilkS") (width 0.2) (tstamp e8530ead-dfd3-493b-9a95-dadf905bde55))
(fp_line (start 15.494 -8.412) (end -15.494 -8.412) (layer "F.SilkS") (width 0.2) (tstamp edc4c457-3ea2-4523-ae95-caa82d496aba))
(fp_line (start -9.017 -8.412) (end -9.017 -1.935) (layer "F.SilkS") (width 0.2) (tstamp fa2a5346-d622-407d-8ea5-af43140584bc))
(fp_line (start 10.033 -0.03) (end 10.033 5.812) (layer "F.Fab") (width 0.2) (tstamp 0aed48c5-a79a-4a41-bde0-89e9736637c1))
(fp_line (start -8.128 5.812) (end 8.128 5.812) (layer "F.Fab") (width 0.2) (tstamp 1292b9fb-45f9-4291-9d3e-a52497cdea91))
(fp_line (start -14.097 -0.03) (end -14.097 5.812) (layer "F.Fab") (width 0.2) (tstamp 1a15fd52-148b-4d62-9349-832a33a996d2))
(fp_line (start 11.049 -0.03) (end 11.049 5.812) (layer "F.Fab") (width 0.2) (tstamp 21fe1bc1-d1c8-4902-93fe-7cb124f6bf69))
(fp_line (start 14.097 -0.03) (end 14.097 5.812) (layer "F.Fab") (width 0.2) (tstamp 231482ff-1119-4860-be3c-5d6a4f33d8bb))
(fp_line (start -15.113 -0.03) (end -15.113 5.812) (layer "F.Fab") (width 0.2) (tstamp 2367e08a-8f8d-4bc0-b6ce-e2a4cddd902f))
(fp_line (start -11.049 -0.03) (end -11.049 5.812) (layer "F.Fab") (width 0.2) (tstamp 38cc4717-2b78-451d-a8e8-c30858d9cd68))
(fp_line (start 8.128 5.812) (end 8.128 -0.03) (layer "F.Fab") (width 0.2) (tstamp 485ee4d3-27de-4a80-88eb-91e13dbef2a5))
(fp_line (start -8.128 -0.03) (end -8.128 5.812) (layer "F.Fab") (width 0.2) (tstamp 7ae39c29-5978-4de8-b0d8-d1c366a90b03))
(fp_line (start -15.113 5.812) (end -10.033 5.812) (layer "F.Fab") (width 0.2) (tstamp 7ddf1699-d6ad-4845-a07e-3473cde5e6f7))
(fp_line (start 10.033 5.812) (end 15.113 5.812) (layer "F.Fab") (width 0.2) (tstamp 81b5884f-0b53-4d9c-bd56-68349a70cfdc))
(fp_line (start -10.033 -0.03) (end -10.033 5.812) (layer "F.Fab") (width 0.2) (tstamp ad1c7d30-fa47-47fd-bb07-e836ca23dcc6))
(fp_line (start 15.113 5.812) (end 15.113 0.097) (layer "F.Fab") (width 0.2) (tstamp b92fa812-e3bc-485d-a2c8-52969ffa6bfa))
(pad "" thru_hole circle locked (at 12.49426 -5.06 180) (size 5.00126 5.00126) (drill oval 3.2004 1.2) (layers *.Cu *.Mask) (tstamp 42198247-7404-4437-9b4d-7a47b904f11e))
(pad "" thru_hole circle locked (at -12.49426 -5.06 180) (size 5.00126 5.00126) (drill oval 3.2004 1.2) (layers *.Cu *.Mask) (tstamp 7c2084e9-3b2e-4e85-bb04-4d1893a867c2))
(pad "1" thru_hole circle locked (at 4.31038 -7.04 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 16 "/VGAR") (pintype "passive") (tstamp 9aea78df-3dca-44b6-a4c7-387472e7d15c))
(pad "2" thru_hole circle locked (at 2.0193 -7.04 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 17 "/VGAG") (pintype "passive") (tstamp 2dc6e2fb-c613-4b10-8cd4-8c427cd8b3b9))
(pad "3" thru_hole circle locked (at -0.2667 -7.04 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 18 "/VGAB") (pintype "passive") (tstamp 68b1cfb0-f603-4a17-a333-c498c12b2e4f))
(pad "4" thru_hole circle locked (at -2.56032 -7.04 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 9 "unconnected-(J1-Pad4)") (pintype "passive+no_connect") (tstamp a92045c5-4f45-4090-af92-e196e8719e05))
(pad "5" thru_hole circle locked (at -4.84886 -7.04 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pintype "passive") (tstamp b9f7803b-2d1f-4d54-9314-0bb75d4d2a99))
(pad "6" thru_hole circle locked (at 5.45592 -5.06 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pintype "passive") (tstamp 6c1bd5d9-fec6-47a5-aae3-ae852ddca055))
(pad "7" thru_hole circle locked (at 3.16484 -5.06 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pintype "passive") (tstamp 97973004-ab59-4480-8ec1-1121dd7cf977))
(pad "8" thru_hole circle locked (at 0.87376 -5.06 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pintype "passive") (tstamp 2e4cda97-bc29-413c-9d0e-c7b888cdcecd))
(pad "9" thru_hole circle locked (at -1.41478 -5.06 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 12 "unconnected-(J1-Pad9)") (pintype "passive+no_connect") (tstamp 327c7a09-4eab-4720-836f-192dc5a1409c))
(pad "10" thru_hole circle locked (at -3.70586 -5.06 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pintype "passive") (tstamp 980b19d6-0b6e-4e93-8693-7a08045bf388))
(pad "11" thru_hole circle locked (at 4.31038 -3.08 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 13 "unconnected-(J1-Pad11)") (pintype "passive+no_connect") (tstamp ca099dbc-569b-4f41-bf2b-7fd5a230ebfd))
(pad "12" thru_hole circle locked (at 2.0193 -3.08 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 14 "unconnected-(J1-Pad12)") (pintype "passive+no_connect") (tstamp 7b52fe8c-70c2-40ad-a3fc-6605c636d0aa))
(pad "13" thru_hole circle locked (at -0.26924 -3.08 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 11 "/VGAH") (pintype "passive") (tstamp 02c7928f-d09e-4c42-87ef-b558687617a0))
(pad "14" thru_hole circle locked (at -2.56032 -3.08 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 10 "/VGAV") (pintype "passive") (tstamp 4373f5d0-1e9d-489b-aa26-9288beeb8cb3))
(pad "15" thru_hole circle locked (at -4.84886 -3.08 180) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 15 "unconnected-(J1-Pad15)") (pintype "passive+no_connect") (tstamp c1081fbd-567b-4a0a-902e-d6bb89cf65dc))
(model "D:/ELECTRONIQUE/Kicad/library/3d/conn_pc/db_15-vga.wrl"
(offset (xyz 0 1.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "_LaurentPerso:DB9MC" (layer "F.Cu")
(tedit 5984B11E) (tstamp 00000000-0000-0000-0000-00005fa73de1)
(at 163 74.75)
(descr "Connecteur DB9 male couche")
(tags "CONN DB9")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fafe879")
(attr through_hole)
(fp_text reference "J3" (at -10.16 -7.62) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e78f283-2134-461a-8a09-0c78a77896f2)
)
(fp_text value "DB9_Male" (at -10.16 -5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a27f7727-7dd2-4cb4-a780-123706d8c0c2)
)
(fp_line (start -15.45 -9.2) (end -15.45 2.84) (layer "F.SilkS") (width 0.12) (tstamp 68881549-1588-438c-abf8-f6f2c2b6b5a2))
(fp_line (start 15.45 -9.2) (end 15.45 2.84) (layer "F.SilkS") (width 0.12) (tstamp 922bae2e-bcad-4760-a906-21dea416b5dc))
(fp_line (start -15.45 -9.2) (end 15.45 -9.2) (layer "F.SilkS") (width 0.12) (tstamp af881887-5cc6-4605-8c4c-7bf922a8bf80))
(fp_line (start 15.45 2.84) (end -15.45 2.84) (layer "F.SilkS") (width 0.12) (tstamp c10b2aa5-469e-4378-b2ef-2b9b8ace50be))
(fp_line (start -8.9 -15) (end -8.9 -9.2) (layer "F.Fab") (width 0.15) (tstamp 6f8256e6-5dfc-4cdc-9d77-818253414951))
(fp_line (start 8.9 -15) (end 8.9 -9.2) (layer "F.Fab") (width 0.15) (tstamp 83058c9b-309f-4f4d-b8e7-c7c6ed97bc4b))
(fp_line (start -8.9 -15) (end 8.9 -15) (layer "F.Fab") (width 0.15) (tstamp 8e5a4010-57bc-4174-9811-569781b8c606))
(pad "" thru_hole circle locked (at 12.5 0) (size 3.81 3.81) (drill 3.05) (layers *.Cu *.Mask) (tstamp 45dc6788-a6ca-4954-b773-6fcc3cd9a485))
(pad "" thru_hole circle locked (at -12.5 0) (size 3.81 3.81) (drill 3.05) (layers *.Cu *.Mask) (tstamp ac5eb4a7-a387-48d6-b4f5-8a76d938534b))
(pad "1" thru_hole rect locked (at 5.54 1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 56 "unconnected-(J3-Pad1)") (pinfunction "1") (pintype "passive+no_connect") (tstamp 6654ac8e-8fcc-43eb-ae73-37be136e0b7d))
(pad "2" thru_hole circle locked (at 2.77 1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 48 "/RXD") (pinfunction "2") (pintype "passive") (tstamp fa95aa83-2b8d-4500-b597-eb1e65e745bd))
(pad "3" thru_hole circle locked (at 0 1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 49 "/TXD") (pinfunction "3") (pintype "passive") (tstamp e053a144-33eb-4ad0-a28f-c3ec3e6f8862))
(pad "4" thru_hole circle locked (at -2.77 1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 57 "unconnected-(J3-Pad4)") (pinfunction "4") (pintype "passive+no_connect") (tstamp eabde296-8108-4f58-988b-0a8aad10b025))
(pad "5" thru_hole circle locked (at -5.54 1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "5") (pintype "passive") (tstamp cb9df0ef-ece0-455c-bce6-7041640241fe))
(pad "6" thru_hole circle locked (at 4.155 -1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 58 "unconnected-(J3-Pad6)") (pinfunction "6") (pintype "passive+no_connect") (tstamp 7da3ae6c-1a5f-4a26-ad9b-821390937dee))
(pad "7" thru_hole circle locked (at 1.385 -1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 53 "/RTS") (pinfunction "7") (pintype "passive") (tstamp e5c3c323-3462-4dd1-b98c-36f997c5b6c0))
(pad "8" thru_hole circle locked (at -1.385 -1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 52 "/CTS") (pinfunction "8") (pintype "passive") (tstamp fa731abd-5343-4a3a-97a6-2fafda7929ea))
(pad "9" thru_hole circle locked (at -4.155 -1.42) (size 1.52 1.52) (drill 1.02) (layers *.Cu *.Mask)
(net 59 "unconnected-(J3-Pad9)") (pinfunction "9") (pintype "passive+no_connect") (tstamp c14872e9-a94b-4975-8e29-9f8e477e2679))
(model "${KICAD6_3DMODEL_DIR}/Connector_Dsub.3dshapes/DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm.step"
(offset (xyz 5.6 -1.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73df2)
(at 126 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823975")
(attr smd)
(fp_text reference "R5" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8acaf6b9-a3a5-456a-a486-3bf8ee9b4b79)
)
(fp_text value "120" (at 2.95 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66aa1bc3-ffb7-43d4-88ae-6c86417d54bc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 0b9e7ca0-9d50-423a-94c8-1dda9a2eaa73)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 2c7f194e-4495-4fdc-8feb-e71a81fd860a))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 2e1e6281-0991-4814-9e62-4e28c44fa195))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 67d86072-2f7f-4489-beb0-6ba3aea587e9))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 7e61ab51-cbb1-4b94-801a-34a87b40bc16))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 93214faa-922d-478e-8ec1-80d24a2b2723))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp f094a04e-97d3-4bf8-800d-8371147afe46))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 0f426fa1-fc2f-405a-ad53-6e830f7ee04b))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 2418aed3-fab0-4ebf-be99-31f25345da31))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 4512e1de-1ae8-4271-aab5-cfad75ab4cbf))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp baaf558e-dfc4-48a9-a946-c8fcc5540262))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "/V") (pintype "passive") (tstamp 8e10817d-5099-439b-9504-1c054cce61ce))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/VGAV") (pintype "passive") (tstamp 02bc6b3e-0522-400e-b6b8-d18c2cfd2960))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e03)
(at 127.75 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823a56")
(attr smd)
(fp_text reference "R6" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b9a1e55-d75d-425c-9459-6ce1d0c58dbe)
)
(fp_text value "120" (at 2.92 0.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 115c8e86-c44c-49a7-bc69-7044c5ce83c9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 23fd8ab2-9115-4418-91e6-98eecb4fbf95)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp bcb83b99-261c-469f-8af0-a0322b6b6b83))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp cbf52acc-7d17-4162-af1b-92c9f7574539))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 18c86c44-f8fe-4b42-a28c-0fca03224b5f))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 88437818-a1b8-44b4-bc00-e42bba625dc9))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp d5e4519a-6c2a-4312-baa7-395373ccf3bd))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp ff60da9d-fe92-4759-b91e-bcaff4d8cbf3))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 4559dd26-8d90-4217-a8b2-1adb39d7efbd))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 7dc1ce1b-568c-4602-a1cf-8ad58eddd87c))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp eee7b72b-b900-4fb7-9e9e-ffec25e17b7d))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp fa41102b-8163-4b6e-a5da-850b9aac1839))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "/H") (pintype "passive") (tstamp 5af7677d-8b5c-4dfa-a482-9a873acac0d3))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/VGAH") (pintype "passive") (tstamp 89a5c41e-d361-4706-aae5-5c9b84b69e11))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e14)
(at 150.495 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005982454b")
(attr smd)
(fp_text reference "RB4" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3398ffa0-8151-4ab9-9a1e-05a8f3e68625)
)
(fp_text value "4K" (at 2.42 0.105 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2a6f153-6152-4b4a-a95b-ba79228f774c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 2a393301-5f42-4cdb-951b-80f063c75605)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 59b84cf5-8fad-4fea-b0b7-c97376d20370))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp cb0f55e2-3db9-424f-95d5-cc3e943c6710))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 866c2804-79f0-42ad-b60b-35330f41683f))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 994fc6db-04e3-467f-a34e-4a116e6eee69))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 9e68a39c-8e96-496e-9540-23ea32b85a2c))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp b7378d4f-15e7-48c2-b38c-9dd31063481b))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 3a11d195-28e0-457d-8a65-fd02d49a1f78))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a7065f1e-dcee-43b5-a342-a4982c31c272))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f08b78e3-00cc-4545-b76f-007757fa75b3))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp f6bd7aba-1f99-4f1e-b21f-516a44b7739d))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/B4") (pintype "passive") (tstamp 1b6100b1-6db6-46ed-838f-9445ada9c264))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/VGAB") (pintype "passive") (tstamp 0ceef4c0-1081-4e21-b370-88a8d72ec333))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e25)
(at 146.7485 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000598244ff")
(attr smd)
(fp_text reference "RB5" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfcf83b1-0e49-4dd8-a896-3cd24e007c9e)
)
(fp_text value "2K" (at 2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fa594db-6fe0-4ea8-92c4-4e1c8599e0fb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 2ce8fc04-dee9-4db8-90b8-839b250529bc)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 05e5f229-ee1b-4890-b97c-8e7ece60ba60))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 9dcf989b-04cd-40f0-a8ff-a3c29c952c7a))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 37081654-8f99-4a40-95a5-cb89ab90304e))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 5a98c2c3-356a-422d-99fb-014d511f11c4))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 982b7bd6-301a-4a29-b4bb-333ee127a858))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 9be5bfd6-bb09-4bcc-b7df-07ae161053e2))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 4805cbab-da73-4d3e-afa3-21868e76e954))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 55d77ab4-691b-4b46-af02-3a8de5ec7d03))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp e2dc4785-3e17-472a-82b9-5050a49344b6))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp ee7c5229-8122-44df-afad-d951332531ee))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/B5") (pintype "passive") (tstamp 114181eb-7392-4a8c-8162-9def16899b0d))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/VGAB") (pintype "passive") (tstamp 2d57ee89-a9fd-4528-970a-f239cc711ad1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e36)
(at 144.145 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000598244b6")
(attr smd)
(fp_text reference "RB6" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0df6109b-09d2-45fb-ae96-95a5ff5e96e3)
)
(fp_text value "1K" (at 2.45 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01f8b511-43b6-4be5-9a9b-f237d246e930)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp d7bfc8f5-b2ce-497c-9380-8c2afa187a14)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 29440566-f617-45c7-8f5f-efafe2f0d24b))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 7bd5b512-af4d-43db-aa46-0fc231d1db36))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 27785605-ef8c-4fa7-8f40-8dba236a9cba))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 7cb4adc7-e689-43cd-a738-0ba18c62365e))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 97660885-3db5-4ad6-a54d-91f2fd79e84a))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp faea1312-325a-42de-ac79-3fa8abc809f3))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 4f0dfebc-e7f6-45a5-9f1e-4a46e29fdb26))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9ee7ef3c-98e3-451b-9ca1-8bc26f368a03))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp b6c83280-9de8-48fe-abf6-b38751f1f93a))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp d227fc0c-bf2f-4fed-b7fc-74a4cfce6442))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/B6") (pintype "passive") (tstamp 7087eb60-8768-46f6-a30a-c818144536a3))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/VGAB") (pintype "passive") (tstamp 137b3fef-8b87-4da9-a1e4-8bcd4c388b4b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e47)
(at 148.59 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059824445")
(attr smd)
(fp_text reference "RB7" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa9c9fa8-922d-4661-b6ba-f949438fcd13)
)
(fp_text value "499" (at 2.82 0.01 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4649f24-d20d-45cd-afcf-e14e3a6451b5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp e48c2411-8cec-4a56-a964-fc311cc46655)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 4d68bfd0-600e-4f1c-a4c7-76529ae0afbb))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 648efa99-1bab-4fd0-bb68-0877ea0a00d2))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 53ded23b-dad2-4c6d-9d77-91fa13f8ed66))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 77da69f1-4a7e-4daf-b100-27fb75871e8c))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp aed451a7-38ba-4d37-91a4-86065f3970c8))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp e70e5b60-a459-4c08-abff-54232432d8fa))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 001e2ab6-998e-46c3-b909-18e1a6eca211))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 9a685b37-4a30-4b2a-9c54-4a8e4fc58508))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp b8e9f158-11ed-47d8-aeca-b823f9f18779))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp b9601a0d-d977-4b3d-b39f-d76ae64bf1a5))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/B7") (pintype "passive") (tstamp c9549976-7e08-4d60-8899-3ba07e9939f9))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/VGAB") (pintype "passive") (tstamp 5b55646c-afd9-4127-85d7-7d899753820b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e58)
(at 163.25 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059824113")
(attr smd)
(fp_text reference "RG4" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b69731dc-a74d-4be9-8b11-0a21dad4be18)
)
(fp_text value "4K" (at 2.42 0.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d42754be-232c-4f72-91c3-410cdb7a8c00)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 7b22b3c7-87af-4c06-91e6-d5b323c7430d)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 6a208df9-979b-4538-9095-200a47936ed0))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp e904e67d-687b-4696-862e-14a432e67103))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 2923af67-92f1-438c-9cec-9c0efa70f5c2))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp c7a234a1-ffa5-48e7-99f2-0165a3be0943))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp ceb6cdcb-8e0b-4367-b390-08e19d41682c))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp efc35da1-a63a-4255-80cb-ee36b2acd693))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 3a8d75eb-08de-4bf6-ad23-f62b27a89da1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp c4358a16-7fbe-4322-9284-f64d477b6623))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp c5b352a6-6b4e-44b1-94d3-3d0f300f9efb))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f1a8edab-bf46-4526-a465-5634381ae6a3))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/G4") (pintype "passive") (tstamp ff0e0c14-7ce9-493b-9fd4-786183bf280d))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/VGAG") (pintype "passive") (tstamp c02cb16b-594f-4980-84bc-d3a41f893fe1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e69)
(at 132.715 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823f87")
(attr smd)
(fp_text reference "RG5" (at 0.05 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc35063f-3def-4196-bca4-fc65afdf4d1b)
)
(fp_text value "2K" (at 2.42 -0.015 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c1f89ce-0c30-4b40-9919-454d5a2b39e2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp bce33354-18a7-44b2-9dba-ee85e434d6ee)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 2f680110-9ea0-4f48-b5a6-990648d3cde2))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp ed792a35-5756-44dd-82cf-7918ecc06d2f))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp ae5d10fb-0c1f-487f-bf73-01918e8dbf6f))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp b28b3aad-ce7a-4d5e-8b52-2d16de7b6b1e))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp fab03173-e991-4b31-9f3e-4fd52fb45287))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp fcad587d-8ae7-4c7d-a56f-02c87f607c8d))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 4fa99099-f9f2-4dd5-ac40-ec35aef9f960))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 7a7c8fd8-e6cb-4215-acf6-72a01929c4aa))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f2578955-12d7-4c02-87e0-8a8e60f919b9))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f48f0041-ce42-4bd4-9cbf-e7a61f40b63d))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "/G5") (pintype "passive") (tstamp b36ced1f-5291-481a-8fe7-e37301bca3e6))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/VGAG") (pintype "passive") (tstamp 2ac31afe-6dde-403d-bbdc-3366c8b144f8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73e9c)
(at 142.24 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823c53")
(attr smd)
(fp_text reference "RR4" (at -0.05 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74af2b77-c1c9-4eae-bff8-96bc046b8c06)
)
(fp_text value "4K" (at 2.42 0.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d1af4b2-022f-4455-819b-78883658e880)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6cc0d10d-dc8b-4db1-81e5-cf2206998221)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 0c0e6b8f-cbf6-44d9-be38-4e8b1191ac1f))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp d8a29fd7-0b89-410f-b975-b8c97fb9c5da))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 278f19a2-5733-4692-9e34-9325919f9eaf))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 849f4f89-7de2-4aea-bdf4-77006099f5f6))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp d9e4bb90-e4df-4aae-93aa-3267aceb0fcc))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp e84fc25e-a81d-4015-bf9c-a56f90ec2647))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 572bf966-40b4-4074-84f8-0470619143e0))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 79c29df9-918f-4473-b11b-3fedd120bff2))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9d98d134-0903-4480-ac01-2f2837a27307))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp cc4add4e-41d8-4e86-bb36-d2dc878e8d00))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "/R4") (pintype "passive") (tstamp 951ff854-9b87-48ab-8827-7adbe6fee82c))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/VGAR") (pintype "passive") (tstamp c970f863-2eeb-4363-945c-2275a112fd4c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73ead)
(at 140.335 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823c1b")
(attr smd)
(fp_text reference "RR5" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c8413d4-dc71-4cd7-a62e-95ffe5554e70)
)
(fp_text value "2K" (at 2.45 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f352e561-93ae-4eda-af14-a930a36aa74a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 0366978a-3e89-4bad-abec-cf07fade1137)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 02b7dc0f-ae19-4a97-a2ae-2d27bb773810))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp dbd136bb-61c9-4567-9827-33a734e5ddcc))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 818111a6-1429-497e-b8d7-f2616a7ec373))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 875855ef-0e49-4c33-b3c6-eba229f835d9))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 9ab92207-1da7-4613-a632-d3972813f57b))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp ce5b0dfe-37f0-4d1b-9f56-10ae411d36e6))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 00036662-fa99-4284-af32-cf49578c390a))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 0206e765-825a-4e51-9371-9f239143e77c))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 7cb6b52f-a428-4a6e-b5b7-84f253789f4d))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp eb8672c1-01f2-4628-93ed-ee7e8695390b))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "/R5") (pintype "passive") (tstamp c638678c-430a-49cf-a0d4-86651f3fbb2f))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/VGAR") (pintype "passive") (tstamp ff54cdc2-4b40-4994-8140-ac296a31bdc0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73ebe)
(at 138.43 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823be1")
(attr smd)
(fp_text reference "RR6" (at -0.2 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f178515b-b448-485d-b4f3-17f976e8a7a0)
)
(fp_text value "1K" (at 2.42 0.07 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40480825-a2e7-4339-bc0c-57c639418bad)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp c78980a8-e749-4c70-b9e3-d042eb419706)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 850230a1-e985-4aec-bfc1-cca85f47f39d))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp a174da27-94f5-429b-8d08-28d0331b42e5))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 33e14999-b5ae-46d2-ac28-01787a512419))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 609c03aa-db26-47fb-b858-1a8c9396360a))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp e4f43349-3f67-4924-9783-e918db4d09eb))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp fbbacad4-e3d6-4bc2-a42d-a5503b96ba41))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a523695c-35b4-4859-b781-154824ab5ca9))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp a80899eb-c281-402c-81c0-5d5b22336f45))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp b5e21c8b-4f23-470f-94c9-40687ea53ea2))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp bb67cd1c-91b3-4ba9-a62d-4d4173d20f22))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/R6") (pintype "passive") (tstamp 99e435f9-35c9-4f7b-81bb-55482767f5f5))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/VGAR") (pintype "passive") (tstamp b8fcd648-8385-4e85-ba16-e9b058ae3ba3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005fa73ecf)
(at 136.525 83.82 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059823a9b")
(attr smd)
(fp_text reference "RR7" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fffbe5d9-ab4f-4620-8b07-dfed6958ef21)
)
(fp_text value "499" (at 2.82 0.075 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7d43406-366f-4e28-b077-a5ba452fce9a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp c04eca05-a0f9-4bc2-a3af-c428ab1358bc)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 533e0349-e9bd-4e8f-92c0-75eac764bdf1))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp c1212456-d2b9-440c-9946-508c16588497))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 30470147-1c1c-474c-b510-0051dbe7652d))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 46d408fa-dd49-4762-9c6e-4858cc3099bc))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp cbba6077-8b44-42ce-8e79-5897f04e7903))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp cf0a08fc-a7e1-4e2e-b77b-d5d82ed08115))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 09660697-d5c8-4aef-8c5c-0260789058fc))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 1748450e-a8ca-4e49-95b9-4d9e086df7db))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9fe6b1ab-b272-4c55-88f3-15c955c8b1f3))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp d070d92e-528b-4236-9018-11247fadff60))
(pad "1" smd rect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "/R7") (pintype "passive") (tstamp 0cdebb81-7707-4273-b91b-84c97256655a))
(pad "2" smd rect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/VGAR") (pintype "passive") (tstamp 2ee514c3-8fe8-4bfc-bae8-2feff67b4a1c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Housings_SSOP:TSSOP-16_4.4x5mm_Pitch0.65mm" (layer "F.Cu")
(tedit 54130A77) (tstamp 00000000-0000-0000-0000-00005fa73eef)
(at 157 81 180)
(descr "16-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SSOP 0.65")
(property "Sheetfile" "Pi400VT100.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa8236f")
(attr smd)
(fp_text reference "U1" (at -0.2 -1.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed5d521b-24d1-4974-b18e-6b700d9b109f)