├── .gitignore ├── .vscode └── settings.json ├── GenPinoutSVG.py ├── LICENSE ├── README.md ├── Resources ├── Bluetooth.svg ├── BottomView-FLAT-Transparent-R110.png ├── SDXC.svg ├── TopView-FLAT-Transparent-R110.png ├── USB_icon.svg ├── WiFi_Logo.svg ├── antenna-3.svg ├── warning.svg └── warning.svg.html ├── data └── ESP32-MAXIO.csv ├── gpl-3.0.md └── svg └── ESP32-MAXIO.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /GenPinoutSVG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/GenPinoutSVG.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/Bluetooth.svg -------------------------------------------------------------------------------- /Resources/BottomView-FLAT-Transparent-R110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/BottomView-FLAT-Transparent-R110.png -------------------------------------------------------------------------------- /Resources/SDXC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/SDXC.svg -------------------------------------------------------------------------------- /Resources/TopView-FLAT-Transparent-R110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/TopView-FLAT-Transparent-R110.png -------------------------------------------------------------------------------- /Resources/USB_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/USB_icon.svg -------------------------------------------------------------------------------- /Resources/WiFi_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/WiFi_Logo.svg -------------------------------------------------------------------------------- /Resources/antenna-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/antenna-3.svg -------------------------------------------------------------------------------- /Resources/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/warning.svg -------------------------------------------------------------------------------- /Resources/warning.svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/Resources/warning.svg.html -------------------------------------------------------------------------------- /data/ESP32-MAXIO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/data/ESP32-MAXIO.csv -------------------------------------------------------------------------------- /gpl-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/gpl-3.0.md -------------------------------------------------------------------------------- /svg/ESP32-MAXIO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenj/GenPinoutSVG/HEAD/svg/ESP32-MAXIO.svg --------------------------------------------------------------------------------