aboutsummaryrefslogtreecommitdiffstats
path: root/pi_transceiver.kicad_sch
blob: 40106dbf853571826e1ec807bb9820195075896a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
(kicad_sch (version 20211123) (generator eeschema)

  (uuid d85aa0e5-f57a-47de-b8fd-2484a5935364)

  (paper "A4")

  (lib_symbols
    (symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0.254 3.048 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_Coaxial" (id 1) (at 2.921 0 90)
        (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" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_Coaxial_0_1"
        (arc (start -1.778 -0.508) (mid 0.2311 -1.8066) (end 1.778 0)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -0.508 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -2.54)
            (xy 0 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 0 0) (radius 0.508)
          (stroke (width 0.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 1.778 0) (mid 0.2099 1.8101) (end -1.778 0.508)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Conn_Coaxial_1_1"
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "In" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -5.08 90) (length 2.54)
          (name "Ext" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector:Raspberry_Pi_2_3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at -17.78 31.75 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Value" "Raspberry_Pi_2_3" (id 1) (at 10.16 -31.75 0)
        (effects (font (size 1.27 1.27)) (justify left top))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/rpi_SCH_3bplus_1p0_reduced.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "raspberrypi gpio" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "expansion header for Raspberry Pi 2 & 3" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "PinHeader*2x20*P2.54mm*Vertical* PinSocket*2x20*P2.54mm*Vertical*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Raspberry_Pi_2_3_0_1"
        (rectangle (start -17.78 30.48) (end 17.78 -30.48)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "Raspberry_Pi_2_3_1_1"
        (rectangle (start -16.891 -17.526) (end -17.78 -18.034)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 -14.986) (end -17.78 -15.494)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 -12.446) (end -17.78 -12.954)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 -9.906) (end -17.78 -10.414)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 -7.366) (end -17.78 -7.874)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 -4.826) (end -17.78 -5.334)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 0.254) (end -17.78 -0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 2.794) (end -17.78 2.286)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 5.334) (end -17.78 4.826)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 10.414) (end -17.78 9.906)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 12.954) (end -17.78 12.446)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 15.494) (end -17.78 14.986)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 20.574) (end -17.78 20.066)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -16.891 23.114) (end -17.78 22.606)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -10.414 -29.591) (end -9.906 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -7.874 -29.591) (end -7.366 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -5.334 -29.591) (end -4.826 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -5.334 30.48) (end -4.826 29.591)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -2.794 -29.591) (end -2.286 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -2.794 30.48) (end -2.286 29.591)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -0.254 -29.591) (end 0.254 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 2.286 -29.591) (end 2.794 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 2.286 30.48) (end 2.794 29.591)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 4.826 -29.591) (end 5.334 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 4.826 30.48) (end 5.334 29.591)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 7.366 -29.591) (end 7.874 -30.48)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -20.066) (end 16.891 -20.574)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -17.526) (end 16.891 -18.034)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -12.446) (end 16.891 -12.954)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -9.906) (end 16.891 -10.414)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -7.366) (end 16.891 -7.874)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -4.826) (end 16.891 -5.334)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 -2.286) (end 16.891 -2.794)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 2.794) (end 16.891 2.286)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 5.334) (end 16.891 4.826)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 7.874) (end 16.891 7.366)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 12.954) (end 16.891 12.446)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 15.494) (end 16.891 14.986)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 20.574) (end 16.891 20.066)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 17.78 23.114) (end 16.891 22.606)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin power_in line (at 2.54 33.02 270) (length 2.54)
          (name "3V3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 20.32 0) (length 2.54)
          (name "GPIO15/RXD" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 12.7 0) (length 2.54)
          (name "GPIO17" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 10.16 0) (length 2.54)
          (name "GPIO18/PWM0" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -17.78 0) (length 2.54)
          (name "GPIO27" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -5.08 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -5.08 0) (length 2.54)
          (name "GPIO22" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -7.62 0) (length 2.54)
          (name "GPIO23" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 5.08 33.02 270) (length 2.54)
          (name "3V3" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -10.16 0) (length 2.54)
          (name "GPIO24" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -10.16 180) (length 2.54)
          (name "MOSI0/GPIO10" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -5.08 33.02 270) (length 2.54)
          (name "5V" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -7.62 180) (length 2.54)
          (name "MISO0/GPIO9" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -12.7 0) (length 2.54)
          (name "GPIO25" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -12.7 180) (length 2.54)
          (name "SCLK0/GPIO11" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -5.08 180) (length 2.54)
          (name "~{CE0}/GPIO8" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -2.54 180) (length 2.54)
          (name "~{CE1}/GPIO7" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 22.86 180) (length 2.54)
          (name "ID_SD/GPIO0" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 20.32 180) (length 2.54)
          (name "ID_SC/GPIO1" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 5.08 180) (length 2.54)
          (name "GCLK1/GPIO5" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 15.24 180) (length 2.54)
          (name "SDA/GPIO2" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 2.54 180) (length 2.54)
          (name "GCLK2/GPIO6" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -17.78 180) (length 2.54)
          (name "PWM0/GPIO12" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -20.32 180) (length 2.54)
          (name "PWM1/GPIO13" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 5.08 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 5.08 0) (length 2.54)
          (name "GPIO19/MISO1" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 15.24 0) (length 2.54)
          (name "GPIO16" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -15.24 0) (length 2.54)
          (name "GPIO26" (effects (font (size 1.27 1.27))))
          (number "37" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 2.54 0) (length 2.54)
          (name "GPIO20/MOSI1" (effects (font (size 1.27 1.27))))
          (number "38" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "39" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 33.02 270) (length 2.54)
          (name "5V" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 0 0) (length 2.54)
          (name "GPIO21/SCLK1" (effects (font (size 1.27 1.27))))
          (number "40" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 12.7 180) (length 2.54)
          (name "SCL/GPIO3" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -10.16 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 7.62 180) (length 2.54)
          (name "GCLK0/GPIO4" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 22.86 0) (length 2.54)
          (name "GPIO14/TXD" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 -33.02 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (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 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Polarized_0_1"
        (rectangle (start -2.286 0.508) (end 2.286 1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 2.286)
            (xy -0.762 2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 2.794)
            (xy -1.27 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "C_Polarized_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (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 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LED_0_1"
        (polyline
          (pts
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 0)
            (xy 1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
            (xy -1.27 0)
            (xy 1.27 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.048 -0.762)
            (xy -4.572 -2.286)
            (xy -3.81 -2.286)
            (xy -4.572 -2.286)
            (xy -4.572 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 -0.762)
            (xy -3.302 -2.286)
            (xy -2.54 -2.286)
            (xy -3.302 -2.286)
            (xy -3.302 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "LED_1_1"
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.54 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R_US" (id 1) (at -2.54 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 1.016 -0.254 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, US symbol" (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_US_0_1"
        (polyline
          (pts
            (xy 0 -2.286)
            (xy 0 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -0.762)
            (xy 1.016 -1.143)
            (xy 0 -1.524)
            (xy -1.016 -1.905)
            (xy 0 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0.762)
            (xy 1.016 0.381)
            (xy 0 0)
            (xy -1.016 -0.381)
            (xy 0 -0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 1.016 1.905)
            (xy 0 1.524)
            (xy -1.016 1.143)
            (xy 0 0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_US_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 "Transistor_BJT:2N3904" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "2N3904" (id 1) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 5.08 -1.905 0)
        (effects (font (size 1.27 1.27) italic) (justify left) hide)
      )
      (property "Datasheet" "https://www.onsemi.com/pub/Collateral/2N3903-D.PDF" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "NPN Transistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "2N3904_0_1"
        (polyline
          (pts
            (xy 0.635 0.635)
            (xy 2.54 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 -0.635)
            (xy 2.54 -2.54)
            (xy 2.54 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 1.905)
            (xy 0.635 -1.905)
            (xy 0.635 -1.905)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.778)
            (xy 1.778 -1.27)
            (xy 2.286 -2.286)
            (xy 1.27 -1.778)
            (xy 1.27 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 1.27 0) (radius 2.8194)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "2N3904_1_1"
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "E" (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 5.715)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3V3" (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" "+3V3" (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" "global power" (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 \"+3V3\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3V3_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "+3V3_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3V3" (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" "global power" (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) (type default) (color 0 0 0 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))))
        )
      )
    )
    (symbol "power:VCC" (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" "VCC" (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" "global power" (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 \"VCC\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "VCC_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "VCC_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "scd31:RF4463F30" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -6.35 16.51 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "RF4463F30" (id 1) (at 10.16 16.51 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "npr70:RF4463F30" (id 2) (at 13.97 -11.43 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)
      )
      (symbol "RF4463F30_0_1"
        (rectangle (start -7.62 15.24) (end 10.16 -10.16)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "RF4463F30_1_1"
        (pin power_in line (at -10.16 12.7 0) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 -2.54 180) (length 2.54)
          (name "SDI" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 0 180) (length 2.54)
          (name "SDO" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 2.54 180) (length 2.54)
          (name "GPIO1" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 5.08 180) (length 2.54)
          (name "GPIO0" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at 12.7 7.62 180) (length 2.54)
          (name "NC" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 12.7 10.16 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 12.7 180) (length 2.54)
          (name "ANT" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -10.16 10.16 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at -10.16 7.62 0) (length 2.54)
          (name "NC" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at -10.16 5.08 0) (length 2.54)
          (name "NC" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -10.16 2.54 0) (length 2.54)
          (name "SDN" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at -10.16 0 0) (length 2.54)
          (name "IRQ" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -10.16 -2.54 0) (length 2.54)
          (name "SEL" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -10.16 -5.08 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 -5.08 180) (length 2.54)
          (name "SCLK" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 17.78 270) (length 2.54)
          (name "SHLD_1" (effects (font (size 1.27 1.27))))
          (number "SHLD_1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -12.7 90) (length 2.54)
          (name "SHLD_2" (effects (font (size 1.27 1.27))))
          (number "SHLD_2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 17.78 270) (length 2.54)
          (name "SHLD_3" (effects (font (size 1.27 1.27))))
          (number "SHLD_3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -12.7 90) (length 2.54)
          (name "SHLD_4" (effects (font (size 1.27 1.27))))
          (number "SHLD_4" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 69.85 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 2622382a-a509-423a-8465-670e108adc68)
  )
  (junction (at 185.42 80.01) (diameter 0) (color 0 0 0 0)
    (uuid 356cedf7-15b4-40e0-a53d-a04d995cecdb)
  )
  (junction (at 135.89 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 3f0c263e-f0f1-4fa8-95ec-10e482edc853)
  )
  (junction (at 74.93 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 4f4a2880-fb15-46ac-87f0-6097f001bcc8)
  )
  (junction (at 134.62 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 4fc249b8-c36f-4cbf-8da7-db2f34fce22f)
  )
  (junction (at 67.31 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 874167e0-5cf2-4ca6-8421-5e394a71cc10)
  )
  (junction (at 132.08 66.04) (diameter 0) (color 0 0 0 0)
    (uuid 8ad2e7d3-a6e6-4e07-ba81-b5e054321ffd)
  )
  (junction (at 72.39 109.22) (diameter 0) (color 0 0 0 0)
    (uuid d0a97253-ea6d-4bdd-9db0-d2fc84701625)
  )
  (junction (at 64.77 109.22) (diameter 0) (color 0 0 0 0)
    (uuid dc4c37e5-c2c6-42e9-b94c-4d6eaad66d80)
  )
  (junction (at 62.23 109.22) (diameter 0) (color 0 0 0 0)
    (uuid ed50f754-fedf-4b1c-a538-e78ff27dad01)
  )
  (junction (at 64.77 43.18) (diameter 0) (color 0 0 0 0)
    (uuid ef9cf6c7-53a9-46a1-93f2-a356c1b95613)
  )
  (junction (at 135.89 40.64) (diameter 0) (color 0 0 0 0)
    (uuid f226c5e4-ee32-4fdd-9fc8-68bf97645628)
  )
  (junction (at 77.47 109.22) (diameter 0) (color 0 0 0 0)
    (uuid f345ed9a-85d8-43e1-9984-93925e711eae)
  )

  (no_connect (at 49.53 71.12) (uuid 00a19322-234f-41d5-9f9e-f6eb4a664e42))
  (no_connect (at 90.17 96.52) (uuid 240452a9-b508-44b7-914f-4dc742c6fe9f))
  (no_connect (at 90.17 60.96) (uuid 28cb1845-d5d7-4c7f-836a-4e05dc2ecc8b))
  (no_connect (at 90.17 53.34) (uuid 29df2614-d50d-4fc1-b42e-3aad03af7ae6))
  (no_connect (at 49.53 91.44) (uuid 2d9b3137-2588-40f0-9730-53d69eba321f))
  (no_connect (at 90.17 78.74) (uuid 55968299-61da-40f3-b7ff-487331dc07b5))
  (no_connect (at 49.53 76.2) (uuid 597780b6-ccb9-444e-9611-24dac6751fb6))
  (no_connect (at 90.17 81.28) (uuid 5bbe9598-8e70-4afe-9b67-b90aa822d1ae))
  (no_connect (at 90.17 93.98) (uuid 6dbcc3b3-6421-442e-afb6-6d2cd42ad6ce))
  (no_connect (at 49.53 55.88) (uuid 6e87edf2-534e-4152-b257-7b5d13fbfa57))
  (no_connect (at 90.17 73.66) (uuid 80bc6cc9-1abf-4367-95a9-7a37b763032a))
  (no_connect (at 90.17 71.12) (uuid 88c0263e-367f-4c39-9f12-0bf4680476a3))
  (no_connect (at 49.53 53.34) (uuid 8dc9a901-de0b-49d0-8aee-b4acf7423a2f))
  (no_connect (at 49.53 60.96) (uuid 8e0afcd9-6382-4e56-8d69-0bbe7d48e3a3))
  (no_connect (at 49.53 63.5) (uuid b05d8cc4-38dd-4048-8f17-2db40faf9cf3))
  (no_connect (at 90.17 68.58) (uuid c58587d4-ecd8-4c60-9801-802b0348af83))
  (no_connect (at 49.53 66.04) (uuid cb2199e6-520f-46e1-8906-1ab429ce4fea))
  (no_connect (at 49.53 73.66) (uuid d2421c17-ccd5-4093-bd17-3b415958daa3))
  (no_connect (at 49.53 93.98) (uuid d8157d3a-f214-40e7-ae24-8a88fb7a9b29))
  (no_connect (at 90.17 63.5) (uuid db1bf612-6530-407a-a97e-6668ff1c05a4))
  (no_connect (at 74.93 43.18) (uuid e03cac92-a014-4418-bd22-65343057b426))
  (no_connect (at 90.17 55.88) (uuid f3fd4c5b-40d7-4129-af5e-fa45c978fc0b))

  (wire (pts (xy 59.69 109.22) (xy 62.23 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 01350069-4fa8-4553-b1d5-fa4a7c6fa6f8)
  )
  (wire (pts (xy 46.99 81.28) (xy 49.53 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02ef4941-59cd-443c-a9f1-6e72f073804d)
  )
  (wire (pts (xy 90.17 86.36) (xy 92.71 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0cd0f04a-9486-4974-ad75-97ade521d6c0)
  )
  (wire (pts (xy 77.47 109.22) (xy 77.47 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0d0b0dd0-b1fd-4f2b-8677-70124823f5a9)
  )
  (wire (pts (xy 207.01 44.45) (xy 209.55 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1474670d-d699-4717-b837-dbe8b982a18f)
  )
  (wire (pts (xy 118.11 73.66) (xy 118.11 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 16dc6bf4-5237-4149-b681-6f8033fedac3)
  )
  (wire (pts (xy 132.08 96.52) (xy 134.62 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 204791f7-3890-4c75-b711-6f70f948c27d)
  )
  (wire (pts (xy 144.78 71.12) (xy 147.32 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 27d8f529-33dd-4ba7-90d8-e5d5db07c9df)
  )
  (wire (pts (xy 124.46 40.64) (xy 135.89 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2927fa93-031e-40ef-acdc-e08f227f72a7)
  )
  (wire (pts (xy 64.77 43.18) (xy 63.5 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2dc11d80-b068-4d6b-beb8-63e7db279141)
  )
  (wire (pts (xy 119.38 86.36) (xy 121.92 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3342cf5d-fe81-45f6-908a-d1b93b7225ae)
  )
  (wire (pts (xy 132.08 66.04) (xy 134.62 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 345808bd-c198-4d02-b599-1ddb18a54640)
  )
  (wire (pts (xy 185.42 87.63) (xy 186.69 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3753322e-7a65-4559-8627-ccf6ba10b566)
  )
  (wire (pts (xy 124.46 48.26) (xy 135.89 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37d2df63-d8dd-4980-8b39-ee7416c1795b)
  )
  (wire (pts (xy 64.77 109.22) (xy 67.31 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3dad90e9-504b-487b-9dd4-fb279a5e7e33)
  )
  (wire (pts (xy 193.04 54.61) (xy 193.04 57.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4084dcdf-fd97-4424-bb5b-3c6da6c1f88a)
  )
  (wire (pts (xy 217.17 44.45) (xy 219.71 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 40e0a0c9-0be1-4935-87c1-2a67e51d3edc)
  )
  (wire (pts (xy 194.31 87.63) (xy 198.12 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 43558ebd-1fcb-4782-9680-2efec191a8a0)
  )
  (wire (pts (xy 120.65 71.12) (xy 120.65 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4494e36a-d863-469d-a3cd-86303bf121f6)
  )
  (wire (pts (xy 144.78 88.9) (xy 147.32 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4deff0b5-3671-45f1-ace8-4ed9de0d1074)
  )
  (wire (pts (xy 185.42 80.01) (xy 186.69 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4e053c33-91ea-495f-abce-09e5a7f817ca)
  )
  (wire (pts (xy 46.99 86.36) (xy 49.53 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4e316487-3f4d-4396-92a0-84459117e0b0)
  )
  (wire (pts (xy 171.45 49.53) (xy 173.99 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4ff8a436-ff13-424a-96e9-aef894b11cbc)
  )
  (wire (pts (xy 69.85 109.22) (xy 72.39 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5884c9df-e4b2-49e1-ad31-555360513bd7)
  )
  (wire (pts (xy 120.65 88.9) (xy 120.65 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5adc0e63-574f-42b0-8f65-38f2ae33fff3)
  )
  (wire (pts (xy 62.23 109.22) (xy 64.77 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5ba0a23b-06ec-4bc7-b083-ce38e10f18e4)
  )
  (wire (pts (xy 144.78 78.74) (xy 147.32 78.74))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5be00297-507b-4620-ada9-209449e7ff75)
  )
  (wire (pts (xy 144.78 86.36) (xy 147.32 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 60dd1193-97a3-4d69-bd97-bde28001124d)
  )
  (wire (pts (xy 135.89 96.52) (xy 135.89 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 63054b96-bb03-4725-89b9-c12211fccdd2)
  )
  (wire (pts (xy 46.99 88.9) (xy 49.53 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 656be56e-8235-4005-8dfc-932f720fe46c)
  )
  (wire (pts (xy 90.17 88.9) (xy 92.71 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6817f7e6-d53c-4273-9bee-5d4047031da4)
  )
  (wire (pts (xy 134.62 96.52) (xy 135.89 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 68be9490-ae6b-44a8-8fb3-08cf173658bb)
  )
  (wire (pts (xy 119.38 81.28) (xy 121.92 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6a8f151c-e975-4536-9efa-8fb9b889bc4a)
  )
  (wire (pts (xy 132.08 64.77) (xy 128.27 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7461999f-ca82-4625-a84e-5ad7c7c8b573)
  )
  (wire (pts (xy 67.31 109.22) (xy 69.85 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8686958e-ba0a-4110-8e7e-4f47e27ef524)
  )
  (wire (pts (xy 144.78 81.28) (xy 147.32 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 87445f08-46c5-4841-8287-7211a93e98c3)
  )
  (wire (pts (xy 63.5 41.91) (xy 63.5 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8919c0b8-7b86-4174-9872-7186a4c1a408)
  )
  (wire (pts (xy 90.17 83.82) (xy 92.71 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8e5e36c7-8d21-432a-ba45-9956c49bb22e)
  )
  (wire (pts (xy 121.92 88.9) (xy 120.65 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8ec4dfcd-f255-431a-a139-d8465a65de0b)
  )
  (wire (pts (xy 121.92 71.12) (xy 120.65 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 939a8fcc-bafe-4d0b-8303-df0f28c2126e)
  )
  (wire (pts (xy 147.32 71.12) (xy 147.32 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 93bc1598-7f91-4dc5-87ec-38b7fbfe2dcd)
  )
  (wire (pts (xy 147.32 68.58) (xy 151.13 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9841e3fb-0b12-4b82-89f9-1e4e5b5ad5ef)
  )
  (wire (pts (xy 119.38 83.82) (xy 121.92 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9d11211d-7e77-4ea3-937a-8478b8c37857)
  )
  (wire (pts (xy 135.89 38.1) (xy 135.89 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9fae20dc-9143-4983-99e5-9acad92d7401)
  )
  (wire (pts (xy 74.93 109.22) (xy 77.47 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a0255b80-ba1c-497c-9086-5928e9ca4ca4)
  )
  (wire (pts (xy 219.71 41.91) (xy 219.71 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bc82771d-0ab2-4be2-b1ec-c5bb9a1fdb55)
  )
  (wire (pts (xy 67.31 43.18) (xy 64.77 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bcf89c8e-0711-41b3-82ab-b01e3438f186)
  )
  (wire (pts (xy 144.78 83.82) (xy 147.32 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bf409fbf-9a0e-4f59-bf98-5395bad84bad)
  )
  (wire (pts (xy 135.89 48.26) (xy 135.89 50.8))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c86c693c-b67d-4f46-9331-48a1ceba960e)
  )
  (wire (pts (xy 72.39 109.22) (xy 74.93 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cad0a57b-55a0-4fd4-a926-86c1a62be17c)
  )
  (wire (pts (xy 46.99 83.82) (xy 49.53 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cf9efb03-3303-4243-aa39-d54b9fcbda48)
  )
  (wire (pts (xy 185.42 77.47) (xy 185.42 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d5807190-1e29-4653-ae06-abd95478e00a)
  )
  (wire (pts (xy 121.92 73.66) (xy 118.11 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d5c43768-4293-4297-b3dc-2265697b98b2)
  )
  (wire (pts (xy 72.39 43.18) (xy 72.39 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e7ea4ffa-81e3-4fcf-9ab1-dcfeb96e7e86)
  )
  (wire (pts (xy 132.08 66.04) (xy 132.08 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9e1a956-992b-4a3b-a6db-93a088330a5a)
  )
  (wire (pts (xy 144.78 73.66) (xy 156.21 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eb8a5333-449f-4863-a8e7-3196f69c925b)
  )
  (wire (pts (xy 193.04 44.45) (xy 199.39 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eccd2c96-ce0b-4a82-8442-397bab21cb05)
  )
  (wire (pts (xy 185.42 80.01) (xy 185.42 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f08f0944-a58d-412a-86c0-1f01b6b4d90c)
  )
  (wire (pts (xy 181.61 49.53) (xy 185.42 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fb0346bc-26d5-4e16-812e-46ffa971dd3a)
  )
  (wire (pts (xy 194.31 80.01) (xy 198.12 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fcf2ae90-1f55-4337-8724-7a2e4e0e8200)
  )

  (global_label "SDO" (shape output) (at 147.32 83.82 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0365d13e-9d0a-4f06-a887-c0497e7cc5c9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5431 83.7406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SDN" (shape output) (at 198.12 87.63 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0c4b5d44-fb7c-4138-a910-7a3495589dae)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.3431 87.7094 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "CS" (shape input) (at 119.38 86.36 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0ed5d4db-afd8-4eed-a461-7e2f71af8fc1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.4874 86.2806 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SDO" (shape input) (at 92.71 83.82 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1bf8204b-0554-4454-889f-90787fa4fdd6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.9331 83.7406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GPIO0" (shape bidirectional) (at 147.32 78.74 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1c4987ff-e36c-4d73-9efb-23c9a0a6590c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 155.4179 78.6606 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "TX_LED" (shape input) (at 171.45 49.53 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 26129dab-707d-471b-b064-e766d8de6cf0)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.445 49.4506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SDN" (shape input) (at 119.38 81.28 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2760064a-f6bc-4d14-a4ba-52cbfa1965a2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.1569 81.2006 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "IT" (shape output) (at 119.38 83.82 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 27f81025-f185-4a44-8044-f2e8df547592)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 115.3945 83.7406 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SDN" (shape output) (at 46.99 81.28 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2d89b883-44a5-4716-b9d3-e567b0f4182e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 40.7669 81.2006 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CS" (shape output) (at 198.12 80.01 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 432424e2-015e-4613-823e-e9ef3fe3ae60)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.0126 80.0894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "IT" (shape input) (at 46.99 83.82 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 50f7cf33-a8a6-4754-958d-716002712ab4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 43.0045 83.7406 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SDI" (shape output) (at 92.71 86.36 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 54f829d5-ea6f-4948-b4a5-068fa5f56500)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.2074 86.2806 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SDI" (shape input) (at 147.32 86.36 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 57af10e2-73d2-42af-b097-38183eaaa67f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.8174 86.2806 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SCLK" (shape input) (at 147.32 88.9 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 6e9c2561-7618-4255-8084-c3cbaa40905f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.5107 88.8206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GPIO0" (shape bidirectional) (at 46.99 88.9 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9e1a39a4-9029-4925-b6de-44e365d6c553)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 38.8921 88.8206 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "TX_LED" (shape output) (at 147.32 81.28 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c6ab7cd5-909f-44cb-aa0f-58c65a03d9a1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.325 81.2006 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "CS" (shape output) (at 46.99 86.36 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid dce2b042-3970-4ab5-b443-ade1bf0c4867)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 42.0974 86.2806 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SCLK" (shape output) (at 92.71 88.9 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f906697e-9314-433e-8bab-5f549ed0a8af)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9007 88.8206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )

  (symbol (lib_id "Device:R_US") (at 213.36 44.45 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 02d7f3ca-719f-4418-aff0-c24f4a16612a)
    (property "Reference" "R4" (id 0) (at 213.36 39.8612 90))
    (property "Value" "220" (id 1) (at 213.36 42.3981 90))
    (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (id 2) (at 213.614 43.434 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 213.36 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0ea62042-7869-4fce-b98a-522b09b4c682))
    (pin "2" (uuid 7f7c6b7e-9e43-495f-9a34-bd5bf40fe0ca))
  )

  (symbol (lib_id "Connector:Raspberry_Pi_2_3") (at 69.85 76.2 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0e78efe7-0266-43d9-98a7-393b7b2d34a7)
    (property "Reference" "J1" (id 0) (at 76.9494 42.0202 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Raspberry_Pi_2_3" (id 1) (at 76.9494 44.5571 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Module:Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles" (id 2) (at 69.85 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/rpi_SCH_3bplus_1p0_reduced.pdf" (id 3) (at 69.85 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 00a28b56-da32-407d-82f8-81bab6d04ad0))
    (pin "10" (uuid c9c4b8d6-199c-4f16-8e3a-a23289f929cb))
    (pin "11" (uuid a0558e35-4fb0-4bcc-b333-3fee84dee70c))
    (pin "12" (uuid d972272a-f3ea-4780-ab53-508ac5a1edf9))
    (pin "13" (uuid b93bc21f-922e-4654-bc87-356df0007616))
    (pin "14" (uuid 5a599fab-137e-486c-b14a-4f11b1ea81be))
    (pin "15" (uuid 9335010f-b0ae-418f-94a5-ad5217fe5582))
    (pin "16" (uuid 1bd5864e-012b-47f1-a3ca-2be6fbde33f8))
    (pin "17" (uuid 052a3f12-f2d4-481b-9a2c-77eb94ca7517))
    (pin "18" (uuid 398aa4ee-9665-4eba-b469-08a4333fbb6d))
    (pin "19" (uuid e33fdd4d-a756-415b-8ac2-aec536d42934))
    (pin "2" (uuid e34412a7-2310-4b3e-b730-d847f3268374))
    (pin "20" (uuid 9d63343c-5180-4cdc-9c69-8a0b65ce247c))
    (pin "21" (uuid d56cfcc4-56cb-4bde-9a05-dc4faf3b5dbf))
    (pin "22" (uuid 8841dead-ba42-4f1c-bf58-2449c6303f2e))
    (pin "23" (uuid eaadd363-18ff-4c02-8ee7-a032eeaf32fa))
    (pin "24" (uuid 8b7eedc2-57bc-46ec-bf12-93bd8c983aa9))
    (pin "25" (uuid 8b3e1ff8-fc83-48f7-857e-6f07ea818a9d))
    (pin "26" (uuid 501adda8-deb1-49b2-9fce-70756e5571fa))
    (pin "27" (uuid a1c987a2-8e61-499f-ae7d-23de5995db3e))
    (pin "28" (uuid ee8a3abb-4031-40c6-88fa-adb3e09b89df))
    (pin "29" (uuid 15c708b7-9101-436e-9905-710aad579626))
    (pin "3" (uuid 273e0935-2473-4942-a9c1-71f47f9bb687))
    (pin "30" (uuid b1e9cbe5-5f5e-44ec-a6a7-5faad2173b20))
    (pin "31" (uuid 7cc0d1fa-ed72-4d84-8ecb-6ecaf8f3c05d))
    (pin "32" (uuid 5671b622-6d77-4757-9a38-1f0589e75cbc))
    (pin "33" (uuid 137988ba-64ed-470b-8836-202904f6e5a4))
    (pin "34" (uuid fc42bc4d-17f1-4b63-87f7-86046d2ca720))
    (pin "35" (uuid 7ce579bd-f22a-4f21-b529-3765c4576aa3))
    (pin "36" (uuid 30742819-7a6e-40f7-aa00-ba8f236d8165))
    (pin "37" (uuid c88364d6-4da8-4650-bf02-4f555568b78a))
    (pin "38" (uuid e22234ad-95c2-44c4-b79b-f3ca0330411d))
    (pin "39" (uuid 3c90de41-59fe-4637-a292-781302256668))
    (pin "4" (uuid af6ad9a5-b6cd-4c5d-928c-1303aeaf652a))
    (pin "40" (uuid 7b7bb4f8-8014-49b8-b993-4c90884a8a25))
    (pin "5" (uuid ce6da7f9-2750-47a9-a235-68c21940bd31))
    (pin "6" (uuid d6e90df3-686e-4201-9851-d6b7f013f320))
    (pin "7" (uuid 2c79c3b8-3745-4599-8194-8d0e954d388e))
    (pin "8" (uuid 68a3eb1c-4f7f-475e-a913-47cf80527ccb))
    (pin "9" (uuid d370f0b4-1d2f-428c-890a-aca6e889aaca))
  )

  (symbol (lib_id "power:GND") (at 193.04 57.15 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1f197645-8224-4375-943c-852e882199ff)
    (property "Reference" "#PWR0101" (id 0) (at 193.04 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 193.04 61.5934 0))
    (property "Footprint" "" (id 2) (at 193.04 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 193.04 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0f9f8ed0-6707-42c7-b615-5042ea97c192))
  )

  (symbol (lib_id "power:VCC") (at 63.5 41.91 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 49e59d7d-2317-4543-a147-82a6d003931e)
    (property "Reference" "#PWR0105" (id 0) (at 63.5 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 63.5 38.3342 0))
    (property "Footprint" "" (id 2) (at 63.5 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 63.5 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d9d60a07-300f-413a-871b-e8a602e361c4))
  )

  (symbol (lib_id "power:VCC") (at 219.71 41.91 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4e63294d-1a1d-4c56-96a8-9cc97b29abd3)
    (property "Reference" "#PWR0102" (id 0) (at 219.71 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 219.71 38.3342 0))
    (property "Footprint" "" (id 2) (at 219.71 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 219.71 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4d90d141-ef7a-4473-a7f4-740ada3b3fed))
  )

  (symbol (lib_id "scd31:RF4463F30") (at 132.08 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5d43580d-db84-4c38-a2cd-c1712a3fd682)
    (property "Reference" "U1" (id 0) (at 136.6394 65.0072 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "RF4463F30" (id 1) (at 136.6394 67.5441 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "npr70:RF4463F30" (id 2) (at 146.05 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 132.08 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9a8331f1-8e70-4692-8c4e-8a04db2f36f7))
    (pin "10" (uuid 6f81dc74-d3ee-4c18-b086-5909f3e9af65))
    (pin "11" (uuid 946806cd-ebdf-49b5-832f-ad60e718dee0))
    (pin "12" (uuid 702c201c-497c-4bf1-8d15-8f0299d3f473))
    (pin "13" (uuid d25a7c00-1bce-4ef2-b447-5a2b1ba708fe))
    (pin "14" (uuid 0b37ecdd-2408-4f4d-8bf9-e1e2f7b4377f))
    (pin "15" (uuid 52992700-d5ef-4176-bbc2-21295febf089))
    (pin "16" (uuid f321c5e7-0bea-45b8-8468-54b31dcc4462))
    (pin "2" (uuid fe5f6cbb-7d13-406a-8a38-dfd05d315435))
    (pin "3" (uuid eec42d99-0b90-4295-96c6-08d8f61fa185))
    (pin "4" (uuid b54ebce9-2dc4-4868-ac31-4059eb0f21cf))
    (pin "5" (uuid f39a2a84-f9f0-4fd5-b1e0-7fa678e485d7))
    (pin "6" (uuid 7df37593-f007-42da-b630-88084eeb184a))
    (pin "7" (uuid 48a96183-fc1f-46cb-973e-51683a303fdc))
    (pin "8" (uuid 5a5644f0-47e0-457c-9ab2-420ebae28d47))
    (pin "9" (uuid 867d3ddc-9e4e-4d8c-8318-14023ea72ff8))
    (pin "SHLD_1" (uuid f451e4db-dc86-494e-a14f-5add98a804b7))
    (pin "SHLD_2" (uuid f35744de-d1e1-4f87-81ef-8dc17f4e51fd))
    (pin "SHLD_3" (uuid f2a2f366-5c06-4678-b069-86b7361a22bc))
    (pin "SHLD_4" (uuid 7418ebdb-63b1-4838-844e-ee98b5546ff2))
  )

  (symbol (lib_id "Transistor_BJT:2N3904") (at 190.5 49.53 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 702a2571-57eb-4c2f-bef4-61f4e7050325)
    (property "Reference" "Q1" (id 0) (at 195.3514 48.6953 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "2N3904" (id 1) (at 195.3514 51.2322 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 195.58 51.435 0)
      (effects (font (size 1.27 1.27) italic) (justify left) hide)
    )
    (property "Datasheet" "https://www.onsemi.com/pub/Collateral/2N3903-D.PDF" (id 3) (at 190.5 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 7f60bffc-5446-4474-8115-0d2520f10025))
    (pin "2" (uuid 5cf18eaf-137a-4251-9529-9a94b141cf2f))
    (pin "3" (uuid c5d7cf3e-55a8-4a41-b3f6-fe4024f06df3))
  )

  (symbol (lib_id "Device:LED") (at 203.2 44.45 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 75a28a88-4b3d-437d-9a61-59d29dd33de9)
    (property "Reference" "D1" (id 0) (at 201.6125 39.4802 0))
    (property "Value" "LED" (id 1) (at 201.6125 42.0171 0))
    (property "Footprint" "LED_THT:LED_D5.0mm" (id 2) (at 203.2 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 203.2 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d37ac778-0bb9-4c94-8394-aa7ab1e1ebe2))
    (pin "2" (uuid 7cf8cd58-be6e-451e-be63-375b0ba0bcce))
  )

  (symbol (lib_id "power:GND") (at 118.11 74.93 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 79479277-6468-4e4f-9a83-9abd7b01c918)
    (property "Reference" "#PWR0110" (id 0) (at 118.11 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 118.11 79.3734 0))
    (property "Footprint" "" (id 2) (at 118.11 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 118.11 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 25c2c7db-fa0a-4be2-bf33-0fbd5a0db62b))
  )

  (symbol (lib_id "power:GND") (at 120.65 90.17 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7e16055c-60c7-4fa6-88c8-eeacda6eff18)
    (property "Reference" "#PWR0109" (id 0) (at 120.65 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 120.65 94.6134 0))
    (property "Footprint" "" (id 2) (at 120.65 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 120.65 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1f6a39c1-00f0-48ad-81a7-2a5f68ab26a6))
  )

  (symbol (lib_id "power:GND") (at 135.89 97.79 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 828ec4fe-521a-4d96-be6f-caf7d9e456fb)
    (property "Reference" "#PWR0107" (id 0) (at 135.89 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 135.89 102.2334 0))
    (property "Footprint" "" (id 2) (at 135.89 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 135.89 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4a063d5d-3efb-4e93-b52e-fa0d02297980))
  )

  (symbol (lib_id "power:GND") (at 128.27 64.77 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 88480e7d-58d4-4689-a1d2-81cef40ee4b3)
    (property "Reference" "#PWR0108" (id 0) (at 128.27 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 128.27 69.2134 0))
    (property "Footprint" "" (id 2) (at 128.27 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 128.27 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 36061ec2-2e17-4bf0-a232-78903a18130d))
  )

  (symbol (lib_id "Device:R_US") (at 190.5 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8df4f743-6bbe-4eb3-8153-274b67d84664)
    (property "Reference" "R2" (id 0) (at 190.5 75.4212 90))
    (property "Value" "10K" (id 1) (at 190.5 77.9581 90))
    (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (id 2) (at 190.754 78.994 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 190.5 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0a792b11-e4f7-44c6-8658-ca1c848831ff))
    (pin "2" (uuid a4a96910-fac0-4824-b931-ecf913cd2e45))
  )

  (symbol (lib_id "Device:R_US") (at 190.5 87.63 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9302e662-345c-465e-b776-a4dcae344834)
    (property "Reference" "R3" (id 0) (at 190.5 83.0412 90))
    (property "Value" "10K" (id 1) (at 190.5 85.5781 90))
    (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (id 2) (at 190.754 86.614 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 190.5 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ef7eacd0-ed79-4d74-a561-5c406ff9b350))
    (pin "2" (uuid 47d16bff-06b9-41f2-bc88-7e2f60816729))
  )

  (symbol (lib_id "power:+3V3") (at 72.39 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9af003ee-8e6a-4ea2-8fab-1606f7e41b96)
    (property "Reference" "#PWR0106" (id 0) (at 72.39 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3V3" (id 1) (at 72.39 37.0642 0))
    (property "Footprint" "" (id 2) (at 72.39 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 72.39 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 17e70b39-4e00-4474-9ae7-d82605a99b01))
  )

  (symbol (lib_id "Device:C_Polarized") (at 124.46 44.45 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b8b0e121-5d2d-4a43-b692-faee93697564)
    (property "Reference" "C1" (id 0) (at 127.381 42.7263 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "C_Polarized" (id 1) (at 127.381 45.2632 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 125.4252 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 124.46 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 813f8526-2a39-4afe-919f-08beb46f2e5a))
    (pin "2" (uuid 9728b251-43d7-44d2-8063-8f9ee8f428a4))
  )

  (symbol (lib_id "Device:C") (at 135.89 44.45 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c8c6f9a6-48c6-4052-a1a5-05120e7de7f8)
    (property "Reference" "C2" (id 0) (at 138.811 43.6153 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "C" (id 1) (at 138.811 46.1522 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_THT:C_Radial_D4.0mm_H5.0mm_P1.50mm" (id 2) (at 136.8552 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 135.89 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d02546d9-876c-444f-a7af-d96dffe11496))
    (pin "2" (uuid f9fb8a3c-bb5f-4990-bffb-990d4c311063))
  )

  (symbol (lib_id "power:VCC") (at 135.89 38.1 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid dd28fd00-c885-418a-8e13-745b5f939f0b)
    (property "Reference" "#PWR0113" (id 0) (at 135.89 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 135.89 34.5242 0))
    (property "Footprint" "" (id 2) (at 135.89 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 135.89 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c19e7c64-36bd-4dc5-bab8-5d76d45577e9))
  )

  (symbol (lib_id "Connector:Conn_Coaxial") (at 156.21 68.58 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e9a9c22c-3a8d-403a-9f75-49945e5bb218)
    (property "Reference" "J2" (id 0) (at 158.75 68.0385 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Conn_Coaxial" (id 1) (at 158.75 70.5754 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132289_EdgeMount" (id 2) (at 156.21 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" " ~" (id 3) (at 156.21 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f9eb96e0-81e5-4acc-bf58-f57665fd2b72))
    (pin "2" (uuid d1deb092-0416-4f30-8670-931a96a672d9))
  )

  (symbol (lib_id "power:VCC") (at 120.65 69.85 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid eddd4dd3-7a43-4c3e-9cba-a2c1f8c39c6f)
    (property "Reference" "#PWR0111" (id 0) (at 120.65 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 120.65 66.2742 0))
    (property "Footprint" "" (id 2) (at 120.65 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 120.65 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4b0b0f39-f58a-4cbd-8d87-9be13bf13848))
  )

  (symbol (lib_id "power:GND") (at 135.89 50.8 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f26116c0-2059-4461-87f5-412de7f6e3ab)
    (property "Reference" "#PWR0112" (id 0) (at 135.89 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 135.89 55.2434 0))
    (property "Footprint" "" (id 2) (at 135.89 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 135.89 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c4205398-c348-4a00-a6df-0bd013744f3e))
  )

  (symbol (lib_id "power:+3V3") (at 185.42 77.47 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fad63df4-84d1-4494-9fb1-afb6946197bc)
    (property "Reference" "#PWR0103" (id 0) (at 185.42 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3V3" (id 1) (at 185.42 73.8942 0))
    (property "Footprint" "" (id 2) (at 185.42 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 185.42 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 94595f67-95c2-43a2-86ea-ac1ed5deb67d))
  )

  (symbol (lib_id "power:GND") (at 77.47 111.76 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fc0f61ce-9112-4403-ba37-3f2413fefdf4)
    (property "Reference" "#PWR0104" (id 0) (at 77.47 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 77.47 116.2034 0))
    (property "Footprint" "" (id 2) (at 77.47 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 77.47 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid afdf4d88-0dc9-47fe-a234-93264a5f790a))
  )

  (symbol (lib_id "Device:R_US") (at 177.8 49.53 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ffe04056-4b6b-4eee-b74d-82aef548955f)
    (property "Reference" "R1" (id 0) (at 177.8 44.9412 90))
    (property "Value" "1K" (id 1) (at 177.8 47.4781 90))
    (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (id 2) (at 178.054 48.514 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 177.8 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 28ab3545-2e8a-4c6d-9ecc-fab6a79f5e13))
    (pin "2" (uuid 47827e97-7417-4b92-a7fc-01426db4dba2))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/1f197645-8224-4375-943c-852e882199ff"
      (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
    )
    (path "/4e63294d-1a1d-4c56-96a8-9cc97b29abd3"
      (reference "#PWR0102") (unit 1) (value "VCC") (footprint "")
    )
    (path "/fad63df4-84d1-4494-9fb1-afb6946197bc"
      (reference "#PWR0103") (unit 1) (value "+3V3") (footprint "")
    )
    (path "/fc0f61ce-9112-4403-ba37-3f2413fefdf4"
      (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
    )
    (path "/49e59d7d-2317-4543-a147-82a6d003931e"
      (reference "#PWR0105") (unit 1) (value "VCC") (footprint "")
    )
    (path "/9af003ee-8e6a-4ea2-8fab-1606f7e41b96"
      (reference "#PWR0106") (unit 1) (value "+3V3") (footprint "")
    )
    (path "/828ec4fe-521a-4d96-be6f-caf7d9e456fb"
      (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
    )
    (path "/88480e7d-58d4-4689-a1d2-81cef40ee4b3"
      (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
    )
    (path "/7e16055c-60c7-4fa6-88c8-eeacda6eff18"
      (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
    )
    (path "/79479277-6468-4e4f-9a83-9abd7b01c918"
      (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
    )
    (path "/eddd4dd3-7a43-4c3e-9cba-a2c1f8c39c6f"
      (reference "#PWR0111") (unit 1) (value "VCC") (footprint "")
    )
    (path "/f26116c0-2059-4461-87f5-412de7f6e3ab"
      (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
    )
    (path "/dd28fd00-c885-418a-8e13-745b5f939f0b"
      (reference "#PWR0113") (unit 1) (value "VCC") (footprint "")
    )
    (path "/b8b0e121-5d2d-4a43-b692-faee93697564"
      (reference "C1") (unit 1) (value "C_Polarized") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm")
    )
    (path "/c8c6f9a6-48c6-4052-a1a5-05120e7de7f8"
      (reference "C2") (unit 1) (value "C") (footprint "Capacitor_THT:C_Radial_D4.0mm_H5.0mm_P1.50mm")
    )
    (path "/75a28a88-4b3d-437d-9a61-59d29dd33de9"
      (reference "D1") (unit 1) (value "LED") (footprint "LED_THT:LED_D5.0mm")
    )
    (path "/0e78efe7-0266-43d9-98a7-393b7b2d34a7"
      (reference "J1") (unit 1) (value "Raspberry_Pi_2_3") (footprint "Module:Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles")
    )
    (path "/e9a9c22c-3a8d-403a-9f75-49945e5bb218"
      (reference "J2") (unit 1) (value "Conn_Coaxial") (footprint "Connector_Coaxial:SMA_Amphenol_132289_EdgeMount")
    )
    (path "/702a2571-57eb-4c2f-bef4-61f4e7050325"
      (reference "Q1") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline")
    )
    (path "/ffe04056-4b6b-4eee-b74d-82aef548955f"
      (reference "R1") (unit 1) (value "1K") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical")
    )
    (path "/8df4f743-6bbe-4eb3-8153-274b67d84664"
      (reference "R2") (unit 1) (value "10K") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical")
    )
    (path "/9302e662-345c-465e-b776-a4dcae344834"
      (reference "R3") (unit 1) (value "10K") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical")
    )
    (path "/02d7f3ca-719f-4418-aff0-c24f4a16612a"
      (reference "R4") (unit 1) (value "220") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical")
    )
    (path "/5d43580d-db84-4c38-a2cd-c1712a3fd682"
      (reference "U1") (unit 1) (value "RF4463F30") (footprint "npr70:RF4463F30")
    )
  )
)