@dheerajsom/pinhub 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{README.md → CLI.md} +53 -13
- package/LICENSE +21 -0
- package/SETUP.md +16 -5
- package/dist/boards/arduino-uno-r3.js +1 -1
- package/dist/boards/esp32-devkit-v1.js +5 -4
- package/dist/boards/generated.js +1044 -218
- package/dist/cli.js +17 -1
- package/dist/model.d.ts +3 -0
- package/dist/render/board.d.ts +4 -2
- package/dist/render/board.js +174 -96
- package/dist/render/chars.d.ts +4 -0
- package/dist/render/chars.js +8 -0
- package/dist/render/meta.d.ts +5 -5
- package/dist/render/meta.js +118 -37
- package/dist/render/text.d.ts +22 -0
- package/dist/render/text.js +163 -0
- package/dist/render/theme.js +4 -1
- package/dist/run.d.ts +4 -2
- package/dist/run.js +96 -50
- package/dist/status.d.ts +28 -0
- package/dist/status.js +63 -0
- package/dist/version.d.ts +2 -2
- package/dist/version.js +5 -2
- package/package.json +17 -5
package/dist/boards/generated.js
CHANGED
|
@@ -39,12 +39,14 @@ export const generatedBoards = [
|
|
|
39
39
|
{
|
|
40
40
|
"title": "Raspberry Pi GPIO documentation",
|
|
41
41
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
42
|
-
"official": true
|
|
42
|
+
"official": true,
|
|
43
|
+
"type": "Docs"
|
|
43
44
|
},
|
|
44
45
|
{
|
|
45
46
|
"title": "Raspberry Pi 4 datasheet",
|
|
46
47
|
"url": "https://datasheets.raspberrypi.com/rpi4/raspberry-pi-4-datasheet.pdf",
|
|
47
|
-
"official": true
|
|
48
|
+
"official": true,
|
|
49
|
+
"type": "Datasheet"
|
|
48
50
|
}
|
|
49
51
|
],
|
|
50
52
|
"headers": [
|
|
@@ -514,12 +516,14 @@ export const generatedBoards = [
|
|
|
514
516
|
{
|
|
515
517
|
"title": "Raspberry Pi GPIO documentation",
|
|
516
518
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
517
|
-
"official": true
|
|
519
|
+
"official": true,
|
|
520
|
+
"type": "Docs"
|
|
518
521
|
},
|
|
519
522
|
{
|
|
520
523
|
"title": "Raspberry Pi Zero 2 W product brief",
|
|
521
524
|
"url": "https://datasheets.raspberrypi.com/rpizero2/raspberry-pi-zero-2-w-product-brief.pdf",
|
|
522
|
-
"official": true
|
|
525
|
+
"official": true,
|
|
526
|
+
"type": "Datasheet"
|
|
523
527
|
}
|
|
524
528
|
],
|
|
525
529
|
"headers": [
|
|
@@ -973,7 +977,7 @@ export const generatedBoards = [
|
|
|
973
977
|
},
|
|
974
978
|
{
|
|
975
979
|
"severity": "info",
|
|
976
|
-
"text": "UNO R4
|
|
980
|
+
"text": "UNO Rev3 and UNO R4 share the classic shield header footprint and 5 V operating voltage, but MCU-specific alternate functions differ."
|
|
977
981
|
},
|
|
978
982
|
{
|
|
979
983
|
"severity": "info",
|
|
@@ -988,12 +992,14 @@ export const generatedBoards = [
|
|
|
988
992
|
{
|
|
989
993
|
"title": "Arduino UNO R4 WiFi documentation",
|
|
990
994
|
"url": "https://docs.arduino.cc/hardware/uno-r4-wifi",
|
|
991
|
-
"official": true
|
|
995
|
+
"official": true,
|
|
996
|
+
"type": "Docs"
|
|
992
997
|
},
|
|
993
998
|
{
|
|
994
999
|
"title": "UNO R4 WiFi cheat sheet",
|
|
995
1000
|
"url": "https://docs.arduino.cc/tutorials/uno-r4-wifi/cheat-sheet",
|
|
996
|
-
"official": true
|
|
1001
|
+
"official": true,
|
|
1002
|
+
"type": "Manual"
|
|
997
1003
|
}
|
|
998
1004
|
],
|
|
999
1005
|
"headers": [
|
|
@@ -1287,12 +1293,14 @@ export const generatedBoards = [
|
|
|
1287
1293
|
{
|
|
1288
1294
|
"title": "Arduino Nano ESP32 documentation",
|
|
1289
1295
|
"url": "https://docs.arduino.cc/hardware/nano-esp32",
|
|
1290
|
-
"official": true
|
|
1296
|
+
"official": true,
|
|
1297
|
+
"type": "Docs"
|
|
1291
1298
|
},
|
|
1292
1299
|
{
|
|
1293
1300
|
"title": "Nano ESP32 datasheet",
|
|
1294
1301
|
"url": "https://docs.arduino.cc/resources/datasheets/ABX00083-datasheet.pdf",
|
|
1295
|
-
"official": true
|
|
1302
|
+
"official": true,
|
|
1303
|
+
"type": "Datasheet"
|
|
1296
1304
|
}
|
|
1297
1305
|
],
|
|
1298
1306
|
"headers": [
|
|
@@ -1659,6 +1667,625 @@ export const generatedBoards = [
|
|
|
1659
1667
|
}
|
|
1660
1668
|
]
|
|
1661
1669
|
},
|
|
1670
|
+
{
|
|
1671
|
+
"id": "esp32-devkitc",
|
|
1672
|
+
"name": "ESP32-DevKitC V4",
|
|
1673
|
+
"manufacturer": "Espressif",
|
|
1674
|
+
"aliases": [
|
|
1675
|
+
"devkitc",
|
|
1676
|
+
"esp32-devkitc-v4"
|
|
1677
|
+
],
|
|
1678
|
+
"description": "Espressif's official 38-pin ESP32 development board, with module IO broken out across J2 and J3 breadboard-friendly headers.",
|
|
1679
|
+
"warnings": [
|
|
1680
|
+
{
|
|
1681
|
+
"severity": "warning",
|
|
1682
|
+
"text": "Use only one power source at a time: USB, 5V/GND, or 3V3/GND."
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"severity": "warning",
|
|
1686
|
+
"text": "D0, D1, D2, D3, CMD, and CLK connect to module flash and are not recommended for other uses."
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"severity": "warning",
|
|
1690
|
+
"text": "GPIO0, GPIO2, GPIO5, GPIO12, and GPIO15 are boot-strapping pins; external pulls can alter startup."
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"severity": "warning",
|
|
1694
|
+
"text": "GPIO16 and GPIO17 are unavailable on ESP32-WROVER module variants; verify the installed module and board revision."
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"severity": "warning",
|
|
1698
|
+
"text": "On early ESP32-DevKitC V4 revisions, C15 can cause Download-mode boots or disturb a GPIO0 clock signal; follow Espressif's Note on C15 if either issue occurs."
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"severity": "warning",
|
|
1702
|
+
"text": "GPIO uses 3.3 V logic; never apply 5 V to an IO pin."
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"severity": "info",
|
|
1706
|
+
"text": "Logic level: 3.3 V GPIO. Power: Micro-USB, 5 V VIN, 3.3 V regulator."
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"severity": "info",
|
|
1710
|
+
"text": "Official Espressif header numbering for ESP32-DevKitC V4; J2 and J3 each use positions 1 through 19."
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"severity": "info",
|
|
1714
|
+
"text": "D0, D1, D2, D3, CMD, and CLK connect to module flash and are not recommended for general use."
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"severity": "info",
|
|
1718
|
+
"text": "GPIO16 and GPIO17 are available on ESP32-WROOM/SOLO modules but reserved on ESP32-WROVER modules."
|
|
1719
|
+
}
|
|
1720
|
+
],
|
|
1721
|
+
"sources": [
|
|
1722
|
+
{
|
|
1723
|
+
"title": "ESP32-DevKitC V4 user guide",
|
|
1724
|
+
"url": "https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32/esp32-devkitc/user_guide.html",
|
|
1725
|
+
"official": true,
|
|
1726
|
+
"type": "Manual"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"title": "Espressif ESP32-DevKitC product page",
|
|
1730
|
+
"url": "https://www.espressif.com/en/products/devkits/esp32-devkitc",
|
|
1731
|
+
"official": true,
|
|
1732
|
+
"type": "Docs"
|
|
1733
|
+
}
|
|
1734
|
+
],
|
|
1735
|
+
"headers": [
|
|
1736
|
+
{
|
|
1737
|
+
"id": "j2",
|
|
1738
|
+
"name": "J2",
|
|
1739
|
+
"description": "ESP32-DevKitC V4 J2/J3 headers",
|
|
1740
|
+
"layout": {
|
|
1741
|
+
"rows": 19,
|
|
1742
|
+
"columns": 1
|
|
1743
|
+
},
|
|
1744
|
+
"pins": [
|
|
1745
|
+
{
|
|
1746
|
+
"physical": 1,
|
|
1747
|
+
"position": {
|
|
1748
|
+
"row": 1,
|
|
1749
|
+
"column": 1
|
|
1750
|
+
},
|
|
1751
|
+
"label": "3V3",
|
|
1752
|
+
"category": "power"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"physical": 2,
|
|
1756
|
+
"position": {
|
|
1757
|
+
"row": 2,
|
|
1758
|
+
"column": 1
|
|
1759
|
+
},
|
|
1760
|
+
"label": "EN",
|
|
1761
|
+
"category": "reserved"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"physical": 3,
|
|
1765
|
+
"position": {
|
|
1766
|
+
"row": 3,
|
|
1767
|
+
"column": 1
|
|
1768
|
+
},
|
|
1769
|
+
"label": "VP",
|
|
1770
|
+
"category": "analog",
|
|
1771
|
+
"functions": [
|
|
1772
|
+
"GPIO36",
|
|
1773
|
+
"ADC1_CH0"
|
|
1774
|
+
],
|
|
1775
|
+
"notes": [
|
|
1776
|
+
"Input only"
|
|
1777
|
+
]
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"physical": 4,
|
|
1781
|
+
"position": {
|
|
1782
|
+
"row": 4,
|
|
1783
|
+
"column": 1
|
|
1784
|
+
},
|
|
1785
|
+
"label": "VN",
|
|
1786
|
+
"category": "analog",
|
|
1787
|
+
"functions": [
|
|
1788
|
+
"GPIO39",
|
|
1789
|
+
"ADC1_CH3"
|
|
1790
|
+
],
|
|
1791
|
+
"notes": [
|
|
1792
|
+
"Input only"
|
|
1793
|
+
]
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"physical": 5,
|
|
1797
|
+
"position": {
|
|
1798
|
+
"row": 5,
|
|
1799
|
+
"column": 1
|
|
1800
|
+
},
|
|
1801
|
+
"label": "IO34",
|
|
1802
|
+
"category": "analog",
|
|
1803
|
+
"functions": [
|
|
1804
|
+
"GPIO34",
|
|
1805
|
+
"ADC1_CH6"
|
|
1806
|
+
],
|
|
1807
|
+
"notes": [
|
|
1808
|
+
"Input only"
|
|
1809
|
+
]
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"physical": 6,
|
|
1813
|
+
"position": {
|
|
1814
|
+
"row": 6,
|
|
1815
|
+
"column": 1
|
|
1816
|
+
},
|
|
1817
|
+
"label": "IO35",
|
|
1818
|
+
"category": "analog",
|
|
1819
|
+
"functions": [
|
|
1820
|
+
"GPIO35",
|
|
1821
|
+
"ADC1_CH7"
|
|
1822
|
+
],
|
|
1823
|
+
"notes": [
|
|
1824
|
+
"Input only"
|
|
1825
|
+
]
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"physical": 7,
|
|
1829
|
+
"position": {
|
|
1830
|
+
"row": 7,
|
|
1831
|
+
"column": 1
|
|
1832
|
+
},
|
|
1833
|
+
"label": "IO32",
|
|
1834
|
+
"category": "analog",
|
|
1835
|
+
"functions": [
|
|
1836
|
+
"GPIO32",
|
|
1837
|
+
"ADC1_CH4",
|
|
1838
|
+
"Touch9"
|
|
1839
|
+
]
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"physical": 8,
|
|
1843
|
+
"position": {
|
|
1844
|
+
"row": 8,
|
|
1845
|
+
"column": 1
|
|
1846
|
+
},
|
|
1847
|
+
"label": "IO33",
|
|
1848
|
+
"category": "analog",
|
|
1849
|
+
"functions": [
|
|
1850
|
+
"GPIO33",
|
|
1851
|
+
"ADC1_CH5",
|
|
1852
|
+
"Touch8"
|
|
1853
|
+
]
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"physical": 9,
|
|
1857
|
+
"position": {
|
|
1858
|
+
"row": 9,
|
|
1859
|
+
"column": 1
|
|
1860
|
+
},
|
|
1861
|
+
"label": "IO25",
|
|
1862
|
+
"category": "analog",
|
|
1863
|
+
"functions": [
|
|
1864
|
+
"GPIO25",
|
|
1865
|
+
"ADC2_CH8",
|
|
1866
|
+
"DAC1"
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"physical": 10,
|
|
1871
|
+
"position": {
|
|
1872
|
+
"row": 10,
|
|
1873
|
+
"column": 1
|
|
1874
|
+
},
|
|
1875
|
+
"label": "IO26",
|
|
1876
|
+
"category": "analog",
|
|
1877
|
+
"functions": [
|
|
1878
|
+
"GPIO26",
|
|
1879
|
+
"ADC2_CH9",
|
|
1880
|
+
"DAC2"
|
|
1881
|
+
]
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"physical": 11,
|
|
1885
|
+
"position": {
|
|
1886
|
+
"row": 11,
|
|
1887
|
+
"column": 1
|
|
1888
|
+
},
|
|
1889
|
+
"label": "IO27",
|
|
1890
|
+
"category": "gpio",
|
|
1891
|
+
"functions": [
|
|
1892
|
+
"GPIO27",
|
|
1893
|
+
"ADC2_CH7",
|
|
1894
|
+
"Touch7"
|
|
1895
|
+
]
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"physical": 12,
|
|
1899
|
+
"position": {
|
|
1900
|
+
"row": 12,
|
|
1901
|
+
"column": 1
|
|
1902
|
+
},
|
|
1903
|
+
"label": "IO14",
|
|
1904
|
+
"category": "communication",
|
|
1905
|
+
"functions": [
|
|
1906
|
+
"GPIO14",
|
|
1907
|
+
"ADC2_CH6",
|
|
1908
|
+
"Touch6",
|
|
1909
|
+
"MTMS"
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"physical": 13,
|
|
1914
|
+
"position": {
|
|
1915
|
+
"row": 13,
|
|
1916
|
+
"column": 1
|
|
1917
|
+
},
|
|
1918
|
+
"label": "IO12",
|
|
1919
|
+
"category": "reserved",
|
|
1920
|
+
"functions": [
|
|
1921
|
+
"GPIO12",
|
|
1922
|
+
"ADC2_CH5",
|
|
1923
|
+
"Touch5",
|
|
1924
|
+
"MTDI"
|
|
1925
|
+
],
|
|
1926
|
+
"notes": [
|
|
1927
|
+
"Boot strap"
|
|
1928
|
+
]
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"physical": 14,
|
|
1932
|
+
"position": {
|
|
1933
|
+
"row": 14,
|
|
1934
|
+
"column": 1
|
|
1935
|
+
},
|
|
1936
|
+
"label": "GND",
|
|
1937
|
+
"category": "ground"
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"physical": 15,
|
|
1941
|
+
"position": {
|
|
1942
|
+
"row": 15,
|
|
1943
|
+
"column": 1
|
|
1944
|
+
},
|
|
1945
|
+
"label": "IO13",
|
|
1946
|
+
"category": "communication",
|
|
1947
|
+
"functions": [
|
|
1948
|
+
"GPIO13",
|
|
1949
|
+
"ADC2_CH4",
|
|
1950
|
+
"Touch4",
|
|
1951
|
+
"MTCK"
|
|
1952
|
+
]
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"physical": 16,
|
|
1956
|
+
"position": {
|
|
1957
|
+
"row": 16,
|
|
1958
|
+
"column": 1
|
|
1959
|
+
},
|
|
1960
|
+
"label": "D2",
|
|
1961
|
+
"category": "reserved",
|
|
1962
|
+
"functions": [
|
|
1963
|
+
"GPIO9",
|
|
1964
|
+
"Flash HD"
|
|
1965
|
+
],
|
|
1966
|
+
"notes": [
|
|
1967
|
+
"Connected to module flash"
|
|
1968
|
+
]
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"physical": 17,
|
|
1972
|
+
"position": {
|
|
1973
|
+
"row": 17,
|
|
1974
|
+
"column": 1
|
|
1975
|
+
},
|
|
1976
|
+
"label": "D3",
|
|
1977
|
+
"category": "reserved",
|
|
1978
|
+
"functions": [
|
|
1979
|
+
"GPIO10",
|
|
1980
|
+
"Flash WP"
|
|
1981
|
+
],
|
|
1982
|
+
"notes": [
|
|
1983
|
+
"Connected to module flash"
|
|
1984
|
+
]
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"physical": 18,
|
|
1988
|
+
"position": {
|
|
1989
|
+
"row": 18,
|
|
1990
|
+
"column": 1
|
|
1991
|
+
},
|
|
1992
|
+
"label": "CMD",
|
|
1993
|
+
"category": "reserved",
|
|
1994
|
+
"functions": [
|
|
1995
|
+
"GPIO11",
|
|
1996
|
+
"Flash CMD"
|
|
1997
|
+
],
|
|
1998
|
+
"notes": [
|
|
1999
|
+
"Connected to module flash"
|
|
2000
|
+
]
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"physical": 19,
|
|
2004
|
+
"position": {
|
|
2005
|
+
"row": 19,
|
|
2006
|
+
"column": 1
|
|
2007
|
+
},
|
|
2008
|
+
"label": "5V",
|
|
2009
|
+
"category": "power"
|
|
2010
|
+
}
|
|
2011
|
+
]
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"id": "j3",
|
|
2015
|
+
"name": "J3",
|
|
2016
|
+
"layout": {
|
|
2017
|
+
"rows": 19,
|
|
2018
|
+
"columns": 1
|
|
2019
|
+
},
|
|
2020
|
+
"pins": [
|
|
2021
|
+
{
|
|
2022
|
+
"physical": 1,
|
|
2023
|
+
"position": {
|
|
2024
|
+
"row": 1,
|
|
2025
|
+
"column": 1
|
|
2026
|
+
},
|
|
2027
|
+
"label": "GND",
|
|
2028
|
+
"category": "ground"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"physical": 2,
|
|
2032
|
+
"position": {
|
|
2033
|
+
"row": 2,
|
|
2034
|
+
"column": 1
|
|
2035
|
+
},
|
|
2036
|
+
"label": "IO23",
|
|
2037
|
+
"category": "communication",
|
|
2038
|
+
"functions": [
|
|
2039
|
+
"GPIO23"
|
|
2040
|
+
]
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"physical": 3,
|
|
2044
|
+
"position": {
|
|
2045
|
+
"row": 3,
|
|
2046
|
+
"column": 1
|
|
2047
|
+
},
|
|
2048
|
+
"label": "IO22",
|
|
2049
|
+
"category": "communication",
|
|
2050
|
+
"functions": [
|
|
2051
|
+
"GPIO22"
|
|
2052
|
+
]
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
"physical": 4,
|
|
2056
|
+
"position": {
|
|
2057
|
+
"row": 4,
|
|
2058
|
+
"column": 1
|
|
2059
|
+
},
|
|
2060
|
+
"label": "TX",
|
|
2061
|
+
"category": "communication",
|
|
2062
|
+
"functions": [
|
|
2063
|
+
"GPIO1",
|
|
2064
|
+
"U0TXD"
|
|
2065
|
+
]
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"physical": 5,
|
|
2069
|
+
"position": {
|
|
2070
|
+
"row": 5,
|
|
2071
|
+
"column": 1
|
|
2072
|
+
},
|
|
2073
|
+
"label": "RX",
|
|
2074
|
+
"category": "communication",
|
|
2075
|
+
"functions": [
|
|
2076
|
+
"GPIO3",
|
|
2077
|
+
"U0RXD"
|
|
2078
|
+
]
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"physical": 6,
|
|
2082
|
+
"position": {
|
|
2083
|
+
"row": 6,
|
|
2084
|
+
"column": 1
|
|
2085
|
+
},
|
|
2086
|
+
"label": "IO21",
|
|
2087
|
+
"category": "communication",
|
|
2088
|
+
"functions": [
|
|
2089
|
+
"GPIO21"
|
|
2090
|
+
]
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"physical": 7,
|
|
2094
|
+
"position": {
|
|
2095
|
+
"row": 7,
|
|
2096
|
+
"column": 1
|
|
2097
|
+
},
|
|
2098
|
+
"label": "GND",
|
|
2099
|
+
"category": "ground"
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
"physical": 8,
|
|
2103
|
+
"position": {
|
|
2104
|
+
"row": 8,
|
|
2105
|
+
"column": 1
|
|
2106
|
+
},
|
|
2107
|
+
"label": "IO19",
|
|
2108
|
+
"category": "communication",
|
|
2109
|
+
"functions": [
|
|
2110
|
+
"GPIO19"
|
|
2111
|
+
]
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
"physical": 9,
|
|
2115
|
+
"position": {
|
|
2116
|
+
"row": 9,
|
|
2117
|
+
"column": 1
|
|
2118
|
+
},
|
|
2119
|
+
"label": "IO18",
|
|
2120
|
+
"category": "communication",
|
|
2121
|
+
"functions": [
|
|
2122
|
+
"GPIO18"
|
|
2123
|
+
]
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"physical": 10,
|
|
2127
|
+
"position": {
|
|
2128
|
+
"row": 10,
|
|
2129
|
+
"column": 1
|
|
2130
|
+
},
|
|
2131
|
+
"label": "IO5",
|
|
2132
|
+
"category": "reserved",
|
|
2133
|
+
"functions": [
|
|
2134
|
+
"GPIO5"
|
|
2135
|
+
],
|
|
2136
|
+
"notes": [
|
|
2137
|
+
"Boot strap"
|
|
2138
|
+
]
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"physical": 11,
|
|
2142
|
+
"position": {
|
|
2143
|
+
"row": 11,
|
|
2144
|
+
"column": 1
|
|
2145
|
+
},
|
|
2146
|
+
"label": "IO17",
|
|
2147
|
+
"category": "communication",
|
|
2148
|
+
"functions": [
|
|
2149
|
+
"GPIO17"
|
|
2150
|
+
],
|
|
2151
|
+
"notes": [
|
|
2152
|
+
"Reserved on ESP32-WROVER modules"
|
|
2153
|
+
]
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"physical": 12,
|
|
2157
|
+
"position": {
|
|
2158
|
+
"row": 12,
|
|
2159
|
+
"column": 1
|
|
2160
|
+
},
|
|
2161
|
+
"label": "IO16",
|
|
2162
|
+
"category": "communication",
|
|
2163
|
+
"functions": [
|
|
2164
|
+
"GPIO16"
|
|
2165
|
+
],
|
|
2166
|
+
"notes": [
|
|
2167
|
+
"Reserved on ESP32-WROVER modules"
|
|
2168
|
+
]
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"physical": 13,
|
|
2172
|
+
"position": {
|
|
2173
|
+
"row": 13,
|
|
2174
|
+
"column": 1
|
|
2175
|
+
},
|
|
2176
|
+
"label": "IO4",
|
|
2177
|
+
"category": "gpio",
|
|
2178
|
+
"functions": [
|
|
2179
|
+
"GPIO4",
|
|
2180
|
+
"ADC2_CH0",
|
|
2181
|
+
"Touch0"
|
|
2182
|
+
]
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"physical": 14,
|
|
2186
|
+
"position": {
|
|
2187
|
+
"row": 14,
|
|
2188
|
+
"column": 1
|
|
2189
|
+
},
|
|
2190
|
+
"label": "IO0",
|
|
2191
|
+
"category": "reserved",
|
|
2192
|
+
"functions": [
|
|
2193
|
+
"GPIO0",
|
|
2194
|
+
"ADC2_CH1",
|
|
2195
|
+
"Touch1",
|
|
2196
|
+
"BOOT"
|
|
2197
|
+
],
|
|
2198
|
+
"notes": [
|
|
2199
|
+
"Boot strap"
|
|
2200
|
+
]
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"physical": 15,
|
|
2204
|
+
"position": {
|
|
2205
|
+
"row": 15,
|
|
2206
|
+
"column": 1
|
|
2207
|
+
},
|
|
2208
|
+
"label": "IO2",
|
|
2209
|
+
"category": "reserved",
|
|
2210
|
+
"functions": [
|
|
2211
|
+
"GPIO2",
|
|
2212
|
+
"ADC2_CH2",
|
|
2213
|
+
"Touch2"
|
|
2214
|
+
],
|
|
2215
|
+
"notes": [
|
|
2216
|
+
"Boot strap"
|
|
2217
|
+
]
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"physical": 16,
|
|
2221
|
+
"position": {
|
|
2222
|
+
"row": 16,
|
|
2223
|
+
"column": 1
|
|
2224
|
+
},
|
|
2225
|
+
"label": "IO15",
|
|
2226
|
+
"category": "reserved",
|
|
2227
|
+
"functions": [
|
|
2228
|
+
"GPIO15",
|
|
2229
|
+
"ADC2_CH3",
|
|
2230
|
+
"Touch3",
|
|
2231
|
+
"MTDO"
|
|
2232
|
+
],
|
|
2233
|
+
"notes": [
|
|
2234
|
+
"Boot strap"
|
|
2235
|
+
]
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"physical": 17,
|
|
2239
|
+
"position": {
|
|
2240
|
+
"row": 17,
|
|
2241
|
+
"column": 1
|
|
2242
|
+
},
|
|
2243
|
+
"label": "D1",
|
|
2244
|
+
"category": "reserved",
|
|
2245
|
+
"functions": [
|
|
2246
|
+
"GPIO8",
|
|
2247
|
+
"Flash SD1"
|
|
2248
|
+
],
|
|
2249
|
+
"notes": [
|
|
2250
|
+
"Connected to module flash"
|
|
2251
|
+
]
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"physical": 18,
|
|
2255
|
+
"position": {
|
|
2256
|
+
"row": 18,
|
|
2257
|
+
"column": 1
|
|
2258
|
+
},
|
|
2259
|
+
"label": "D0",
|
|
2260
|
+
"category": "reserved",
|
|
2261
|
+
"functions": [
|
|
2262
|
+
"GPIO7",
|
|
2263
|
+
"Flash SD0"
|
|
2264
|
+
],
|
|
2265
|
+
"notes": [
|
|
2266
|
+
"Connected to module flash"
|
|
2267
|
+
]
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"physical": 19,
|
|
2271
|
+
"position": {
|
|
2272
|
+
"row": 19,
|
|
2273
|
+
"column": 1
|
|
2274
|
+
},
|
|
2275
|
+
"label": "CLK",
|
|
2276
|
+
"category": "reserved",
|
|
2277
|
+
"functions": [
|
|
2278
|
+
"GPIO6",
|
|
2279
|
+
"Flash CLK"
|
|
2280
|
+
],
|
|
2281
|
+
"notes": [
|
|
2282
|
+
"Connected to module flash"
|
|
2283
|
+
]
|
|
2284
|
+
}
|
|
2285
|
+
]
|
|
2286
|
+
}
|
|
2287
|
+
]
|
|
2288
|
+
},
|
|
1662
2289
|
{
|
|
1663
2290
|
"id": "stm32-nucleo-f401re",
|
|
1664
2291
|
"name": "STM32 Nucleo-F401RE",
|
|
@@ -1698,12 +2325,14 @@ export const generatedBoards = [
|
|
|
1698
2325
|
{
|
|
1699
2326
|
"title": "ST Nucleo-64 user manual UM1724",
|
|
1700
2327
|
"url": "https://www.st.com/resource/en/user_manual/um1724-stm32-nucleo64-boards-mb1136-stmicroelectronics.pdf",
|
|
1701
|
-
"official": true
|
|
2328
|
+
"official": true,
|
|
2329
|
+
"type": "Manual"
|
|
1702
2330
|
},
|
|
1703
2331
|
{
|
|
1704
2332
|
"title": "NUCLEO-F401RE product page",
|
|
1705
2333
|
"url": "https://www.st.com/en/evaluation-tools/nucleo-f401re.html",
|
|
1706
|
-
"official": true
|
|
2334
|
+
"official": true,
|
|
2335
|
+
"type": "Docs"
|
|
1707
2336
|
}
|
|
1708
2337
|
],
|
|
1709
2338
|
"headers": [
|
|
@@ -2061,12 +2690,14 @@ export const generatedBoards = [
|
|
|
2061
2690
|
{
|
|
2062
2691
|
"title": "BeagleBone Black documentation home",
|
|
2063
2692
|
"url": "https://docs.beagleboard.org/boards/beaglebone/black/index.html",
|
|
2064
|
-
"official": true
|
|
2693
|
+
"official": true,
|
|
2694
|
+
"type": "Docs"
|
|
2065
2695
|
},
|
|
2066
2696
|
{
|
|
2067
2697
|
"title": "BeagleBone Black P8/P9 header pin tables",
|
|
2068
2698
|
"url": "https://docs.beagleboard.org/boards/beaglebone/black/ch07.html",
|
|
2069
|
-
"official": true
|
|
2699
|
+
"official": true,
|
|
2700
|
+
"type": "Pinout"
|
|
2070
2701
|
}
|
|
2071
2702
|
],
|
|
2072
2703
|
"headers": [
|
|
@@ -3230,12 +3861,14 @@ export const generatedBoards = [
|
|
|
3230
3861
|
{
|
|
3231
3862
|
"title": "Jetson Orin Nano carrier board specification",
|
|
3232
3863
|
"url": "https://developer.nvidia.com/downloads/assets/embedded/secure/jetson/orin_nano/docs/jetson_orin_nano_devkit_carrier_board_specification_sp.pdf",
|
|
3233
|
-
"official": true
|
|
3864
|
+
"official": true,
|
|
3865
|
+
"type": "Manual"
|
|
3234
3866
|
},
|
|
3235
3867
|
{
|
|
3236
|
-
"title": "Jetson Orin Nano GPIO reference by JetsonHacks
|
|
3868
|
+
"title": "Jetson Orin Nano GPIO reference by JetsonHacks",
|
|
3237
3869
|
"url": "https://jetsonhacks.com/nvidia-jetson-orin-nano-gpio-header-pinout/",
|
|
3238
|
-
"official": false
|
|
3870
|
+
"official": false,
|
|
3871
|
+
"type": "Pinout"
|
|
3239
3872
|
}
|
|
3240
3873
|
],
|
|
3241
3874
|
"headers": [
|
|
@@ -3656,17 +4289,20 @@ export const generatedBoards = [
|
|
|
3656
4289
|
{
|
|
3657
4290
|
"title": "PJRC Teensy 4.1 product and pinout page",
|
|
3658
4291
|
"url": "https://www.pjrc.com/store/teensy41.html",
|
|
3659
|
-
"official": true
|
|
4292
|
+
"official": true,
|
|
4293
|
+
"type": "Docs"
|
|
3660
4294
|
},
|
|
3661
4295
|
{
|
|
3662
4296
|
"title": "PJRC Teensy schematics",
|
|
3663
4297
|
"url": "https://www.pjrc.com/teensy/schematic.html",
|
|
3664
|
-
"official": true
|
|
4298
|
+
"official": true,
|
|
4299
|
+
"type": "Schematic"
|
|
3665
4300
|
},
|
|
3666
4301
|
{
|
|
3667
4302
|
"title": "PJRC Teensy 4.1 pinout card",
|
|
3668
4303
|
"url": "https://www.pjrc.com/teensy/pinout.html",
|
|
3669
|
-
"official": true
|
|
4304
|
+
"official": true,
|
|
4305
|
+
"type": "Pinout"
|
|
3670
4306
|
}
|
|
3671
4307
|
],
|
|
3672
4308
|
"headers": [
|
|
@@ -4329,12 +4965,14 @@ export const generatedBoards = [
|
|
|
4329
4965
|
{
|
|
4330
4966
|
"title": "Radxa ZERO 3 hardware interface",
|
|
4331
4967
|
"url": "https://docs.radxa.com/en/zero/zero3/hardware-design/hardware-interface",
|
|
4332
|
-
"official": true
|
|
4968
|
+
"official": true,
|
|
4969
|
+
"type": "Docs"
|
|
4333
4970
|
},
|
|
4334
4971
|
{
|
|
4335
4972
|
"title": "Radxa ZERO 3W product page",
|
|
4336
4973
|
"url": "https://www.radxa.com/products/zeros/zero3w/",
|
|
4337
|
-
"official": true
|
|
4974
|
+
"official": true,
|
|
4975
|
+
"type": "Docs"
|
|
4338
4976
|
}
|
|
4339
4977
|
],
|
|
4340
4978
|
"headers": [
|
|
@@ -4820,12 +5458,14 @@ export const generatedBoards = [
|
|
|
4820
5458
|
{
|
|
4821
5459
|
"title": "Orange Pi 5 product page",
|
|
4822
5460
|
"url": "https://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5.html",
|
|
4823
|
-
"official": true
|
|
5461
|
+
"official": true,
|
|
5462
|
+
"type": "Docs"
|
|
4824
5463
|
},
|
|
4825
5464
|
{
|
|
4826
5465
|
"title": "Orange Pi 5 user manual",
|
|
4827
5466
|
"url": "https://orangepi.net/wp-content/uploads/2024/09/OrangePi_5_RK3588S_User-Manual_v2.1.1.pdf",
|
|
4828
|
-
"official": true
|
|
5467
|
+
"official": true,
|
|
5468
|
+
"type": "Manual"
|
|
4829
5469
|
}
|
|
4830
5470
|
],
|
|
4831
5471
|
"headers": [
|
|
@@ -5182,12 +5822,14 @@ export const generatedBoards = [
|
|
|
5182
5822
|
{
|
|
5183
5823
|
"title": "Adafruit Feather RP2040 pinouts",
|
|
5184
5824
|
"url": "https://learn.adafruit.com/adafruit-feather-rp2040-pico/pinouts",
|
|
5185
|
-
"official": true
|
|
5825
|
+
"official": true,
|
|
5826
|
+
"type": "Pinout"
|
|
5186
5827
|
},
|
|
5187
5828
|
{
|
|
5188
5829
|
"title": "CircuitPython board page",
|
|
5189
5830
|
"url": "https://circuitpython.org/board/adafruit_feather_rp2040/",
|
|
5190
|
-
"official": true
|
|
5831
|
+
"official": true,
|
|
5832
|
+
"type": "Docs"
|
|
5191
5833
|
}
|
|
5192
5834
|
],
|
|
5193
5835
|
"headers": [
|
|
@@ -5569,17 +6211,20 @@ export const generatedBoards = [
|
|
|
5569
6211
|
{
|
|
5570
6212
|
"title": "Raspberry Pi Pico 2 documentation",
|
|
5571
6213
|
"url": "https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html",
|
|
5572
|
-
"official": true
|
|
6214
|
+
"official": true,
|
|
6215
|
+
"type": "Docs"
|
|
5573
6216
|
},
|
|
5574
6217
|
{
|
|
5575
6218
|
"title": "RP2350 datasheet pinout",
|
|
5576
6219
|
"url": "https://pip.raspberrypi.com/documents/RP-008373-DS-rp2350-datasheet.pdf",
|
|
5577
|
-
"official": true
|
|
6220
|
+
"official": true,
|
|
6221
|
+
"type": "Datasheet"
|
|
5578
6222
|
},
|
|
5579
6223
|
{
|
|
5580
6224
|
"title": "Raspberry Pi Pico 2 pinout PDF",
|
|
5581
6225
|
"url": "https://pip-assets.raspberrypi.com/categories/1005-raspberry-pi-pico-2/documents/RP-008301-DS-1-Pico-2-Pinout.pdf",
|
|
5582
|
-
"official": true
|
|
6226
|
+
"official": true,
|
|
6227
|
+
"type": "Pinout"
|
|
5583
6228
|
}
|
|
5584
6229
|
],
|
|
5585
6230
|
"headers": [
|
|
@@ -6046,12 +6691,14 @@ export const generatedBoards = [
|
|
|
6046
6691
|
{
|
|
6047
6692
|
"title": "Arduino Mega 2560 Rev3 documentation",
|
|
6048
6693
|
"url": "https://docs.arduino.cc/hardware/mega-2560/",
|
|
6049
|
-
"official": true
|
|
6694
|
+
"official": true,
|
|
6695
|
+
"type": "Docs"
|
|
6050
6696
|
},
|
|
6051
6697
|
{
|
|
6052
6698
|
"title": "Arduino Mega 2560 full pinout PDF",
|
|
6053
6699
|
"url": "https://docs.arduino.cc/resources/pinouts/A000067-full-pinout.pdf",
|
|
6054
|
-
"official": true
|
|
6700
|
+
"official": true,
|
|
6701
|
+
"type": "Pinout"
|
|
6055
6702
|
}
|
|
6056
6703
|
],
|
|
6057
6704
|
"headers": [
|
|
@@ -6800,12 +7447,14 @@ export const generatedBoards = [
|
|
|
6800
7447
|
{
|
|
6801
7448
|
"title": "Arduino Nano documentation and pinout",
|
|
6802
7449
|
"url": "https://docs.arduino.cc/hardware/nano",
|
|
6803
|
-
"official": true
|
|
7450
|
+
"official": true,
|
|
7451
|
+
"type": "Docs"
|
|
6804
7452
|
},
|
|
6805
7453
|
{
|
|
6806
7454
|
"title": "Arduino Nano official pinout (PDF)",
|
|
6807
7455
|
"url": "https://docs.arduino.cc/resources/pinouts/A000005-full-pinout.pdf",
|
|
6808
|
-
"official": true
|
|
7456
|
+
"official": true,
|
|
7457
|
+
"type": "Pinout"
|
|
6809
7458
|
}
|
|
6810
7459
|
],
|
|
6811
7460
|
"headers": [
|
|
@@ -7165,12 +7814,14 @@ export const generatedBoards = [
|
|
|
7165
7814
|
{
|
|
7166
7815
|
"title": "Arduino Nano 33 BLE Sense documentation",
|
|
7167
7816
|
"url": "https://docs.arduino.cc/hardware/nano-33-ble-sense",
|
|
7168
|
-
"official": true
|
|
7817
|
+
"official": true,
|
|
7818
|
+
"type": "Docs"
|
|
7169
7819
|
},
|
|
7170
7820
|
{
|
|
7171
7821
|
"title": "Nano 33 BLE Sense cheat sheet",
|
|
7172
7822
|
"url": "https://docs.arduino.cc/tutorials/nano-33-ble-sense/cheat-sheet",
|
|
7173
|
-
"official": true
|
|
7823
|
+
"official": true,
|
|
7824
|
+
"type": "Manual"
|
|
7174
7825
|
}
|
|
7175
7826
|
],
|
|
7176
7827
|
"headers": [
|
|
@@ -7580,12 +8231,14 @@ export const generatedBoards = [
|
|
|
7580
8231
|
{
|
|
7581
8232
|
"title": "Arduino MKR WiFi 1010 documentation",
|
|
7582
8233
|
"url": "https://docs.arduino.cc/hardware/mkr-wifi-1010",
|
|
7583
|
-
"official": true
|
|
8234
|
+
"official": true,
|
|
8235
|
+
"type": "Docs"
|
|
7584
8236
|
},
|
|
7585
8237
|
{
|
|
7586
8238
|
"title": "MKR WiFi 1010 datasheet",
|
|
7587
8239
|
"url": "https://docs.arduino.cc/resources/datasheets/ABX00023-datasheet.pdf",
|
|
7588
|
-
"official": true
|
|
8240
|
+
"official": true,
|
|
8241
|
+
"type": "Datasheet"
|
|
7589
8242
|
}
|
|
7590
8243
|
],
|
|
7591
8244
|
"headers": [
|
|
@@ -7976,7 +8629,8 @@ export const generatedBoards = [
|
|
|
7976
8629
|
{
|
|
7977
8630
|
"title": "ESP32-S3-DevKitC-1 user guide",
|
|
7978
8631
|
"url": "https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-devkitc-1/user_guide_v1.1.html",
|
|
7979
|
-
"official": true
|
|
8632
|
+
"official": true,
|
|
8633
|
+
"type": "Docs"
|
|
7980
8634
|
}
|
|
7981
8635
|
],
|
|
7982
8636
|
"headers": [
|
|
@@ -8447,7 +9101,8 @@ export const generatedBoards = [
|
|
|
8447
9101
|
{
|
|
8448
9102
|
"title": "ESP32-C3-DevKitM-1 user guide",
|
|
8449
9103
|
"url": "https://docs.espressif.com/projects/esp-idf/en/v5.2/esp32c3/hw-reference/esp32c3/user-guide-devkitm-1.html",
|
|
8450
|
-
"official": true
|
|
9104
|
+
"official": true,
|
|
9105
|
+
"type": "Docs"
|
|
8451
9106
|
}
|
|
8452
9107
|
],
|
|
8453
9108
|
"headers": [
|
|
@@ -8788,7 +9443,8 @@ export const generatedBoards = [
|
|
|
8788
9443
|
{
|
|
8789
9444
|
"title": "ESP32-C6-DevKitC-1 user guide",
|
|
8790
9445
|
"url": "https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32c6/esp32-c6-devkitc-1/user_guide.html",
|
|
8791
|
-
"official": true
|
|
9446
|
+
"official": true,
|
|
9447
|
+
"type": "Docs"
|
|
8792
9448
|
}
|
|
8793
9449
|
],
|
|
8794
9450
|
"headers": [
|
|
@@ -9160,12 +9816,14 @@ export const generatedBoards = [
|
|
|
9160
9816
|
{
|
|
9161
9817
|
"title": "ESP32-S2-Saola-1 user guide",
|
|
9162
9818
|
"url": "https://docs.espressif.com/projects/esp-idf/en/v5.1/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html",
|
|
9163
|
-
"official": true
|
|
9819
|
+
"official": true,
|
|
9820
|
+
"type": "Docs"
|
|
9164
9821
|
},
|
|
9165
9822
|
{
|
|
9166
9823
|
"title": "ESP32-S2-Saola-1 header pinout (Espressif)",
|
|
9167
9824
|
"url": "https://docs.espressif.com/projects/esp-idf/en/v5.1/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html#header-block",
|
|
9168
|
-
"official": true
|
|
9825
|
+
"official": true,
|
|
9826
|
+
"type": "Pinout"
|
|
9169
9827
|
}
|
|
9170
9828
|
],
|
|
9171
9829
|
"headers": [
|
|
@@ -9710,7 +10368,8 @@ export const generatedBoards = [
|
|
|
9710
10368
|
{
|
|
9711
10369
|
"title": "micro:bit edge connector pinout",
|
|
9712
10370
|
"url": "https://tech.microbit.org/hardware/edgeconnector/",
|
|
9713
|
-
"official": true
|
|
10371
|
+
"official": true,
|
|
10372
|
+
"type": "Pinout"
|
|
9714
10373
|
}
|
|
9715
10374
|
],
|
|
9716
10375
|
"headers": [
|
|
@@ -10080,7 +10739,8 @@ export const generatedBoards = [
|
|
|
10080
10739
|
{
|
|
10081
10740
|
"title": "Seeed XIAO RP2040 getting started and pinout",
|
|
10082
10741
|
"url": "https://wiki.seeedstudio.com/XIAO-RP2040/",
|
|
10083
|
-
"official": true
|
|
10742
|
+
"official": true,
|
|
10743
|
+
"type": "Docs"
|
|
10084
10744
|
}
|
|
10085
10745
|
],
|
|
10086
10746
|
"headers": [
|
|
@@ -10293,12 +10953,14 @@ export const generatedBoards = [
|
|
|
10293
10953
|
{
|
|
10294
10954
|
"title": "Seeed XIAO ESP32S3 getting started and pinout",
|
|
10295
10955
|
"url": "https://wiki.seeedstudio.com/xiao_esp32s3_getting_started/",
|
|
10296
|
-
"official": true
|
|
10956
|
+
"official": true,
|
|
10957
|
+
"type": "Docs"
|
|
10297
10958
|
},
|
|
10298
10959
|
{
|
|
10299
10960
|
"title": "Seeed XIAO ESP32S3 pin multiplexing",
|
|
10300
10961
|
"url": "https://wiki.seeedstudio.com/xiao_esp32s3_pin_multiplexing/",
|
|
10301
|
-
"official": true
|
|
10962
|
+
"official": true,
|
|
10963
|
+
"type": "Manual"
|
|
10302
10964
|
}
|
|
10303
10965
|
],
|
|
10304
10966
|
"headers": [
|
|
@@ -10513,7 +11175,8 @@ export const generatedBoards = [
|
|
|
10513
11175
|
{
|
|
10514
11176
|
"title": "Adafruit QT Py ESP32-S3 pinouts",
|
|
10515
11177
|
"url": "https://learn.adafruit.com/adafruit-qt-py-esp32-s3/pinouts",
|
|
10516
|
-
"official": true
|
|
11178
|
+
"official": true,
|
|
11179
|
+
"type": "Pinout"
|
|
10517
11180
|
}
|
|
10518
11181
|
],
|
|
10519
11182
|
"headers": [
|
|
@@ -10731,7 +11394,8 @@ export const generatedBoards = [
|
|
|
10731
11394
|
{
|
|
10732
11395
|
"title": "Adafruit QT Py ESP32-C3 pinouts",
|
|
10733
11396
|
"url": "https://learn.adafruit.com/adafruit-qt-py-esp32-c3-wifi-dev-board/pinouts",
|
|
10734
|
-
"official": true
|
|
11397
|
+
"official": true,
|
|
11398
|
+
"type": "Pinout"
|
|
10735
11399
|
}
|
|
10736
11400
|
],
|
|
10737
11401
|
"headers": [
|
|
@@ -10949,7 +11613,8 @@ export const generatedBoards = [
|
|
|
10949
11613
|
{
|
|
10950
11614
|
"title": "Adafruit Metro ESP32-S3 pinouts",
|
|
10951
11615
|
"url": "https://learn.adafruit.com/adafruit-metro-esp32-s3/pinouts",
|
|
10952
|
-
"official": true
|
|
11616
|
+
"official": true,
|
|
11617
|
+
"type": "Pinout"
|
|
10953
11618
|
}
|
|
10954
11619
|
],
|
|
10955
11620
|
"headers": [
|
|
@@ -11421,17 +12086,20 @@ export const generatedBoards = [
|
|
|
11421
12086
|
{
|
|
11422
12087
|
"title": "SparkFun RP2040 Thing Plus hookup guide",
|
|
11423
12088
|
"url": "https://learn.sparkfun.com/tutorials/rp2040-thing-plus-hookup-guide/all",
|
|
11424
|
-
"official": true
|
|
12089
|
+
"official": true,
|
|
12090
|
+
"type": "Manual"
|
|
11425
12091
|
},
|
|
11426
12092
|
{
|
|
11427
12093
|
"title": "SparkFun Thing Plus RP2040 product page",
|
|
11428
12094
|
"url": "https://www.sparkfun.com/sparkfun-thing-plus-rp2040.html",
|
|
11429
|
-
"official": true
|
|
12095
|
+
"official": true,
|
|
12096
|
+
"type": "Docs"
|
|
11430
12097
|
},
|
|
11431
12098
|
{
|
|
11432
12099
|
"title": "CircuitPython Thing Plus RP2040 pins.c",
|
|
11433
12100
|
"url": "https://github.com/adafruit/circuitpython/blob/main/ports/raspberrypi/boards/sparkfun_thing_plus_rp2040/pins.c",
|
|
11434
|
-
"official":
|
|
12101
|
+
"official": false,
|
|
12102
|
+
"type": "Pinout"
|
|
11435
12103
|
}
|
|
11436
12104
|
],
|
|
11437
12105
|
"headers": [
|
|
@@ -11718,17 +12386,20 @@ export const generatedBoards = [
|
|
|
11718
12386
|
{
|
|
11719
12387
|
"title": "SparkFun ESP32 Thing Plus USB-C hookup guide",
|
|
11720
12388
|
"url": "https://learn.sparkfun.com/tutorials/esp32-thing-plus-usb-c-hookup-guide/all",
|
|
11721
|
-
"official": true
|
|
12389
|
+
"official": true,
|
|
12390
|
+
"type": "Manual"
|
|
11722
12391
|
},
|
|
11723
12392
|
{
|
|
11724
12393
|
"title": "SparkFun Thing Plus ESP32 WROOM USB-C product page",
|
|
11725
12394
|
"url": "https://www.sparkfun.com/sparkfun-thing-plus-esp32-wroom-usb-c.html",
|
|
11726
|
-
"official": true
|
|
12395
|
+
"official": true,
|
|
12396
|
+
"type": "Docs"
|
|
11727
12397
|
},
|
|
11728
12398
|
{
|
|
11729
12399
|
"title": "SparkFun ESP32 Thing Plus graphical datasheet",
|
|
11730
12400
|
"url": "https://cdn.sparkfun.com/assets/3/9/5/f/e/SparkFun_Thing_Plus_ESP32_WROOM_C_graphical_datasheet2.pdf",
|
|
11731
|
-
"official": true
|
|
12401
|
+
"official": true,
|
|
12402
|
+
"type": "Pinout"
|
|
11732
12403
|
}
|
|
11733
12404
|
],
|
|
11734
12405
|
"headers": [
|
|
@@ -12057,17 +12728,20 @@ export const generatedBoards = [
|
|
|
12057
12728
|
{
|
|
12058
12729
|
"title": "SparkFun RedBoard Artemis ATP hookup guide",
|
|
12059
12730
|
"url": "https://learn.sparkfun.com/tutorials/hookup-guide-for-the-sparkfun-redboard-artemis-atp/all",
|
|
12060
|
-
"official": true
|
|
12731
|
+
"official": true,
|
|
12732
|
+
"type": "Manual"
|
|
12061
12733
|
},
|
|
12062
12734
|
{
|
|
12063
12735
|
"title": "SparkFun RedBoard Artemis ATP product page",
|
|
12064
12736
|
"url": "https://www.sparkfun.com/sparkfun-redboard-artemis-atp.html",
|
|
12065
|
-
"official": true
|
|
12737
|
+
"official": true,
|
|
12738
|
+
"type": "Docs"
|
|
12066
12739
|
},
|
|
12067
12740
|
{
|
|
12068
12741
|
"title": "SparkFun Artemis ATP GPIO header map",
|
|
12069
12742
|
"url": "https://cdn.sparkfun.com/assets/learn_tutorials/9/2/7/15442-SparkFun-Artemis-ATP-GPIOPins.jpg",
|
|
12070
|
-
"official": true
|
|
12743
|
+
"official": true,
|
|
12744
|
+
"type": "Pinout"
|
|
12071
12745
|
}
|
|
12072
12746
|
],
|
|
12073
12747
|
"headers": [
|
|
@@ -12634,12 +13308,14 @@ export const generatedBoards = [
|
|
|
12634
13308
|
{
|
|
12635
13309
|
"title": "Raspberry Pi 3 Model B+ product brief",
|
|
12636
13310
|
"url": "https://datasheets.raspberrypi.com/rpi3/raspberry-pi-3-b-plus-product-brief.pdf",
|
|
12637
|
-
"official": true
|
|
13311
|
+
"official": true,
|
|
13312
|
+
"type": "Datasheet"
|
|
12638
13313
|
},
|
|
12639
13314
|
{
|
|
12640
13315
|
"title": "Raspberry Pi computers documentation",
|
|
12641
13316
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
12642
|
-
"official": true
|
|
13317
|
+
"official": true,
|
|
13318
|
+
"type": "Docs"
|
|
12643
13319
|
}
|
|
12644
13320
|
],
|
|
12645
13321
|
"headers": [
|
|
@@ -13112,12 +13788,14 @@ export const generatedBoards = [
|
|
|
13112
13788
|
{
|
|
13113
13789
|
"title": "Raspberry Pi 500 product brief",
|
|
13114
13790
|
"url": "https://datasheets.raspberrypi.com/pi500/raspberry-pi-500-product-brief.pdf",
|
|
13115
|
-
"official": true
|
|
13791
|
+
"official": true,
|
|
13792
|
+
"type": "Datasheet"
|
|
13116
13793
|
},
|
|
13117
13794
|
{
|
|
13118
13795
|
"title": "Raspberry Pi computers documentation",
|
|
13119
13796
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
13120
|
-
"official": true
|
|
13797
|
+
"official": true,
|
|
13798
|
+
"type": "Docs"
|
|
13121
13799
|
}
|
|
13122
13800
|
],
|
|
13123
13801
|
"headers": [
|
|
@@ -13590,12 +14268,14 @@ export const generatedBoards = [
|
|
|
13590
14268
|
{
|
|
13591
14269
|
"title": "STM32F103x8/xB datasheet",
|
|
13592
14270
|
"url": "https://www.st.com/resource/en/datasheet/stm32f103c8.pdf",
|
|
13593
|
-
"official": true
|
|
14271
|
+
"official": true,
|
|
14272
|
+
"type": "Datasheet"
|
|
13594
14273
|
},
|
|
13595
14274
|
{
|
|
13596
|
-
"title": "STM32-base Blue Pill board reference (third party)
|
|
14275
|
+
"title": "STM32-base Blue Pill board reference (third party)",
|
|
13597
14276
|
"url": "https://stm32-base.org/boards/STM32F103C8T6-Blue-Pill.html",
|
|
13598
|
-
"official": false
|
|
14277
|
+
"official": false,
|
|
14278
|
+
"type": "Pinout"
|
|
13599
14279
|
}
|
|
13600
14280
|
],
|
|
13601
14281
|
"headers": [
|
|
@@ -14137,17 +14817,20 @@ export const generatedBoards = [
|
|
|
14137
14817
|
{
|
|
14138
14818
|
"title": "WeAct MiniSTM32F4x1 schematics and docs (GitHub)",
|
|
14139
14819
|
"url": "https://github.com/WeActStudio/WeActStudio.MiniSTM32F4x1",
|
|
14140
|
-
"official": true
|
|
14820
|
+
"official": true,
|
|
14821
|
+
"type": "Schematic"
|
|
14141
14822
|
},
|
|
14142
14823
|
{
|
|
14143
14824
|
"title": "STM32F411xC/xE datasheet",
|
|
14144
14825
|
"url": "https://www.st.com/resource/en/datasheet/stm32f411ce.pdf",
|
|
14145
|
-
"official":
|
|
14826
|
+
"official": false,
|
|
14827
|
+
"type": "Datasheet"
|
|
14146
14828
|
},
|
|
14147
14829
|
{
|
|
14148
|
-
"title": "WeAct Black Pill V2.0 (STM32F411CE) board pinout
|
|
14830
|
+
"title": "WeAct Black Pill V2.0 (STM32F411CE) board pinout",
|
|
14149
14831
|
"url": "https://stm32-base.org/boards/STM32F411CEU6-WeAct-Black-Pill-V2.0.html",
|
|
14150
|
-
"official": false
|
|
14832
|
+
"official": false,
|
|
14833
|
+
"type": "Pinout"
|
|
14151
14834
|
}
|
|
14152
14835
|
],
|
|
14153
14836
|
"headers": [
|
|
@@ -14682,17 +15365,20 @@ export const generatedBoards = [
|
|
|
14682
15365
|
{
|
|
14683
15366
|
"title": "nRF52840 DK product page",
|
|
14684
15367
|
"url": "https://www.nordicsemi.com/Products/Development-hardware/nRF52840-DK",
|
|
14685
|
-
"official": true
|
|
15368
|
+
"official": true,
|
|
15369
|
+
"type": "Docs"
|
|
14686
15370
|
},
|
|
14687
15371
|
{
|
|
14688
15372
|
"title": "nRF52840 DK user guide",
|
|
14689
15373
|
"url": "https://docs.nordicsemi.com/bundle/ug_nrf52840_dk/page/UG/dk/intro.html",
|
|
14690
|
-
"official": true
|
|
15374
|
+
"official": true,
|
|
15375
|
+
"type": "Manual"
|
|
14691
15376
|
},
|
|
14692
15377
|
{
|
|
14693
15378
|
"title": "nRF52840 DK connector/Arduino header pin map",
|
|
14694
15379
|
"url": "https://docs.nordicsemi.com/bundle/ug_nrf52840_dk/page/UG/dk/hw_external_memory.html",
|
|
14695
|
-
"official": true
|
|
15380
|
+
"official": true,
|
|
15381
|
+
"type": "Pinout"
|
|
14696
15382
|
}
|
|
14697
15383
|
],
|
|
14698
15384
|
"headers": [
|
|
@@ -15110,12 +15796,14 @@ export const generatedBoards = [
|
|
|
15110
15796
|
{
|
|
15111
15797
|
"title": "MSP-EXP430G2ET tool page",
|
|
15112
15798
|
"url": "https://www.ti.com/tool/MSP-EXP430G2ET",
|
|
15113
|
-
"official": true
|
|
15799
|
+
"official": true,
|
|
15800
|
+
"type": "Docs"
|
|
15114
15801
|
},
|
|
15115
15802
|
{
|
|
15116
15803
|
"title": "MSP-EXP430G2ET user's guide (SLAU772)",
|
|
15117
15804
|
"url": "https://www.ti.com/lit/ug/slau772a/slau772a.pdf",
|
|
15118
|
-
"official": true
|
|
15805
|
+
"official": true,
|
|
15806
|
+
"type": "Manual"
|
|
15119
15807
|
}
|
|
15120
15808
|
],
|
|
15121
15809
|
"headers": [
|
|
@@ -15375,7 +16063,8 @@ export const generatedBoards = [
|
|
|
15375
16063
|
{
|
|
15376
16064
|
"title": "Banana Pi BPI-M5 official documentation",
|
|
15377
16065
|
"url": "https://docs.banana-pi.org/en/BPI-M5/BananaPi_BPI-M5",
|
|
15378
|
-
"official": true
|
|
16066
|
+
"official": true,
|
|
16067
|
+
"type": "Docs"
|
|
15379
16068
|
}
|
|
15380
16069
|
],
|
|
15381
16070
|
"headers": [
|
|
@@ -15875,12 +16564,14 @@ export const generatedBoards = [
|
|
|
15875
16564
|
{
|
|
15876
16565
|
"title": "ODROID-C4 expansion connectors wiki",
|
|
15877
16566
|
"url": "https://wiki.odroid.com/odroid-c4/hardware/expansion_connectors",
|
|
15878
|
-
"official": true
|
|
16567
|
+
"official": true,
|
|
16568
|
+
"type": "Pinout"
|
|
15879
16569
|
},
|
|
15880
16570
|
{
|
|
15881
16571
|
"title": "ODROID-C4 product page",
|
|
15882
16572
|
"url": "https://www.hardkernel.com/shop/odroid-c4/",
|
|
15883
|
-
"official": true
|
|
16573
|
+
"official": true,
|
|
16574
|
+
"type": "Docs"
|
|
15884
16575
|
}
|
|
15885
16576
|
],
|
|
15886
16577
|
"headers": [
|
|
@@ -16359,12 +17050,14 @@ export const generatedBoards = [
|
|
|
16359
17050
|
{
|
|
16360
17051
|
"title": "ROCKPro64 Pine64 wiki (docs, schematics)",
|
|
16361
17052
|
"url": "https://wiki.pine64.org/wiki/ROCKPro64",
|
|
16362
|
-
"official": true
|
|
17053
|
+
"official": true,
|
|
17054
|
+
"type": "Docs"
|
|
16363
17055
|
},
|
|
16364
17056
|
{
|
|
16365
17057
|
"title": "ROCKPro64 Pi-2 connector pinout",
|
|
16366
17058
|
"url": "https://files.pine64.org/doc/rockpro64/Rockpro64%20Pi-2%20Connector%20ver0.2.png",
|
|
16367
|
-
"official": true
|
|
17059
|
+
"official": true,
|
|
17060
|
+
"type": "Pinout"
|
|
16368
17061
|
}
|
|
16369
17062
|
],
|
|
16370
17063
|
"headers": [
|
|
@@ -16845,12 +17538,14 @@ export const generatedBoards = [
|
|
|
16845
17538
|
{
|
|
16846
17539
|
"title": "AML-S905X-CC product page and resources",
|
|
16847
17540
|
"url": "https://libre.computer/products/aml-s905x-cc/",
|
|
16848
|
-
"official": true
|
|
17541
|
+
"official": true,
|
|
17542
|
+
"type": "Docs"
|
|
16849
17543
|
},
|
|
16850
17544
|
{
|
|
16851
17545
|
"title": "Libre Computer GPIO header maps",
|
|
16852
17546
|
"url": "https://hub.libre.computer/t/gpio-pin-header-maps-and-wiring-tool-for-libre-computer-boards/28",
|
|
16853
|
-
"official": true
|
|
17547
|
+
"official": true,
|
|
17548
|
+
"type": "Pinout"
|
|
16854
17549
|
}
|
|
16855
17550
|
],
|
|
16856
17551
|
"headers": [
|
|
@@ -17371,7 +18066,8 @@ export const generatedBoards = [
|
|
|
17371
18066
|
{
|
|
17372
18067
|
"title": "Milk-V Duo official documentation",
|
|
17373
18068
|
"url": "https://milkv.io/docs/duo/getting-started/duo",
|
|
17374
|
-
"official": true
|
|
18069
|
+
"official": true,
|
|
18070
|
+
"type": "Docs"
|
|
17375
18071
|
}
|
|
17376
18072
|
],
|
|
17377
18073
|
"headers": [
|
|
@@ -17798,7 +18494,8 @@ export const generatedBoards = [
|
|
|
17798
18494
|
{
|
|
17799
18495
|
"title": "T-Display-S3 schematics and docs (GitHub)",
|
|
17800
18496
|
"url": "https://github.com/Xinyuan-LilyGO/T-Display-S3",
|
|
17801
|
-
"official": true
|
|
18497
|
+
"official": true,
|
|
18498
|
+
"type": "Schematic"
|
|
17802
18499
|
}
|
|
17803
18500
|
],
|
|
17804
18501
|
"headers": [
|
|
@@ -18138,7 +18835,8 @@ export const generatedBoards = [
|
|
|
18138
18835
|
{
|
|
18139
18836
|
"title": "LOLIN D1 Mini official documentation",
|
|
18140
18837
|
"url": "https://www.wemos.cc/en/latest/d1/d1_mini.html",
|
|
18141
|
-
"official": true
|
|
18838
|
+
"official": true,
|
|
18839
|
+
"type": "Docs"
|
|
18142
18840
|
}
|
|
18143
18841
|
],
|
|
18144
18842
|
"headers": [
|
|
@@ -18390,7 +19088,8 @@ export const generatedBoards = [
|
|
|
18390
19088
|
{
|
|
18391
19089
|
"title": "LOLIN S2 Mini official documentation",
|
|
18392
19090
|
"url": "https://www.wemos.cc/en/latest/s2/s2_mini.html",
|
|
18393
|
-
"official": true
|
|
19091
|
+
"official": true,
|
|
19092
|
+
"type": "Docs"
|
|
18394
19093
|
}
|
|
18395
19094
|
],
|
|
18396
19095
|
"headers": [
|
|
@@ -18760,12 +19459,14 @@ export const generatedBoards = [
|
|
|
18760
19459
|
{
|
|
18761
19460
|
"title": "NodeMCU DevKit v1.0 hardware repo (schematics)",
|
|
18762
19461
|
"url": "https://github.com/nodemcu/nodemcu-devkit-v1.0",
|
|
18763
|
-
"official": true
|
|
19462
|
+
"official": true,
|
|
19463
|
+
"type": "Schematic"
|
|
18764
19464
|
},
|
|
18765
19465
|
{
|
|
18766
19466
|
"title": "ESP8266EX datasheet",
|
|
18767
19467
|
"url": "https://www.espressif.com/sites/default/files/documentation/0a-esp8266ex_datasheet_en.pdf",
|
|
18768
|
-
"official":
|
|
19468
|
+
"official": false,
|
|
19469
|
+
"type": "Datasheet"
|
|
18769
19470
|
}
|
|
18770
19471
|
],
|
|
18771
19472
|
"headers": [
|
|
@@ -19201,7 +19902,8 @@ export const generatedBoards = [
|
|
|
19201
19902
|
{
|
|
19202
19903
|
"title": "Particle Photon 2 datasheet",
|
|
19203
19904
|
"url": "https://docs.particle.io/reference/datasheets/wi-fi/photon-2-datasheet/",
|
|
19204
|
-
"official": true
|
|
19905
|
+
"official": true,
|
|
19906
|
+
"type": "Datasheet"
|
|
19205
19907
|
}
|
|
19206
19908
|
],
|
|
19207
19909
|
"headers": [
|
|
@@ -19665,7 +20367,8 @@ export const generatedBoards = [
|
|
|
19665
20367
|
{
|
|
19666
20368
|
"title": "Wio Terminal getting started wiki",
|
|
19667
20369
|
"url": "https://wiki.seeedstudio.com/Wio-Terminal-Getting-Started/",
|
|
19668
|
-
"official": true
|
|
20370
|
+
"official": true,
|
|
20371
|
+
"type": "Docs"
|
|
19669
20372
|
}
|
|
19670
20373
|
],
|
|
19671
20374
|
"headers": [
|
|
@@ -20185,7 +20888,8 @@ export const generatedBoards = [
|
|
|
20185
20888
|
{
|
|
20186
20889
|
"title": "Introducing Adafruit ItsyBitsy M4 (learn guide)",
|
|
20187
20890
|
"url": "https://learn.adafruit.com/introducing-adafruit-itsybitsy-m4",
|
|
20188
|
-
"official": true
|
|
20891
|
+
"official": true,
|
|
20892
|
+
"type": "Docs"
|
|
20189
20893
|
}
|
|
20190
20894
|
],
|
|
20191
20895
|
"headers": [
|
|
@@ -20622,12 +21326,14 @@ export const generatedBoards = [
|
|
|
20622
21326
|
{
|
|
20623
21327
|
"title": "Arduino GIGA R1 WiFi documentation",
|
|
20624
21328
|
"url": "https://docs.arduino.cc/hardware/giga-r1-wifi/",
|
|
20625
|
-
"official": true
|
|
21329
|
+
"official": true,
|
|
21330
|
+
"type": "Docs"
|
|
20626
21331
|
},
|
|
20627
21332
|
{
|
|
20628
21333
|
"title": "GIGA R1 WiFi full pinout PDF",
|
|
20629
21334
|
"url": "https://docs.arduino.cc/resources/pinouts/ABX00063-full-pinout.pdf",
|
|
20630
|
-
"official": true
|
|
21335
|
+
"official": true,
|
|
21336
|
+
"type": "Pinout"
|
|
20631
21337
|
}
|
|
20632
21338
|
],
|
|
20633
21339
|
"headers": [
|
|
@@ -21525,12 +22231,14 @@ export const generatedBoards = [
|
|
|
21525
22231
|
{
|
|
21526
22232
|
"title": "Arduino Pro Mini retired-board documentation",
|
|
21527
22233
|
"url": "https://docs.arduino.cc/retired/boards/arduino-pro-mini/",
|
|
21528
|
-
"official": true
|
|
22234
|
+
"official": true,
|
|
22235
|
+
"type": "Docs"
|
|
21529
22236
|
},
|
|
21530
22237
|
{
|
|
21531
22238
|
"title": "Arduino Pro Mini schematic",
|
|
21532
22239
|
"url": "https://www.arduino.cc/en/uploads/Main/Arduino-Pro-Mini-schematic.pdf",
|
|
21533
|
-
"official": true
|
|
22240
|
+
"official": true,
|
|
22241
|
+
"type": "Schematic"
|
|
21534
22242
|
}
|
|
21535
22243
|
],
|
|
21536
22244
|
"headers": [
|
|
@@ -21978,12 +22686,14 @@ export const generatedBoards = [
|
|
|
21978
22686
|
{
|
|
21979
22687
|
"title": "ESP32-H2-DevKitM-1 user guide",
|
|
21980
22688
|
"url": "https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32h2/esp32-h2-devkitm-1/user_guide.html",
|
|
21981
|
-
"official": true
|
|
22689
|
+
"official": true,
|
|
22690
|
+
"type": "Docs"
|
|
21982
22691
|
},
|
|
21983
22692
|
{
|
|
21984
22693
|
"title": "ESP32-H2-DevKitM-1 schematic v1.3",
|
|
21985
22694
|
"url": "https://dl.espressif.com/dl/schematics/SCH_ESP32-H2-DevKitM-1_V1_3_20240411.pdf",
|
|
21986
|
-
"official": true
|
|
22695
|
+
"official": true,
|
|
22696
|
+
"type": "Schematic"
|
|
21987
22697
|
}
|
|
21988
22698
|
],
|
|
21989
22699
|
"headers": [
|
|
@@ -22367,7 +23077,8 @@ export const generatedBoards = [
|
|
|
22367
23077
|
{
|
|
22368
23078
|
"title": "Banana Pi BPI-M2 Zero documentation",
|
|
22369
23079
|
"url": "https://docs.banana-pi.org/en/BPI-M2_Zero/BananaPi_BPI-M2_Zero",
|
|
22370
|
-
"official": true
|
|
23080
|
+
"official": true,
|
|
23081
|
+
"type": "Docs"
|
|
22371
23082
|
}
|
|
22372
23083
|
],
|
|
22373
23084
|
"headers": [
|
|
@@ -22845,12 +23556,14 @@ export const generatedBoards = [
|
|
|
22845
23556
|
{
|
|
22846
23557
|
"title": "Seeed Studio BeagleBone Green wiki",
|
|
22847
23558
|
"url": "https://wiki.seeedstudio.com/BeagleBone_Green/",
|
|
22848
|
-
"official": true
|
|
23559
|
+
"official": true,
|
|
23560
|
+
"type": "Docs"
|
|
22849
23561
|
},
|
|
22850
23562
|
{
|
|
22851
23563
|
"title": "Seeed Studio BeagleBone Green SRM v3",
|
|
22852
23564
|
"url": "https://files.seeedstudio.com/wiki/BeagleBone_Green/res/BeagleBone_Green_SRM_v3.pdf",
|
|
22853
|
-
"official": true
|
|
23565
|
+
"official": true,
|
|
23566
|
+
"type": "Manual"
|
|
22854
23567
|
}
|
|
22855
23568
|
],
|
|
22856
23569
|
"headers": [
|
|
@@ -24015,7 +24728,8 @@ export const generatedBoards = [
|
|
|
24015
24728
|
{
|
|
24016
24729
|
"title": "Raspberry Pi GPIO documentation",
|
|
24017
24730
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
24018
|
-
"official": true
|
|
24731
|
+
"official": true,
|
|
24732
|
+
"type": "Docs"
|
|
24019
24733
|
}
|
|
24020
24734
|
],
|
|
24021
24735
|
"headers": [
|
|
@@ -24489,12 +25203,14 @@ export const generatedBoards = [
|
|
|
24489
25203
|
{
|
|
24490
25204
|
"title": "Raspberry Pi Zero product page",
|
|
24491
25205
|
"url": "https://www.raspberrypi.com/products/raspberry-pi-zero/",
|
|
24492
|
-
"official": true
|
|
25206
|
+
"official": true,
|
|
25207
|
+
"type": "Docs"
|
|
24493
25208
|
},
|
|
24494
25209
|
{
|
|
24495
25210
|
"title": "Raspberry Pi GPIO documentation",
|
|
24496
25211
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
24497
|
-
"official": true
|
|
25212
|
+
"official": true,
|
|
25213
|
+
"type": "Docs"
|
|
24498
25214
|
}
|
|
24499
25215
|
],
|
|
24500
25216
|
"headers": [
|
|
@@ -24964,12 +25680,14 @@ export const generatedBoards = [
|
|
|
24964
25680
|
{
|
|
24965
25681
|
"title": "Raspberry Pi 3 Model A+ product brief",
|
|
24966
25682
|
"url": "https://pip.raspberrypi.com/documents/RP-008331-DS-raspberry-pi-3-a-plus-product-brief.pdf",
|
|
24967
|
-
"official": true
|
|
25683
|
+
"official": true,
|
|
25684
|
+
"type": "Datasheet"
|
|
24968
25685
|
},
|
|
24969
25686
|
{
|
|
24970
25687
|
"title": "Raspberry Pi GPIO documentation",
|
|
24971
25688
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
24972
|
-
"official": true
|
|
25689
|
+
"official": true,
|
|
25690
|
+
"type": "Docs"
|
|
24973
25691
|
}
|
|
24974
25692
|
],
|
|
24975
25693
|
"headers": [
|
|
@@ -25443,12 +26161,14 @@ export const generatedBoards = [
|
|
|
25443
26161
|
{
|
|
25444
26162
|
"title": "Raspberry Pi 2 Model B product page",
|
|
25445
26163
|
"url": "https://www.raspberrypi.com/products/raspberry-pi-2-model-b/",
|
|
25446
|
-
"official": true
|
|
26164
|
+
"official": true,
|
|
26165
|
+
"type": "Docs"
|
|
25447
26166
|
},
|
|
25448
26167
|
{
|
|
25449
26168
|
"title": "Raspberry Pi GPIO documentation",
|
|
25450
26169
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
25451
|
-
"official": true
|
|
26170
|
+
"official": true,
|
|
26171
|
+
"type": "Docs"
|
|
25452
26172
|
}
|
|
25453
26173
|
],
|
|
25454
26174
|
"headers": [
|
|
@@ -25922,12 +26642,14 @@ export const generatedBoards = [
|
|
|
25922
26642
|
{
|
|
25923
26643
|
"title": "Raspberry Pi 1 Model B+ product page",
|
|
25924
26644
|
"url": "https://www.raspberrypi.com/products/raspberry-pi-1-model-b-plus/",
|
|
25925
|
-
"official": true
|
|
26645
|
+
"official": true,
|
|
26646
|
+
"type": "Docs"
|
|
25926
26647
|
},
|
|
25927
26648
|
{
|
|
25928
26649
|
"title": "Raspberry Pi GPIO documentation",
|
|
25929
26650
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
25930
|
-
"official": true
|
|
26651
|
+
"official": true,
|
|
26652
|
+
"type": "Docs"
|
|
25931
26653
|
}
|
|
25932
26654
|
],
|
|
25933
26655
|
"headers": [
|
|
@@ -26397,12 +27119,14 @@ export const generatedBoards = [
|
|
|
26397
27119
|
{
|
|
26398
27120
|
"title": "Raspberry Pi 400 product brief",
|
|
26399
27121
|
"url": "https://datasheets.raspberrypi.com/rpi400/raspberry-pi-400-product-brief.pdf",
|
|
26400
|
-
"official": true
|
|
27122
|
+
"official": true,
|
|
27123
|
+
"type": "Datasheet"
|
|
26401
27124
|
},
|
|
26402
27125
|
{
|
|
26403
27126
|
"title": "Raspberry Pi GPIO documentation",
|
|
26404
27127
|
"url": "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html",
|
|
26405
|
-
"official": true
|
|
27128
|
+
"official": true,
|
|
27129
|
+
"type": "Docs"
|
|
26406
27130
|
}
|
|
26407
27131
|
],
|
|
26408
27132
|
"headers": [
|
|
@@ -26860,7 +27584,7 @@ export const generatedBoards = [
|
|
|
26860
27584
|
},
|
|
26861
27585
|
{
|
|
26862
27586
|
"severity": "info",
|
|
26863
|
-
"text": "UNO R4
|
|
27587
|
+
"text": "UNO Rev3 and UNO R4 share the classic shield header footprint and 5 V operating voltage, but MCU-specific alternate functions differ."
|
|
26864
27588
|
},
|
|
26865
27589
|
{
|
|
26866
27590
|
"severity": "info",
|
|
@@ -26875,7 +27599,8 @@ export const generatedBoards = [
|
|
|
26875
27599
|
{
|
|
26876
27600
|
"title": "Arduino UNO R4 Minima documentation",
|
|
26877
27601
|
"url": "https://docs.arduino.cc/hardware/uno-r4-minima",
|
|
26878
|
-
"official": true
|
|
27602
|
+
"official": true,
|
|
27603
|
+
"type": "Docs"
|
|
26879
27604
|
}
|
|
26880
27605
|
],
|
|
26881
27606
|
"headers": [
|
|
@@ -27175,12 +27900,14 @@ export const generatedBoards = [
|
|
|
27175
27900
|
{
|
|
27176
27901
|
"title": "Arduino Leonardo documentation",
|
|
27177
27902
|
"url": "https://docs.arduino.cc/hardware/leonardo/",
|
|
27178
|
-
"official": true
|
|
27903
|
+
"official": true,
|
|
27904
|
+
"type": "Docs"
|
|
27179
27905
|
},
|
|
27180
27906
|
{
|
|
27181
27907
|
"title": "Arduino Leonardo full pinout PDF",
|
|
27182
27908
|
"url": "https://docs.arduino.cc/resources/pinouts/A000057-full-pinout.pdf",
|
|
27183
|
-
"official": true
|
|
27909
|
+
"official": true,
|
|
27910
|
+
"type": "Pinout"
|
|
27184
27911
|
}
|
|
27185
27912
|
],
|
|
27186
27913
|
"headers": [
|
|
@@ -27639,12 +28366,14 @@ export const generatedBoards = [
|
|
|
27639
28366
|
{
|
|
27640
28367
|
"title": "Arduino Micro documentation",
|
|
27641
28368
|
"url": "https://docs.arduino.cc/hardware/micro/",
|
|
27642
|
-
"official": true
|
|
28369
|
+
"official": true,
|
|
28370
|
+
"type": "Docs"
|
|
27643
28371
|
},
|
|
27644
28372
|
{
|
|
27645
28373
|
"title": "Arduino Micro full pinout PDF",
|
|
27646
28374
|
"url": "https://docs.arduino.cc/resources/pinouts/A000053-full-pinout.pdf",
|
|
27647
|
-
"official": true
|
|
28375
|
+
"official": true,
|
|
28376
|
+
"type": "Pinout"
|
|
27648
28377
|
}
|
|
27649
28378
|
],
|
|
27650
28379
|
"headers": [
|
|
@@ -28153,12 +28882,14 @@ export const generatedBoards = [
|
|
|
28153
28882
|
{
|
|
28154
28883
|
"title": "Arduino Zero documentation",
|
|
28155
28884
|
"url": "https://docs.arduino.cc/hardware/zero/",
|
|
28156
|
-
"official": true
|
|
28885
|
+
"official": true,
|
|
28886
|
+
"type": "Docs"
|
|
28157
28887
|
},
|
|
28158
28888
|
{
|
|
28159
28889
|
"title": "Arduino Zero full pinout PDF",
|
|
28160
28890
|
"url": "https://docs.arduino.cc/resources/pinouts/ABX00003-full-pinout.pdf",
|
|
28161
|
-
"official": true
|
|
28891
|
+
"official": true,
|
|
28892
|
+
"type": "Pinout"
|
|
28162
28893
|
}
|
|
28163
28894
|
],
|
|
28164
28895
|
"headers": [
|
|
@@ -28632,7 +29363,8 @@ export const generatedBoards = [
|
|
|
28632
29363
|
{
|
|
28633
29364
|
"title": "Arduino Due documentation",
|
|
28634
29365
|
"url": "https://docs.arduino.cc/hardware/due",
|
|
28635
|
-
"official": true
|
|
29366
|
+
"official": true,
|
|
29367
|
+
"type": "Docs"
|
|
28636
29368
|
}
|
|
28637
29369
|
],
|
|
28638
29370
|
"headers": [
|
|
@@ -29389,12 +30121,14 @@ export const generatedBoards = [
|
|
|
29389
30121
|
{
|
|
29390
30122
|
"title": "Arduino Nano Every documentation",
|
|
29391
30123
|
"url": "https://docs.arduino.cc/hardware/nano-every",
|
|
29392
|
-
"official": true
|
|
30124
|
+
"official": true,
|
|
30125
|
+
"type": "Docs"
|
|
29393
30126
|
},
|
|
29394
30127
|
{
|
|
29395
30128
|
"title": "Arduino Nano Every official pinout (PDF)",
|
|
29396
30129
|
"url": "https://docs.arduino.cc/resources/pinouts/ABX00028-full-pinout.pdf",
|
|
29397
|
-
"official": true
|
|
30130
|
+
"official": true,
|
|
30131
|
+
"type": "Pinout"
|
|
29398
30132
|
}
|
|
29399
30133
|
],
|
|
29400
30134
|
"headers": [
|
|
@@ -29743,7 +30477,8 @@ export const generatedBoards = [
|
|
|
29743
30477
|
{
|
|
29744
30478
|
"title": "Arduino Nano 33 IoT documentation",
|
|
29745
30479
|
"url": "https://docs.arduino.cc/hardware/nano-33-iot",
|
|
29746
|
-
"official": true
|
|
30480
|
+
"official": true,
|
|
30481
|
+
"type": "Docs"
|
|
29747
30482
|
}
|
|
29748
30483
|
],
|
|
29749
30484
|
"headers": [
|
|
@@ -30160,7 +30895,8 @@ export const generatedBoards = [
|
|
|
30160
30895
|
{
|
|
30161
30896
|
"title": "Arduino Nano RP2040 Connect documentation",
|
|
30162
30897
|
"url": "https://docs.arduino.cc/hardware/nano-rp2040-connect",
|
|
30163
|
-
"official": true
|
|
30898
|
+
"official": true,
|
|
30899
|
+
"type": "Docs"
|
|
30164
30900
|
}
|
|
30165
30901
|
],
|
|
30166
30902
|
"headers": [
|
|
@@ -30571,7 +31307,8 @@ export const generatedBoards = [
|
|
|
30571
31307
|
{
|
|
30572
31308
|
"title": "Arduino MKR Zero documentation",
|
|
30573
31309
|
"url": "https://docs.arduino.cc/hardware/mkr-zero",
|
|
30574
|
-
"official": true
|
|
31310
|
+
"official": true,
|
|
31311
|
+
"type": "Docs"
|
|
30575
31312
|
}
|
|
30576
31313
|
],
|
|
30577
31314
|
"headers": [
|
|
@@ -30967,7 +31704,8 @@ export const generatedBoards = [
|
|
|
30967
31704
|
{
|
|
30968
31705
|
"title": "Arduino MKR WAN 1310 documentation",
|
|
30969
31706
|
"url": "https://docs.arduino.cc/hardware/mkr-wan-1310",
|
|
30970
|
-
"official": true
|
|
31707
|
+
"official": true,
|
|
31708
|
+
"type": "Docs"
|
|
30971
31709
|
}
|
|
30972
31710
|
],
|
|
30973
31711
|
"headers": [
|
|
@@ -31363,7 +32101,8 @@ export const generatedBoards = [
|
|
|
31363
32101
|
{
|
|
31364
32102
|
"title": "Adafruit Feather M4 Express pinouts",
|
|
31365
32103
|
"url": "https://learn.adafruit.com/adafruit-feather-m4-express-atsamd51/pinouts",
|
|
31366
|
-
"official": true
|
|
32104
|
+
"official": true,
|
|
32105
|
+
"type": "Pinout"
|
|
31367
32106
|
}
|
|
31368
32107
|
],
|
|
31369
32108
|
"headers": [
|
|
@@ -31763,7 +32502,8 @@ export const generatedBoards = [
|
|
|
31763
32502
|
{
|
|
31764
32503
|
"title": "Adafruit nRF52840 Feather pinouts",
|
|
31765
32504
|
"url": "https://learn.adafruit.com/introducing-the-adafruit-nrf52840-feather/pinouts",
|
|
31766
|
-
"official": true
|
|
32505
|
+
"official": true,
|
|
32506
|
+
"type": "Pinout"
|
|
31767
32507
|
}
|
|
31768
32508
|
],
|
|
31769
32509
|
"headers": [
|
|
@@ -32159,7 +32899,8 @@ export const generatedBoards = [
|
|
|
32159
32899
|
{
|
|
32160
32900
|
"title": "Adafruit ESP32-S3 Feather pinouts",
|
|
32161
32901
|
"url": "https://learn.adafruit.com/adafruit-esp32-s3-feather/pinouts",
|
|
32162
|
-
"official": true
|
|
32902
|
+
"official": true,
|
|
32903
|
+
"type": "Pinout"
|
|
32163
32904
|
}
|
|
32164
32905
|
],
|
|
32165
32906
|
"headers": [
|
|
@@ -32545,7 +33286,8 @@ export const generatedBoards = [
|
|
|
32545
33286
|
{
|
|
32546
33287
|
"title": "Adafruit ItsyBitsy RP2040 pinouts",
|
|
32547
33288
|
"url": "https://learn.adafruit.com/adafruit-itsybitsy-rp2040/pinouts",
|
|
32548
|
-
"official": true
|
|
33289
|
+
"official": true,
|
|
33290
|
+
"type": "Pinout"
|
|
32549
33291
|
}
|
|
32550
33292
|
],
|
|
32551
33293
|
"headers": [
|
|
@@ -32881,7 +33623,8 @@ export const generatedBoards = [
|
|
|
32881
33623
|
{
|
|
32882
33624
|
"title": "Adafruit Metro M4 Express pinouts",
|
|
32883
33625
|
"url": "https://learn.adafruit.com/adafruit-metro-m4-express-featuring-atsamd51/pinouts",
|
|
32884
|
-
"official": true
|
|
33626
|
+
"official": true,
|
|
33627
|
+
"type": "Pinout"
|
|
32885
33628
|
}
|
|
32886
33629
|
],
|
|
32887
33630
|
"headers": [
|
|
@@ -33283,7 +34026,8 @@ export const generatedBoards = [
|
|
|
33283
34026
|
{
|
|
33284
34027
|
"title": "Adafruit Grand Central pinouts",
|
|
33285
34028
|
"url": "https://learn.adafruit.com/adafruit-grand-central/pinouts",
|
|
33286
|
-
"official": true
|
|
34029
|
+
"official": true,
|
|
34030
|
+
"type": "Pinout"
|
|
33287
34031
|
}
|
|
33288
34032
|
],
|
|
33289
34033
|
"headers": [
|
|
@@ -34062,7 +34806,8 @@ export const generatedBoards = [
|
|
|
34062
34806
|
{
|
|
34063
34807
|
"title": "Seeed XIAO SAMD21 wiki",
|
|
34064
34808
|
"url": "https://wiki.seeedstudio.com/Seeeduino-XIAO/",
|
|
34065
|
-
"official": true
|
|
34809
|
+
"official": true,
|
|
34810
|
+
"type": "Docs"
|
|
34066
34811
|
}
|
|
34067
34812
|
],
|
|
34068
34813
|
"headers": [
|
|
@@ -34278,7 +35023,8 @@ export const generatedBoards = [
|
|
|
34278
35023
|
{
|
|
34279
35024
|
"title": "Seeed XIAO nRF52840 wiki",
|
|
34280
35025
|
"url": "https://wiki.seeedstudio.com/XIAO_BLE/",
|
|
34281
|
-
"official": true
|
|
35026
|
+
"official": true,
|
|
35027
|
+
"type": "Docs"
|
|
34282
35028
|
}
|
|
34283
35029
|
],
|
|
34284
35030
|
"headers": [
|
|
@@ -34493,7 +35239,8 @@ export const generatedBoards = [
|
|
|
34493
35239
|
{
|
|
34494
35240
|
"title": "Seeed XIAO ESP32C3 wiki",
|
|
34495
35241
|
"url": "https://wiki.seeedstudio.com/XIAO_ESP32C3_Getting_Started/",
|
|
34496
|
-
"official": true
|
|
35242
|
+
"official": true,
|
|
35243
|
+
"type": "Docs"
|
|
34497
35244
|
}
|
|
34498
35245
|
],
|
|
34499
35246
|
"headers": [
|
|
@@ -34708,7 +35455,8 @@ export const generatedBoards = [
|
|
|
34708
35455
|
{
|
|
34709
35456
|
"title": "Seeed XIAO ESP32C6 wiki",
|
|
34710
35457
|
"url": "https://wiki.seeedstudio.com/xiao_esp32c6_getting_started/",
|
|
34711
|
-
"official": true
|
|
35458
|
+
"official": true,
|
|
35459
|
+
"type": "Docs"
|
|
34712
35460
|
}
|
|
34713
35461
|
],
|
|
34714
35462
|
"headers": [
|
|
@@ -34923,7 +35671,8 @@ export const generatedBoards = [
|
|
|
34923
35671
|
{
|
|
34924
35672
|
"title": "Seeed reTerminal wiki",
|
|
34925
35673
|
"url": "https://wiki.seeedstudio.com/reTerminal/",
|
|
34926
|
-
"official": true
|
|
35674
|
+
"official": true,
|
|
35675
|
+
"type": "Docs"
|
|
34927
35676
|
}
|
|
34928
35677
|
],
|
|
34929
35678
|
"headers": [
|
|
@@ -35397,7 +36146,8 @@ export const generatedBoards = [
|
|
|
35397
36146
|
{
|
|
35398
36147
|
"title": "SparkFun Pro Micro RP2040 hookup guide",
|
|
35399
36148
|
"url": "https://learn.sparkfun.com/tutorials/pro-micro-rp2040-hookup-guide",
|
|
35400
|
-
"official": true
|
|
36149
|
+
"official": true,
|
|
36150
|
+
"type": "Docs"
|
|
35401
36151
|
}
|
|
35402
36152
|
],
|
|
35403
36153
|
"headers": [
|
|
@@ -35702,12 +36452,14 @@ export const generatedBoards = [
|
|
|
35702
36452
|
{
|
|
35703
36453
|
"title": "SparkFun RedBoard Turbo hookup guide",
|
|
35704
36454
|
"url": "https://learn.sparkfun.com/tutorials/redboard-turbo-hookup-guide",
|
|
35705
|
-
"official": true
|
|
36455
|
+
"official": true,
|
|
36456
|
+
"type": "Docs"
|
|
35706
36457
|
},
|
|
35707
36458
|
{
|
|
35708
36459
|
"title": "SparkFun RedBoard Turbo graphical datasheet",
|
|
35709
36460
|
"url": "https://github.com/sparkfun/RedBoard_Turbo/blob/master/Documentation/GraphicalDatasheet-SAMD21TurboDev_1.pdf",
|
|
35710
|
-
"official": true
|
|
36461
|
+
"official": true,
|
|
36462
|
+
"type": "Pinout"
|
|
35711
36463
|
}
|
|
35712
36464
|
],
|
|
35713
36465
|
"headers": [
|
|
@@ -36070,7 +36822,8 @@ export const generatedBoards = [
|
|
|
36070
36822
|
{
|
|
36071
36823
|
"title": "SparkFun ESP32 Thing hookup guide",
|
|
36072
36824
|
"url": "https://learn.sparkfun.com/tutorials/esp32-thing-hookup-guide",
|
|
36073
|
-
"official": true
|
|
36825
|
+
"official": true,
|
|
36826
|
+
"type": "Docs"
|
|
36074
36827
|
}
|
|
36075
36828
|
],
|
|
36076
36829
|
"headers": [
|
|
@@ -36464,17 +37217,20 @@ export const generatedBoards = [
|
|
|
36464
37217
|
{
|
|
36465
37218
|
"title": "PJRC Teensy 3.2 product page",
|
|
36466
37219
|
"url": "https://www.pjrc.com/store/teensy32.html",
|
|
36467
|
-
"official": true
|
|
37220
|
+
"official": true,
|
|
37221
|
+
"type": "Docs"
|
|
36468
37222
|
},
|
|
36469
37223
|
{
|
|
36470
37224
|
"title": "PJRC Teensy 3.2 front pinout card",
|
|
36471
37225
|
"url": "https://www.pjrc.com/teensy/card7a_rev3_web.pdf",
|
|
36472
|
-
"official": true
|
|
37226
|
+
"official": true,
|
|
37227
|
+
"type": "Pinout"
|
|
36473
37228
|
},
|
|
36474
37229
|
{
|
|
36475
37230
|
"title": "PJRC Teensy 3.2 back pinout card",
|
|
36476
37231
|
"url": "https://www.pjrc.com/teensy/card7b_rev3_web.pdf",
|
|
36477
|
-
"official": true
|
|
37232
|
+
"official": true,
|
|
37233
|
+
"type": "Pinout"
|
|
36478
37234
|
}
|
|
36479
37235
|
],
|
|
36480
37236
|
"headers": [
|
|
@@ -37027,12 +37783,14 @@ export const generatedBoards = [
|
|
|
37027
37783
|
{
|
|
37028
37784
|
"title": "PJRC Teensy 4.0 product page",
|
|
37029
37785
|
"url": "https://www.pjrc.com/store/teensy40.html",
|
|
37030
|
-
"official": true
|
|
37786
|
+
"official": true,
|
|
37787
|
+
"type": "Docs"
|
|
37031
37788
|
},
|
|
37032
37789
|
{
|
|
37033
37790
|
"title": "PJRC Teensy 4.0 pinout card",
|
|
37034
37791
|
"url": "https://www.pjrc.com/teensy/pinout.html",
|
|
37035
|
-
"official": true
|
|
37792
|
+
"official": true,
|
|
37793
|
+
"type": "Pinout"
|
|
37036
37794
|
}
|
|
37037
37795
|
],
|
|
37038
37796
|
"headers": [
|
|
@@ -37409,7 +38167,8 @@ export const generatedBoards = [
|
|
|
37409
38167
|
{
|
|
37410
38168
|
"title": "PJRC Teensy LC product page",
|
|
37411
38169
|
"url": "https://www.pjrc.com/store/teensylc.html",
|
|
37412
|
-
"official": true
|
|
38170
|
+
"official": true,
|
|
38171
|
+
"type": "Docs"
|
|
37413
38172
|
}
|
|
37414
38173
|
],
|
|
37415
38174
|
"headers": [
|
|
@@ -37775,7 +38534,8 @@ export const generatedBoards = [
|
|
|
37775
38534
|
{
|
|
37776
38535
|
"title": "Particle Boron datasheet",
|
|
37777
38536
|
"url": "https://docs.particle.io/reference/datasheets/b-series/boron-datasheet/",
|
|
37778
|
-
"official": true
|
|
38537
|
+
"official": true,
|
|
38538
|
+
"type": "Datasheet"
|
|
37779
38539
|
}
|
|
37780
38540
|
],
|
|
37781
38541
|
"headers": [
|
|
@@ -38105,7 +38865,8 @@ export const generatedBoards = [
|
|
|
38105
38865
|
{
|
|
38106
38866
|
"title": "Particle Argon datasheet",
|
|
38107
38867
|
"url": "https://docs.particle.io/reference/datasheets/wi-fi/argon-datasheet/",
|
|
38108
|
-
"official": true
|
|
38868
|
+
"official": true,
|
|
38869
|
+
"type": "Datasheet"
|
|
38109
38870
|
}
|
|
38110
38871
|
],
|
|
38111
38872
|
"headers": [
|
|
@@ -38435,12 +39196,14 @@ export const generatedBoards = [
|
|
|
38435
39196
|
{
|
|
38436
39197
|
"title": "Jetson Nano developer kit user guide",
|
|
38437
39198
|
"url": "https://developer.nvidia.com/embedded/dlc/jetson_nano_developer_kit_user_guide",
|
|
38438
|
-
"official": true
|
|
39199
|
+
"official": true,
|
|
39200
|
+
"type": "Manual"
|
|
38439
39201
|
},
|
|
38440
39202
|
{
|
|
38441
39203
|
"title": "Jetson Nano 40-pin expansion header (J41) GPIO usage",
|
|
38442
39204
|
"url": "https://developer.nvidia.com/embedded/dlc/jetson-nano-40-pin-expansion-header-1.2",
|
|
38443
|
-
"official": true
|
|
39205
|
+
"official": true,
|
|
39206
|
+
"type": "Pinout"
|
|
38444
39207
|
}
|
|
38445
39208
|
],
|
|
38446
39209
|
"headers": [
|
|
@@ -38874,7 +39637,8 @@ export const generatedBoards = [
|
|
|
38874
39637
|
{
|
|
38875
39638
|
"title": "Jetson Xavier NX developer kit getting started guide",
|
|
38876
39639
|
"url": "https://developer.nvidia.com/embedded/learn/get-started-jetson-xavier-nx-devkit",
|
|
38877
|
-
"official": true
|
|
39640
|
+
"official": true,
|
|
39641
|
+
"type": "Docs"
|
|
38878
39642
|
}
|
|
38879
39643
|
],
|
|
38880
39644
|
"headers": [
|
|
@@ -39314,7 +40078,8 @@ export const generatedBoards = [
|
|
|
39314
40078
|
{
|
|
39315
40079
|
"title": "BeagleY-AI official documentation",
|
|
39316
40080
|
"url": "https://docs.beagleboard.org/latest/boards/beagley/ai/index.html",
|
|
39317
|
-
"official": true
|
|
40081
|
+
"official": true,
|
|
40082
|
+
"type": "Docs"
|
|
39318
40083
|
}
|
|
39319
40084
|
],
|
|
39320
40085
|
"headers": [
|
|
@@ -39785,12 +40550,14 @@ export const generatedBoards = [
|
|
|
39785
40550
|
{
|
|
39786
40551
|
"title": "BeagleBone AI-64 official documentation",
|
|
39787
40552
|
"url": "https://docs.beagleboard.org/latest/boards/beaglebone/ai-64/index.html",
|
|
39788
|
-
"official": true
|
|
40553
|
+
"official": true,
|
|
40554
|
+
"type": "Docs"
|
|
39789
40555
|
},
|
|
39790
40556
|
{
|
|
39791
40557
|
"title": "BeagleBone AI-64 expansion header tables",
|
|
39792
40558
|
"url": "https://docs.beagleboard.org/boards/beaglebone/ai-64/04-expansion.html",
|
|
39793
|
-
"official": true
|
|
40559
|
+
"official": true,
|
|
40560
|
+
"type": "Pinout"
|
|
39794
40561
|
}
|
|
39795
40562
|
],
|
|
39796
40563
|
"headers": [
|
|
@@ -40685,12 +41452,14 @@ export const generatedBoards = [
|
|
|
40685
41452
|
{
|
|
40686
41453
|
"title": "Radxa ROCK 5B documentation",
|
|
40687
41454
|
"url": "https://docs.radxa.com/en/rock5/rock5b",
|
|
40688
|
-
"official": true
|
|
41455
|
+
"official": true,
|
|
41456
|
+
"type": "Docs"
|
|
40689
41457
|
},
|
|
40690
41458
|
{
|
|
40691
41459
|
"title": "Radxa ROCK 5B hardware interface",
|
|
40692
41460
|
"url": "https://docs.radxa.com/en/rock5/rock5b/hardware-design/hardware-interface",
|
|
40693
|
-
"official": true
|
|
41461
|
+
"official": true,
|
|
41462
|
+
"type": "Pinout"
|
|
40694
41463
|
}
|
|
40695
41464
|
],
|
|
40696
41465
|
"headers": [
|
|
@@ -41164,7 +41933,8 @@ export const generatedBoards = [
|
|
|
41164
41933
|
{
|
|
41165
41934
|
"title": "Radxa ZERO 3 hardware interface",
|
|
41166
41935
|
"url": "https://docs.radxa.com/en/zero/zero3/hardware-design/hardware-interface",
|
|
41167
|
-
"official": true
|
|
41936
|
+
"official": true,
|
|
41937
|
+
"type": "Docs"
|
|
41168
41938
|
}
|
|
41169
41939
|
],
|
|
41170
41940
|
"headers": [
|
|
@@ -41648,7 +42418,8 @@ export const generatedBoards = [
|
|
|
41648
42418
|
{
|
|
41649
42419
|
"title": "ODROID-N2 expansion connectors wiki",
|
|
41650
42420
|
"url": "https://wiki.odroid.com/odroid-n2/hardware/expansion_connectors",
|
|
41651
|
-
"official": true
|
|
42421
|
+
"official": true,
|
|
42422
|
+
"type": "Pinout"
|
|
41652
42423
|
}
|
|
41653
42424
|
],
|
|
41654
42425
|
"headers": [
|
|
@@ -42118,7 +42889,8 @@ export const generatedBoards = [
|
|
|
42118
42889
|
{
|
|
42119
42890
|
"title": "ODROID-M1 expansion connectors wiki",
|
|
42120
42891
|
"url": "https://wiki.odroid.com/odroid-m1/hardware/expansion_connectors",
|
|
42121
|
-
"official": true
|
|
42892
|
+
"official": true,
|
|
42893
|
+
"type": "Pinout"
|
|
42122
42894
|
}
|
|
42123
42895
|
],
|
|
42124
42896
|
"headers": [
|
|
@@ -42582,7 +43354,8 @@ export const generatedBoards = [
|
|
|
42582
43354
|
{
|
|
42583
43355
|
"title": "Quartz64 Pine64 wiki",
|
|
42584
43356
|
"url": "https://wiki.pine64.org/wiki/Quartz64",
|
|
42585
|
-
"official": true
|
|
43357
|
+
"official": true,
|
|
43358
|
+
"type": "Docs"
|
|
42586
43359
|
}
|
|
42587
43360
|
],
|
|
42588
43361
|
"headers": [
|
|
@@ -43034,12 +43807,14 @@ export const generatedBoards = [
|
|
|
43034
43807
|
{
|
|
43035
43808
|
"title": "Khadas VIM4 documentation",
|
|
43036
43809
|
"url": "https://docs.khadas.com/products/sbc/vim4/",
|
|
43037
|
-
"official": true
|
|
43810
|
+
"official": true,
|
|
43811
|
+
"type": "Docs"
|
|
43038
43812
|
},
|
|
43039
43813
|
{
|
|
43040
43814
|
"title": "Khadas VIM4 40-pin header",
|
|
43041
43815
|
"url": "https://docs.khadas.com/products/sbc/vim4/applications/gpio/40pin-header",
|
|
43042
|
-
"official": true
|
|
43816
|
+
"official": true,
|
|
43817
|
+
"type": "Pinout"
|
|
43043
43818
|
}
|
|
43044
43819
|
],
|
|
43045
43820
|
"headers": [
|
|
@@ -43465,12 +44240,14 @@ export const generatedBoards = [
|
|
|
43465
44240
|
{
|
|
43466
44241
|
"title": "ST NUCLEO-F103RB product page",
|
|
43467
44242
|
"url": "https://www.st.com/en/evaluation-tools/nucleo-f103rb.html",
|
|
43468
|
-
"official": true
|
|
44243
|
+
"official": true,
|
|
44244
|
+
"type": "Docs"
|
|
43469
44245
|
},
|
|
43470
44246
|
{
|
|
43471
44247
|
"title": "ST Nucleo-64 user manual UM1724",
|
|
43472
44248
|
"url": "https://www.st.com/resource/en/user_manual/um1724-stm32-nucleo64-boards-mb1136-stmicroelectronics.pdf",
|
|
43473
|
-
"official": true
|
|
44249
|
+
"official": true,
|
|
44250
|
+
"type": "Manual"
|
|
43474
44251
|
}
|
|
43475
44252
|
],
|
|
43476
44253
|
"headers": [
|
|
@@ -43829,12 +44606,14 @@ export const generatedBoards = [
|
|
|
43829
44606
|
{
|
|
43830
44607
|
"title": "ST NUCLEO-F446RE product page",
|
|
43831
44608
|
"url": "https://www.st.com/en/evaluation-tools/nucleo-f446re.html",
|
|
43832
|
-
"official": true
|
|
44609
|
+
"official": true,
|
|
44610
|
+
"type": "Docs"
|
|
43833
44611
|
},
|
|
43834
44612
|
{
|
|
43835
44613
|
"title": "ST Nucleo-64 user manual UM1724",
|
|
43836
44614
|
"url": "https://www.st.com/resource/en/user_manual/um1724-stm32-nucleo64-boards-mb1136-stmicroelectronics.pdf",
|
|
43837
|
-
"official": true
|
|
44615
|
+
"official": true,
|
|
44616
|
+
"type": "Manual"
|
|
43838
44617
|
}
|
|
43839
44618
|
],
|
|
43840
44619
|
"headers": [
|
|
@@ -44189,12 +44968,14 @@ export const generatedBoards = [
|
|
|
44189
44968
|
{
|
|
44190
44969
|
"title": "ST NUCLEO-L476RG product page",
|
|
44191
44970
|
"url": "https://www.st.com/en/evaluation-tools/nucleo-l476rg.html",
|
|
44192
|
-
"official": true
|
|
44971
|
+
"official": true,
|
|
44972
|
+
"type": "Docs"
|
|
44193
44973
|
},
|
|
44194
44974
|
{
|
|
44195
44975
|
"title": "ST Nucleo-64 user manual UM1724",
|
|
44196
44976
|
"url": "https://www.st.com/resource/en/user_manual/um1724-stm32-nucleo64-boards-mb1136-stmicroelectronics.pdf",
|
|
44197
|
-
"official": true
|
|
44977
|
+
"official": true,
|
|
44978
|
+
"type": "Manual"
|
|
44198
44979
|
}
|
|
44199
44980
|
],
|
|
44200
44981
|
"headers": [
|
|
@@ -44549,7 +45330,8 @@ export const generatedBoards = [
|
|
|
44549
45330
|
{
|
|
44550
45331
|
"title": "ST NUCLEO-G071RB product page",
|
|
44551
45332
|
"url": "https://www.st.com/en/evaluation-tools/nucleo-g071rb.html",
|
|
44552
|
-
"official": true
|
|
45333
|
+
"official": true,
|
|
45334
|
+
"type": "Docs"
|
|
44553
45335
|
}
|
|
44554
45336
|
],
|
|
44555
45337
|
"headers": [
|
|
@@ -44945,7 +45727,8 @@ export const generatedBoards = [
|
|
|
44945
45727
|
{
|
|
44946
45728
|
"title": "Nordic nRF5340 DK product page",
|
|
44947
45729
|
"url": "https://www.nordicsemi.com/Products/Development-hardware/nRF5340-DK",
|
|
44948
|
-
"official": true
|
|
45730
|
+
"official": true,
|
|
45731
|
+
"type": "Docs"
|
|
44949
45732
|
}
|
|
44950
45733
|
],
|
|
44951
45734
|
"headers": [
|
|
@@ -45327,7 +46110,8 @@ export const generatedBoards = [
|
|
|
45327
46110
|
{
|
|
45328
46111
|
"title": "Nordic nRF52 DK product page",
|
|
45329
46112
|
"url": "https://www.nordicsemi.com/Products/Development-hardware/nRF52-DK",
|
|
45330
|
-
"official": true
|
|
46113
|
+
"official": true,
|
|
46114
|
+
"type": "Docs"
|
|
45331
46115
|
}
|
|
45332
46116
|
],
|
|
45333
46117
|
"headers": [
|
|
@@ -45713,12 +46497,14 @@ export const generatedBoards = [
|
|
|
45713
46497
|
{
|
|
45714
46498
|
"title": "TI LP-MSPM0G3507 tool page",
|
|
45715
46499
|
"url": "https://www.ti.com/tool/LP-MSPM0G3507",
|
|
45716
|
-
"official": true
|
|
46500
|
+
"official": true,
|
|
46501
|
+
"type": "Docs"
|
|
45717
46502
|
},
|
|
45718
46503
|
{
|
|
45719
46504
|
"title": "MSPM0G3507 LaunchPad user's guide",
|
|
45720
46505
|
"url": "https://www.ti.com/lit/pdf/SLAU873",
|
|
45721
|
-
"official": true
|
|
46506
|
+
"official": true,
|
|
46507
|
+
"type": "Manual"
|
|
45722
46508
|
}
|
|
45723
46509
|
],
|
|
45724
46510
|
"headers": [
|
|
@@ -46219,12 +47005,14 @@ export const generatedBoards = [
|
|
|
46219
47005
|
{
|
|
46220
47006
|
"title": "Silicon Labs xG24 Explorer Kit page",
|
|
46221
47007
|
"url": "https://www.silabs.com/development-tools/wireless/efr32xg24-explorer-kit",
|
|
46222
|
-
"official": true
|
|
47008
|
+
"official": true,
|
|
47009
|
+
"type": "Docs"
|
|
46223
47010
|
},
|
|
46224
47011
|
{
|
|
46225
47012
|
"title": "xG24 Explorer Kit user's guide",
|
|
46226
47013
|
"url": "https://www.silabs.com/documents/public/user-guides/ug533-xg24-ek2703a.pdf",
|
|
46227
|
-
"official": true
|
|
47014
|
+
"official": true,
|
|
47015
|
+
"type": "Manual"
|
|
46228
47016
|
}
|
|
46229
47017
|
],
|
|
46230
47018
|
"headers": [
|
|
@@ -46556,12 +47344,14 @@ export const generatedBoards = [
|
|
|
46556
47344
|
{
|
|
46557
47345
|
"title": "Raspberry Pi Pico 2 W documentation",
|
|
46558
47346
|
"url": "https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html",
|
|
46559
|
-
"official": true
|
|
47347
|
+
"official": true,
|
|
47348
|
+
"type": "Docs"
|
|
46560
47349
|
},
|
|
46561
47350
|
{
|
|
46562
47351
|
"title": "Raspberry Pi Pico 2 W pinout PDF",
|
|
46563
47352
|
"url": "https://pip-assets.raspberrypi.com/categories/1005-raspberry-pi-pico-2/documents/RP-008301-DS-1-Pico-2-Pinout.pdf",
|
|
46564
|
-
"official": true
|
|
47353
|
+
"official": true,
|
|
47354
|
+
"type": "Pinout"
|
|
46565
47355
|
}
|
|
46566
47356
|
],
|
|
46567
47357
|
"headers": [
|
|
@@ -47036,12 +47826,14 @@ export const generatedBoards = [
|
|
|
47036
47826
|
{
|
|
47037
47827
|
"title": "Adafruit QT Py RP2040 learn guide",
|
|
47038
47828
|
"url": "https://learn.adafruit.com/adafruit-qt-py-rp2040",
|
|
47039
|
-
"official": true
|
|
47829
|
+
"official": true,
|
|
47830
|
+
"type": "Docs"
|
|
47040
47831
|
},
|
|
47041
47832
|
{
|
|
47042
47833
|
"title": "Adafruit QT Py RP2040 pinouts",
|
|
47043
47834
|
"url": "https://learn.adafruit.com/adafruit-qt-py-rp2040/pinouts",
|
|
47044
|
-
"official": true
|
|
47835
|
+
"official": true,
|
|
47836
|
+
"type": "Pinout"
|
|
47045
47837
|
}
|
|
47046
47838
|
],
|
|
47047
47839
|
"headers": [
|
|
@@ -47276,12 +48068,14 @@ export const generatedBoards = [
|
|
|
47276
48068
|
{
|
|
47277
48069
|
"title": "Waveshare RP2040-Zero wiki",
|
|
47278
48070
|
"url": "https://www.waveshare.com/wiki/RP2040-Zero",
|
|
47279
|
-
"official": true
|
|
48071
|
+
"official": true,
|
|
48072
|
+
"type": "Docs"
|
|
47280
48073
|
},
|
|
47281
48074
|
{
|
|
47282
48075
|
"title": "Waveshare RP2040-Zero schematic",
|
|
47283
48076
|
"url": "https://www.waveshare.com/w/upload/2/21/RP2040-Zero-Schematic.pdf",
|
|
47284
|
-
"official": true
|
|
48077
|
+
"official": true,
|
|
48078
|
+
"type": "Schematic"
|
|
47285
48079
|
}
|
|
47286
48080
|
],
|
|
47287
48081
|
"headers": [
|
|
@@ -47613,22 +48407,26 @@ export const generatedBoards = [
|
|
|
47613
48407
|
{
|
|
47614
48408
|
"title": "MachXO2 Breakout Board Evaluation Kit User's Guide EB68 (Lattice)",
|
|
47615
48409
|
"url": "https://www.latticesemi.com/~/media/LatticeSemi/Documents/UserManuals/MQ/MachXO2BreakoutBoardEvaluationKitUsersGuide.pdf",
|
|
47616
|
-
"official": true
|
|
48410
|
+
"official": true,
|
|
48411
|
+
"type": "Manual"
|
|
47617
48412
|
},
|
|
47618
48413
|
{
|
|
47619
48414
|
"title": "MachXO2 Family Data Sheet FPGA-DS-02056 (Lattice)",
|
|
47620
48415
|
"url": "https://www.latticesemi.com/view_document?document_id=38834",
|
|
47621
|
-
"official": true
|
|
48416
|
+
"official": true,
|
|
48417
|
+
"type": "Datasheet"
|
|
47622
48418
|
},
|
|
47623
48419
|
{
|
|
47624
48420
|
"title": "MachXO2 Breakout Board product page (Lattice)",
|
|
47625
48421
|
"url": "https://www.latticesemi.com/products/developmentboardsandkits/machxo2breakoutboard",
|
|
47626
|
-
"official": true
|
|
48422
|
+
"official": true,
|
|
48423
|
+
"type": "Docs"
|
|
47627
48424
|
},
|
|
47628
48425
|
{
|
|
47629
|
-
"title": "LCMXO2-7000HE-B-EVN product listing (DigiKey)
|
|
48426
|
+
"title": "LCMXO2-7000HE-B-EVN product listing (DigiKey)",
|
|
47630
48427
|
"url": "https://www.digikey.com/en/products/detail/lattice-semiconductor-corporation/LCMXO2-7000HE-B-EVN/3906092",
|
|
47631
|
-
"official": false
|
|
48428
|
+
"official": false,
|
|
48429
|
+
"type": "Docs"
|
|
47632
48430
|
}
|
|
47633
48431
|
],
|
|
47634
48432
|
"headers": [
|
|
@@ -49165,19 +49963,22 @@ export const generatedBoards = [
|
|
|
49165
49963
|
],
|
|
49166
49964
|
"sources": [
|
|
49167
49965
|
{
|
|
49168
|
-
"title": "MachXO3D Breakout Board User Guide FPGA-UG-02084-0.90 (Farnell PDF)
|
|
49966
|
+
"title": "MachXO3D Breakout Board User Guide FPGA-UG-02084-0.90 (Farnell PDF)",
|
|
49169
49967
|
"url": "https://www.farnell.com/datasheets/3216755.pdf",
|
|
49170
|
-
"official": false
|
|
49968
|
+
"official": false,
|
|
49969
|
+
"type": "Manual"
|
|
49171
49970
|
},
|
|
49172
49971
|
{
|
|
49173
49972
|
"title": "MachXO3D Breakout Board product page (Lattice)",
|
|
49174
49973
|
"url": "https://www.latticesemi.com/products/developmentboardsandkits/machxo3d_breakout_board",
|
|
49175
|
-
"official": true
|
|
49974
|
+
"official": true,
|
|
49975
|
+
"type": "Docs"
|
|
49176
49976
|
},
|
|
49177
49977
|
{
|
|
49178
|
-
"title": "LCMXO3D-9400HC-B-EVN product listing (Newark)
|
|
49978
|
+
"title": "LCMXO3D-9400HC-B-EVN product listing (Newark)",
|
|
49179
49979
|
"url": "https://www.newark.com/lattice-semiconductor/lcmxo3d-9400hc-b-evn/breakout-board-machxo3d-fpga/dp/55AJ2601",
|
|
49180
|
-
"official": false
|
|
49980
|
+
"official": false,
|
|
49981
|
+
"type": "Docs"
|
|
49181
49982
|
}
|
|
49182
49983
|
],
|
|
49183
49984
|
"headers": [
|
|
@@ -50712,17 +51513,20 @@ export const generatedBoards = [
|
|
|
50712
51513
|
{
|
|
50713
51514
|
"title": "iCEstick Evaluation Kit User's Guide EB82 (Lattice)",
|
|
50714
51515
|
"url": "https://www.latticesemi.com/-/media/LatticeSemi/Documents/UserManuals/EI2/EB82-iCEstick_User_Manual.ashx?document_id=50701",
|
|
50715
|
-
"official": true
|
|
51516
|
+
"official": true,
|
|
51517
|
+
"type": "Manual"
|
|
50716
51518
|
},
|
|
50717
51519
|
{
|
|
50718
51520
|
"title": "iCEstick Evaluation Kit product page (Lattice)",
|
|
50719
51521
|
"url": "https://www.latticesemi.com/products/developmentboardsandkits/icestick",
|
|
50720
|
-
"official": true
|
|
51522
|
+
"official": true,
|
|
51523
|
+
"type": "Docs"
|
|
50721
51524
|
},
|
|
50722
51525
|
{
|
|
50723
51526
|
"title": "iCEstick.pcf constraint file (FPGA pin cross-reference)",
|
|
50724
51527
|
"url": "https://github.com/mcmayer/iCE40/blob/master/iCEstick.pcf",
|
|
50725
|
-
"official":
|
|
51528
|
+
"official": false,
|
|
51529
|
+
"type": "Pinout"
|
|
50726
51530
|
}
|
|
50727
51531
|
],
|
|
50728
51532
|
"headers": [
|
|
@@ -51099,17 +51903,20 @@ export const generatedBoards = [
|
|
|
51099
51903
|
{
|
|
51100
51904
|
"title": "MachXO3 Starter Kit User Guide EB95 (Lattice)",
|
|
51101
51905
|
"url": "https://www.latticesemi.com/-/media/LatticeSemi/Documents/UserManuals/MQ/MachXO3StarterKitUsersGuideEB95.ashx?document_id=50873",
|
|
51102
|
-
"official": true
|
|
51906
|
+
"official": true,
|
|
51907
|
+
"type": "Manual"
|
|
51103
51908
|
},
|
|
51104
51909
|
{
|
|
51105
|
-
"title": "MachXO3L Starter Kit User Guide (DigiKey mirror)
|
|
51910
|
+
"title": "MachXO3L Starter Kit User Guide (DigiKey mirror)",
|
|
51106
51911
|
"url": "https://mm.digikey.com/Volume0/opasdata/d220001/medias/docus/1268/MachXO3L_StarterKit_UG.pdf",
|
|
51107
|
-
"official": false
|
|
51912
|
+
"official": false,
|
|
51913
|
+
"type": "Datasheet"
|
|
51108
51914
|
},
|
|
51109
51915
|
{
|
|
51110
51916
|
"title": "MachXO3 family product page (Lattice)",
|
|
51111
51917
|
"url": "https://www.latticesemi.com/products/fpgaandcpld/machxo3",
|
|
51112
|
-
"official": true
|
|
51918
|
+
"official": true,
|
|
51919
|
+
"type": "Docs"
|
|
51113
51920
|
}
|
|
51114
51921
|
],
|
|
51115
51922
|
"headers": [
|
|
@@ -52648,17 +53455,20 @@ export const generatedBoards = [
|
|
|
52648
53455
|
{
|
|
52649
53456
|
"title": "CrossLink-NX Evaluation Board User Guide FPGA-EB-02028 (Lattice)",
|
|
52650
53457
|
"url": "https://www.latticesemi.com/-/media/LatticeSemi/Documents/UserManuals/1D2/FPGA-EB-02028-1-4-CrossLink-NX-Evaluation-Board.ashx?document_id=52807",
|
|
52651
|
-
"official": true
|
|
53458
|
+
"official": true,
|
|
53459
|
+
"type": "Manual"
|
|
52652
53460
|
},
|
|
52653
53461
|
{
|
|
52654
|
-
"title": "CrossLink-NX Evaluation Board (LIFCL-40-EVN) user guide (ManualsLib)
|
|
53462
|
+
"title": "CrossLink-NX Evaluation Board (LIFCL-40-EVN) user guide (ManualsLib)",
|
|
52655
53463
|
"url": "https://www.manualslib.com/manual/3014515/Lattice-Semiconductor-Lifcl-40-Evn.html",
|
|
52656
|
-
"official": false
|
|
53464
|
+
"official": false,
|
|
53465
|
+
"type": "Docs"
|
|
52657
53466
|
},
|
|
52658
53467
|
{
|
|
52659
53468
|
"title": "CrossLink-NX product family (Lattice)",
|
|
52660
53469
|
"url": "https://www.latticesemi.com/products/fpgaandcpld/crosslink-nx",
|
|
52661
|
-
"official": true
|
|
53470
|
+
"official": true,
|
|
53471
|
+
"type": "Docs"
|
|
52662
53472
|
}
|
|
52663
53473
|
],
|
|
52664
53474
|
"headers": [
|
|
@@ -53051,12 +53861,14 @@ export const generatedBoards = [
|
|
|
53051
53861
|
{
|
|
53052
53862
|
"title": "UM1472 Discovery kit user manual (ST)",
|
|
53053
53863
|
"url": "https://www.st.com/resource/en/user_manual/um1472-discovery-kit-with-stm32f407vg-mcu-stmicroelectronics.pdf",
|
|
53054
|
-
"official": true
|
|
53864
|
+
"official": true,
|
|
53865
|
+
"type": "Manual"
|
|
53055
53866
|
},
|
|
53056
53867
|
{
|
|
53057
53868
|
"title": "STM32F407VG datasheet",
|
|
53058
53869
|
"url": "https://www.st.com/resource/en/datasheet/stm32f407vg.pdf",
|
|
53059
|
-
"official": true
|
|
53870
|
+
"official": true,
|
|
53871
|
+
"type": "Datasheet"
|
|
53060
53872
|
}
|
|
53061
53873
|
],
|
|
53062
53874
|
"headers": []
|
|
@@ -53093,12 +53905,14 @@ export const generatedBoards = [
|
|
|
53093
53905
|
{
|
|
53094
53906
|
"title": "EK-TM4C123GXL user's guide (SPMU296)",
|
|
53095
53907
|
"url": "https://www.ti.com/lit/pdf/spmu296",
|
|
53096
|
-
"official": true
|
|
53908
|
+
"official": true,
|
|
53909
|
+
"type": "Manual"
|
|
53097
53910
|
},
|
|
53098
53911
|
{
|
|
53099
53912
|
"title": "TM4C123GH6PM product page and datasheet",
|
|
53100
53913
|
"url": "https://www.ti.com/product/TM4C123GH6PM",
|
|
53101
|
-
"official": true
|
|
53914
|
+
"official": true,
|
|
53915
|
+
"type": "Datasheet"
|
|
53102
53916
|
}
|
|
53103
53917
|
],
|
|
53104
53918
|
"headers": []
|
|
@@ -53135,17 +53949,20 @@ export const generatedBoards = [
|
|
|
53135
53949
|
{
|
|
53136
53950
|
"title": "Arty A7 reference manual (Digilent)",
|
|
53137
53951
|
"url": "https://digilent.com/reference/programmable-logic/arty-a7/reference-manual",
|
|
53138
|
-
"official": true
|
|
53952
|
+
"official": true,
|
|
53953
|
+
"type": "Manual"
|
|
53139
53954
|
},
|
|
53140
53955
|
{
|
|
53141
|
-
"title": "Arty A7 reference manual PDF (DigiKey mirror)
|
|
53956
|
+
"title": "Arty A7 reference manual PDF (DigiKey mirror)",
|
|
53142
53957
|
"url": "https://mm.digikey.com/Volume0/opasdata/d220001/medias/docus/781/Arty_A7_RM_Web.pdf",
|
|
53143
|
-
"official": false
|
|
53958
|
+
"official": false,
|
|
53959
|
+
"type": "Manual"
|
|
53144
53960
|
},
|
|
53145
53961
|
{
|
|
53146
53962
|
"title": "Arty A7-100 master XDC pin constraints",
|
|
53147
53963
|
"url": "https://github.com/Digilent/digilent-xdc/blob/master/Arty-A7-100-Master.xdc",
|
|
53148
|
-
"official": true
|
|
53964
|
+
"official": true,
|
|
53965
|
+
"type": "Pinout"
|
|
53149
53966
|
}
|
|
53150
53967
|
],
|
|
53151
53968
|
"headers": []
|
|
@@ -53182,12 +53999,14 @@ export const generatedBoards = [
|
|
|
53182
53999
|
{
|
|
53183
54000
|
"title": "Basys 3 reference manual (Digilent)",
|
|
53184
54001
|
"url": "https://digilent.com/reference/programmable-logic/basys-3/reference-manual",
|
|
53185
|
-
"official": true
|
|
54002
|
+
"official": true,
|
|
54003
|
+
"type": "Manual"
|
|
53186
54004
|
},
|
|
53187
54005
|
{
|
|
53188
54006
|
"title": "Basys 3 reference manual PDF (AMD university program mirror)",
|
|
53189
54007
|
"url": "https://www.amd.com/content/dam/amd/en/documents/university/aup-boards/XUPBasys3/documentation/Basys3_rm_8_22_2014.pdf",
|
|
53190
|
-
"official":
|
|
54008
|
+
"official": false,
|
|
54009
|
+
"type": "Manual"
|
|
53191
54010
|
}
|
|
53192
54011
|
],
|
|
53193
54012
|
"headers": []
|
|
@@ -53236,12 +54055,14 @@ export const generatedBoards = [
|
|
|
53236
54055
|
{
|
|
53237
54056
|
"title": "Coral Dev Board datasheet (coral.ai)",
|
|
53238
54057
|
"url": "https://coral.ai/docs/dev-board/datasheet/",
|
|
53239
|
-
"official": true
|
|
54058
|
+
"official": true,
|
|
54059
|
+
"type": "Datasheet"
|
|
53240
54060
|
},
|
|
53241
54061
|
{
|
|
53242
54062
|
"title": "Coral Dev Board datasheet v1.2 PDF (Adafruit mirror)",
|
|
53243
54063
|
"url": "https://cdn-shop.adafruit.com/product-files/4385/4385_Coral-Dev-Board-datasheet.pdf",
|
|
53244
|
-
"official":
|
|
54064
|
+
"official": false,
|
|
54065
|
+
"type": "Datasheet"
|
|
53245
54066
|
}
|
|
53246
54067
|
],
|
|
53247
54068
|
"headers": [
|
|
@@ -53691,17 +54512,20 @@ export const generatedBoards = [
|
|
|
53691
54512
|
{
|
|
53692
54513
|
"title": "Portenta H7 official pinout PDF",
|
|
53693
54514
|
"url": "https://content.arduino.cc/assets/Pinout-PortentaH7_latest.pdf",
|
|
53694
|
-
"official": true
|
|
54515
|
+
"official": true,
|
|
54516
|
+
"type": "Pinout"
|
|
53695
54517
|
},
|
|
53696
54518
|
{
|
|
53697
54519
|
"title": "Portenta H7 documentation",
|
|
53698
54520
|
"url": "https://docs.arduino.cc/hardware/portenta-h7",
|
|
53699
|
-
"official": true
|
|
54521
|
+
"official": true,
|
|
54522
|
+
"type": "Docs"
|
|
53700
54523
|
},
|
|
53701
54524
|
{
|
|
53702
54525
|
"title": "Portenta H7 collective datasheet",
|
|
53703
54526
|
"url": "https://docs.arduino.cc/resources/datasheets/ABX00042-ABX00045-ABX00046-datasheet.pdf",
|
|
53704
|
-
"official": true
|
|
54527
|
+
"official": true,
|
|
54528
|
+
"type": "Datasheet"
|
|
53705
54529
|
}
|
|
53706
54530
|
],
|
|
53707
54531
|
"headers": []
|
|
@@ -53734,12 +54558,14 @@ export const generatedBoards = [
|
|
|
53734
54558
|
{
|
|
53735
54559
|
"title": "nRF9160 DK product page (Nordic)",
|
|
53736
54560
|
"url": "https://www.nordicsemi.com/Products/Development-hardware/nRF9160-DK",
|
|
53737
|
-
"official": true
|
|
54561
|
+
"official": true,
|
|
54562
|
+
"type": "Docs"
|
|
53738
54563
|
},
|
|
53739
54564
|
{
|
|
53740
54565
|
"title": "nRF9160 DK board documentation (Zephyr Project)",
|
|
53741
54566
|
"url": "https://docs.zephyrproject.org/latest/boards/nordic/nrf9160dk/doc/index.html",
|
|
53742
|
-
"official":
|
|
54567
|
+
"official": false,
|
|
54568
|
+
"type": "Docs"
|
|
53743
54569
|
}
|
|
53744
54570
|
],
|
|
53745
54571
|
"headers": []
|