-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdvi-sock.kicad_sch
1277 lines (1247 loc) · 49.2 KB
/
dvi-sock.kicad_sch
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_sch (version 20210126) (generator eeschema)
(paper "A4")
(title_block
(title "Pico DVI Sock (or Shim, or something, idk what to call it)")
(date "2021-02-02")
(rev "A")
(company "Luke Wren")
(comment 1 "and stick the board into a breadboard. Micro-USB one end, video the other end.")
(comment 2 "low-profile on the bottom, so you can fit headers to the remaining Pico I/O pins")
(comment 3 "DMI (the H is silent) connector onto the end opposite the micro-USB. It's pretty ")
(comment 4 "The raspberry end of a RPi Pico is surface mounted onto this board, to fit a")
)
(lib_symbols
(symbol "Connector:HDMI_A" (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -6.35 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "HDMI_A" (id 1) (at 10.16 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0.635 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://en.wikipedia.org/wiki/HDMI" (id 3) (at 0.635 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "hdmi conn" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "HDMI type A connector" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "HDMI*A*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "HDMI_A_0_0"
(polyline
(pts
(xy 8.128 16.51)
(xy 8.128 18.034)
)
(stroke (width 0.635)) (fill (type none))
)
(polyline
(pts
(xy 0 16.51)
(xy 0 18.034)
(xy 0 17.272)
(xy 1.905 17.272)
(xy 1.905 18.034)
(xy 1.905 16.51)
)
(stroke (width 0.635)) (fill (type none))
)
(polyline
(pts
(xy 2.667 18.034)
(xy 4.318 18.034)
(xy 4.572 17.78)
(xy 4.572 16.764)
(xy 4.318 16.51)
(xy 2.667 16.51)
(xy 2.667 17.272)
)
(stroke (width 0.635)) (fill (type none))
)
)
(symbol "HDMI_A_0_1"
(rectangle (start -7.62 25.4) (end 10.16 -25.4)
(stroke (width 0.254)) (fill (type background))
)
(polyline
(pts
(xy 2.54 8.89)
(xy 3.81 8.89)
(xy 5.08 6.35)
(xy 5.08 -5.715)
(xy 3.81 -8.255)
(xy 2.54 -8.255)
(xy 2.54 8.89)
)
(stroke (width 0)) (fill (type outline))
)
(polyline
(pts
(xy 5.334 16.51)
(xy 5.334 18.034)
(xy 6.35 18.034)
(xy 6.35 16.51)
(xy 6.35 18.034)
(xy 7.112 18.034)
(xy 7.366 17.78)
(xy 7.366 16.51)
)
(stroke (width 0.635)) (fill (type none))
)
(polyline
(pts
(xy 0 12.7)
(xy 0 -12.7)
(xy 3.81 -12.7)
(xy 5.08 -10.16)
(xy 7.62 -8.89)
(xy 7.62 8.89)
(xy 5.08 10.16)
(xy 3.81 12.7)
(xy 0 12.7)
)
(stroke (width 0.635)) (fill (type none))
)
)
(symbol "HDMI_A_1_1"
(pin passive line (at -10.16 20.32 0) (length 2.54)
(name "D2+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 5.08 0) (length 2.54)
(name "CK+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -27.94 90) (length 2.54)
(name "CKS" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 2.54 0) (length 2.54)
(name "CK-" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 -2.54 0) (length 2.54)
(name "CEC" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -15.24 0) (length 2.54)
(name "UTILITY" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -7.62 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 -10.16 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "+5V" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -17.78 0) (length 2.54)
(name "HPD" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -27.94 90) (length 2.54)
(name "D2S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 17.78 0) (length 2.54)
(name "D2-" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 15.24 0) (length 2.54)
(name "D1+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -27.94 90) (length 2.54)
(name "D1S" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 12.7 0) (length 2.54)
(name "D1-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 10.16 0) (length 2.54)
(name "D0+" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "D0S" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 7.62 0) (length 2.54)
(name "D0-" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -27.94 90) (length 2.54)
(name "SH" (effects (font (size 1.27 1.27))))
(number "SH" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254)) (fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254)) (fill (type background))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x05" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x05_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 6.35) (end 1.27 -6.35)
(stroke (width 0.254)) (fill (type background))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254)) (fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 246.38 139.7) (diameter 0.9144) (color 0 0 0 0))
(junction (at 248.92 139.7) (diameter 0.9144) (color 0 0 0 0))
(junction (at 251.46 139.7) (diameter 0.9144) (color 0 0 0 0))
(junction (at 254 139.7) (diameter 0.9144) (color 0 0 0 0))
(junction (at 256.54 139.7) (diameter 0.9144) (color 0 0 0 0))
(no_connect (at 142.24 107.95) (uuid 78836f6b-d7e1-4729-9f6f-9db46d82fdea))
(no_connect (at 147.32 107.95) (uuid 78836f6b-d7e1-4729-9f6f-9db46d82fdea))
(no_connect (at 238.76 111.76) (uuid 76c4e73b-425b-4292-b4b2-435f3ecf6479))
(no_connect (at 238.76 116.84) (uuid 1b4f4977-a726-4402-aca0-62b897887a3c))
(no_connect (at 238.76 119.38) (uuid 6a48bc0b-3613-46fe-a59e-974775ca6b07))
(no_connect (at 238.76 124.46) (uuid 2a3fe9d1-5c48-4f61-9221-ab815cfd426a))
(no_connect (at 238.76 127) (uuid fb155a3f-da66-4fb1-9dd4-0f61cfb03030))
(wire (pts (xy 43.18 90.17) (xy 43.18 92.71))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ec5596ad-3a10-4717-8c9a-800455023ef6)
)
(wire (pts (xy 43.18 95.25) (xy 43.18 97.79))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2fe73140-d8d2-4c42-94b5-fdf607633665)
)
(wire (pts (xy 45.72 92.71) (xy 43.18 92.71))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ec5596ad-3a10-4717-8c9a-800455023ef6)
)
(wire (pts (xy 45.72 95.25) (xy 43.18 95.25))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2fe73140-d8d2-4c42-94b5-fdf607633665)
)
(wire (pts (xy 125.73 88.9) (xy 129.54 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 69d16841-38b1-42c4-91e5-0eeb85f05541)
)
(wire (pts (xy 125.73 91.44) (xy 129.54 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 94f1ac40-f3ea-4d33-9d0b-dcf829388c3b)
)
(wire (pts (xy 125.73 96.52) (xy 129.54 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb30b22c-0535-4653-88be-0f9edb85a6d9)
)
(wire (pts (xy 125.73 99.06) (xy 129.54 99.06))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid deb68f5f-2753-478f-990a-af339d665377)
)
(wire (pts (xy 128.27 93.98) (xy 128.27 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f3f89628-5a99-4114-a336-7d806eabe190)
)
(wire (pts (xy 129.54 93.98) (xy 128.27 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f3f89628-5a99-4114-a336-7d806eabe190)
)
(wire (pts (xy 144.78 107.95) (xy 144.78 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fa791471-553c-4bef-bb42-153c335c01ef)
)
(wire (pts (xy 160.02 88.9) (xy 163.83 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 51ffdfcc-6ffb-4305-a258-8bd96b7217b8)
)
(wire (pts (xy 160.02 91.44) (xy 163.83 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d79e58a0-755b-44b1-88d6-a14b012477da)
)
(wire (pts (xy 160.02 93.98) (xy 161.29 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 61cb0bc9-66dd-4262-9051-e6f2416fd518)
)
(wire (pts (xy 160.02 96.52) (xy 163.83 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 13d0de72-b291-48bb-b005-1c254e02d24d)
)
(wire (pts (xy 160.02 99.06) (xy 163.83 99.06))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cbb1acdc-7412-4d2a-8361-fbde1f8651e2)
)
(wire (pts (xy 161.29 93.98) (xy 161.29 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 61cb0bc9-66dd-4262-9051-e6f2416fd518)
)
(wire (pts (xy 210.82 88.9) (xy 215.9 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a5ea4cd1-0b8e-4881-997b-cb59d67f3a54)
)
(wire (pts (xy 210.82 91.44) (xy 222.25 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 76c59856-e56b-45fe-b6fa-729a4312dcf1)
)
(wire (pts (xy 210.82 93.98) (xy 215.9 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1ae3e31f-7183-48dd-9017-f832c3a3f674)
)
(wire (pts (xy 210.82 96.52) (xy 222.25 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2a2dc547-78ca-49ab-a969-9e8e37b60ba4)
)
(wire (pts (xy 210.82 99.06) (xy 215.9 99.06))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6e1091bd-4e49-4ef3-80b4-2411773e3204)
)
(wire (pts (xy 210.82 101.6) (xy 222.25 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e84381d9-dc89-41e6-9ab4-a9de92bae6e4)
)
(wire (pts (xy 210.82 104.14) (xy 215.9 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7de40f86-83b3-4f2a-9db2-8a9fc4821490)
)
(wire (pts (xy 210.82 106.68) (xy 222.25 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 729f52bf-c0e2-4d4b-a2f2-8f706225fe35)
)
(wire (pts (xy 223.52 88.9) (xy 238.76 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aff89fe9-dcbc-4772-987d-92de2c6e0617)
)
(wire (pts (xy 223.52 93.98) (xy 238.76 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3245631e-5964-4c78-ba5d-c5ffdd98f59d)
)
(wire (pts (xy 223.52 99.06) (xy 238.76 99.06))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3e6f0e28-19c3-42d3-b9d8-42c9cbea46d4)
)
(wire (pts (xy 223.52 104.14) (xy 238.76 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 24955083-d577-4750-9fdf-beef887cd4b4)
)
(wire (pts (xy 229.87 91.44) (xy 238.76 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aac8983a-5e7d-4917-95d6-5bf9cd0ea86e)
)
(wire (pts (xy 229.87 96.52) (xy 238.76 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5861314e-3456-4b24-aa21-f5f60fe271f9)
)
(wire (pts (xy 229.87 101.6) (xy 238.76 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 151dc4d6-2e22-4d9e-95c5-b72fe3ff2c14)
)
(wire (pts (xy 229.87 106.68) (xy 238.76 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 37fd4a1f-a017-4f59-8cf0-fcf47916c9b6)
)
(wire (pts (xy 243.84 137.16) (xy 243.84 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 243.84 139.7) (xy 246.38 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 246.38 137.16) (xy 246.38 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 56791111-c745-401b-8938-9a2b45a3ae30)
)
(wire (pts (xy 246.38 139.7) (xy 248.92 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 248.92 78.74) (xy 248.92 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99184fb1-3ca9-4f4f-a63c-b39e673e173d)
)
(wire (pts (xy 248.92 137.16) (xy 248.92 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a09b9716-e4e3-47c0-a1f3-4269bb8089f4)
)
(wire (pts (xy 248.92 139.7) (xy 251.46 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 251.46 137.16) (xy 251.46 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e90d29fe-bb27-4128-9b44-fa8c7ca070e6)
)
(wire (pts (xy 251.46 139.7) (xy 254 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 254 137.16) (xy 254 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b5c48bf-f552-45e8-b7b6-4d1e4709032e)
)
(wire (pts (xy 254 139.7) (xy 256.54 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(wire (pts (xy 256.54 137.16) (xy 256.54 139.7))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aba51ca5-c377-4fcd-9d0e-ef2afac0f15c)
)
(wire (pts (xy 256.54 139.7) (xy 256.54 142.24))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c39f4c73-adad-411f-af55-6004f15eef2b)
)
(polyline (pts (xy 134.62 80.01) (xy 134.62 87.63))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid f4ab97af-6295-4e6c-878e-9a6736abc257)
)
(polyline (pts (xy 134.62 100.33) (xy 134.62 102.87))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 8537b5c5-6ba8-42b7-9241-0c43800dcf89)
)
(polyline (pts (xy 134.62 102.87) (xy 140.97 102.87))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 8537b5c5-6ba8-42b7-9241-0c43800dcf89)
)
(polyline (pts (xy 148.59 102.87) (xy 154.94 102.87))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 1c40046d-6fb8-40cf-bf43-d556dd9fb021)
)
(polyline (pts (xy 154.94 80.01) (xy 154.94 87.63))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 6d79036b-972b-49da-8830-13aa8e5cc6b6)
)
(polyline (pts (xy 154.94 100.33) (xy 154.94 102.87))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 1c40046d-6fb8-40cf-bf43-d556dd9fb021)
)
(text "Optional 5V Header\n(no-fit)\n" (at 27.94 68.58 0)
(effects (font (size 3 3)) (justify left bottom))
(uuid 9eeb0ca5-0bd5-401d-bdd8-278717d60728)
)
(text "You're supposed to drive the 5V line\nbefore outputting video (it's part of\na nominal startup state machine in\nthe DVI spec, not just for supplying\nthe DDC + EDID). However most\nmonitors don't seem to care, and the\nVBUS pin is at the far end of Pico, so\nthis board just hooks up the grounds\nand the TMDS lanes, not the +5V. If\nyou have trouble you can fit this header\nand supply 5V to the Sink through it."
(at 30.48 132.08 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2fdc46c6-5e6a-436d-8355-5ce914767d25)
)
(text "Surface mount footprint for the\nnon-USB end of a RPi Pico"
(at 114.3 68.58 0)
(effects (font (size 3 3)) (justify left bottom))
(uuid 3c0bd487-9072-4005-884c-0033995cb143)
)
(text "GP12" (at 142.24 90.17 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a2a15a2-7ba3-407a-9d2f-020a6fcb162f)
)
(text "GP13" (at 142.24 92.71 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 379b145f-9b83-46b6-ab3e-34d304d18eae)
)
(text "GP14" (at 142.24 97.79 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 57892b2a-6b37-4342-91de-c62ce44520dd)
)
(text "GP15" (at 142.24 100.33 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1b91d4b4-e416-4f20-8f8c-5e8dedc59bb9)
)
(text "Pico" (at 146.05 82.55 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 80ac9426-aaf3-48e6-8f4e-8f77f57eab94)
)
(text "GP19" (at 147.32 90.17 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 64a0cf0d-21bf-4d08-853b-b1924a95b13f)
)
(text "GP18" (at 147.32 92.71 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7aa9a5e0-5981-4d76-9340-8ef04fd9792d)
)
(text "GP17" (at 147.32 97.79 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 23eafd26-cccd-4c5c-bc0a-aeb81fb22bfe)
)
(text "GP16" (at 147.32 100.33 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid deee7509-5152-449c-bb46-5c516455b30a)
)
(text "Socket which I can't\nsay the name of" (at 228.6 68.58 0)
(effects (font (size 3 3)) (justify left bottom))
(uuid a93b3e32-0cec-4ce4-ae2b-f7edceab35bc)
)
(text "NOT" (at 255.27 91.44 180)
(effects (font (size 2 2) (thickness 0.4) bold) (justify right bottom))
(uuid 7fffb6be-509e-4cad-a63d-362a2c1bd09f)
)
(label "PICO_D0+" (at 125.73 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c950d28a-7bab-4296-9ffe-718c30aaecef)
)
(label "PICO_D0-" (at 125.73 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9cc1b899-0896-41b4-b91d-2e03300304a9)
)
(label "PICO_CK+" (at 125.73 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0dd174c2-3a4b-4a05-9eab-44eb86816f56)
)
(label "PICO_CK-" (at 125.73 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b6170d0c-b7b6-4308-b3a2-a925ae0f82eb)
)
(label "PICO_D1-" (at 163.83 88.9 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e6fd5afb-80c9-493f-b2b5-5977256dc661)
)
(label "PICO_D1+" (at 163.83 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e9107e37-17e6-427d-94a6-7581df6f2c7f)
)
(label "PICO_D2-" (at 163.83 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 83bdef47-fff9-4fab-ab29-6868ef6f0b7a)
)
(label "PICO_D2+" (at 163.83 99.06 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a356fb0f-5b7e-4bed-8041-c8a2f787b4cb)
)
(label "PICO_D2+" (at 210.82 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f4b9d4f9-e1bf-448d-bd31-fe2cf998eca9)
)
(label "PICO_D2-" (at 210.82 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b64aa30c-3012-4322-bdb1-ccd30e6cb34f)
)
(label "PICO_D1+" (at 210.82 93.98 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 59194ae7-5f08-433f-bd63-20b8572cffe9)
)
(label "PICO_D1-" (at 210.82 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 139ed6b5-b0af-4ffb-9bab-c118c6a001cd)
)
(label "PICO_D0+" (at 210.82 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ab9e444f-8fa9-4fd6-87a8-e3dc6d9f5bba)
)
(label "PICO_D0-" (at 210.82 101.6 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4ff97195-1952-4453-a6fd-1b7224676642)
)
(label "PICO_CK+" (at 210.82 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 51f60990-5390-415b-81b6-4b5543a4af25)
)
(label "PICO_CK-" (at 210.82 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 30219565-e85b-4394-b43b-c116cd302590)
)
(label "D2+" (at 238.76 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 58c140e2-fe50-43f5-abd4-d1714941829c)
)
(label "D2-" (at 238.76 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bd02688d-0279-4b61-8b38-2aa0b897e96b)
)
(label "D1+" (at 238.76 93.98 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0f572342-c509-4d32-be0b-7a4b7caeb7f6)
)
(label "D1-" (at 238.76 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3f28e364-d240-4271-853b-3899d49b2462)
)
(label "D0+" (at 238.76 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid aa3dbcc1-3fc9-4480-875f-9c9d49cc0a40)
)
(label "D0-" (at 238.76 101.6 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7e07089a-579c-482d-aa3f-8fb76ba42e80)
)
(label "CK+" (at 238.76 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cbbfe5af-e14d-4d15-b10e-7dd750323c7b)
)
(label "CK-" (at 238.76 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid aae715db-3251-4776-826f-2dc4b53455c6)
)
(symbol (lib_id "power:+5V") (at 43.18 90.17 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 70428bb6-98e7-4799-b6b1-a46958488d75)
(property "Reference" "#PWR0102" (id 0) (at 43.18 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 44.45 85.09 0))
(property "Footprint" "" (id 2) (at 43.18 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 43.18 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cf90308f-54d7-47a8-b8c0-e9e70bdffb82))
)
(symbol (lib_id "power:+5V") (at 248.92 78.74 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 268e766e-b431-4780-a219-56cd93005e80)
(property "Reference" "#PWR0103" (id 0) (at 248.92 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 250.19 73.66 0))
(property "Footprint" "" (id 2) (at 248.92 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 248.92 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cf90308f-54d7-47a8-b8c0-e9e70bdffb82))
)
(symbol (lib_id "power:GND") (at 43.18 97.79 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 288117da-9afe-4abd-b265-0d26a79b6adb)
(property "Reference" "#PWR0101" (id 0) (at 43.18 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 44.45 102.87 0))
(property "Footprint" "" (id 2) (at 43.18 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 43.18 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 39d23755-c05e-44d2-bb43-acda786307da))
)
(symbol (lib_id "power:GND") (at 128.27 110.49 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 12aa2cde-7204-47df-a47b-73abd0979d16)
(property "Reference" "#PWR01" (id 0) (at 128.27 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 128.27 114.3 0))
(property "Footprint" "" (id 2) (at 128.27 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.27 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 95f2ed52-c381-4a2e-9f5b-4e3fa455ce62))
)
(symbol (lib_id "power:GND") (at 144.78 110.49 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid d769b232-e95c-4fb5-9de9-c7d1f6adffe6)
(property "Reference" "#PWR02" (id 0) (at 144.78 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 144.78 114.3 0))
(property "Footprint" "" (id 2) (at 144.78 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 95f2ed52-c381-4a2e-9f5b-4e3fa455ce62))
)
(symbol (lib_id "power:GND") (at 161.29 110.49 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 059ad84e-8773-4516-a8b8-4f7b8fcdb9fd)
(property "Reference" "#PWR03" (id 0) (at 161.29 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 161.29 114.3 0))
(property "Footprint" "" (id 2) (at 161.29 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 161.29 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 95f2ed52-c381-4a2e-9f5b-4e3fa455ce62))
)
(symbol (lib_id "power:GND") (at 256.54 142.24 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6cd3e6e8-15fb-4810-9095-4b2da2c12308)
(property "Reference" "#PWR04" (id 0) (at 256.54 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 257.81 147.32 0))
(property "Footprint" "" (id 2) (at 256.54 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 256.54 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ef706847-7778-4682-b82e-642e070d7b87))
)
(symbol (lib_id "Device:R") (at 219.71 88.9 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 29de6259-6b55-484e-9561-d49c4854d930)
(property "Reference" "R1" (id 0) (at 214.63 87.63 90))
(property "Value" "270" (id 1) (at 214.63 90.17 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 219.71 90.678 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 219.71 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6da819dc-f2b7-48f7-87b3-13b318c7aee6))
(pin "2" (uuid 052026a1-d362-43d3-8d86-34d8576244c2))
)
(symbol (lib_id "Device:R") (at 219.71 93.98 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid d54b2e93-60ee-4e02-8fba-4ba63c6c8157)
(property "Reference" "R3" (id 0) (at 214.63 92.71 90))
(property "Value" "270" (id 1) (at 214.63 95.25 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 219.71 95.758 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 219.71 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6da819dc-f2b7-48f7-87b3-13b318c7aee6))
(pin "2" (uuid 052026a1-d362-43d3-8d86-34d8576244c2))
)