├── .gitignore ├── PINS_TEMPLATE.h ├── README.md ├── examples ├── Blink │ └── Blink.ino ├── GFX_Hello_World │ └── GFX_Hello_World.ino └── LVGL_Arduino_v9 │ ├── LVGL_Arduino_v9.ino │ ├── lv_conf.h │ └── touch.h ├── library.properties └── src ├── PINS_AD35-S3.h ├── PINS_ESP32-1732S019.h ├── PINS_ESP32-4827A043.h ├── PINS_ESP32-8048S070.h ├── PINS_ESP32-C6-LCD-1_47.h ├── PINS_ESP32-C6-LCD-1_47_I2S.h ├── PINS_ESP32-C6-LCD-1_9.h ├── PINS_ESP32-S3-CAM.h ├── PINS_ESP32-S3-LCD-1_3.h ├── PINS_ESP32-S3-LCD-1_3_prism.h ├── PINS_ESP32-S3-LCD-1_47.h ├── PINS_ESP32-S3-MATRIX.h ├── PINS_ESP32-S3-Touch-AMOLED-1_64.h ├── PINS_ESP32-S3-Touch-AMOLED-1_8.h ├── PINS_ESP32-S3-Touch-AMOLED-2_41.h ├── PINS_ESP32-S3-Touch-LCD-2_8.h ├── PINS_IBUBLY.h ├── PINS_JC1060P470.h ├── PINS_JC3248W535.h ├── PINS_JC3636W518.h ├── PINS_JC4827W543.h ├── PINS_JC8012P4A1.h ├── PINS_JSZWY_CYIS.h ├── PINS_JSZWY_CYIS_V2.h ├── PINS_RP2350-LCD-1_47.h ├── PINS_T-DECK.h ├── PINS_T-DISPLAY_S3.h ├── PINS_T-DISPLAY_S3_AMOLED.h ├── PINS_T-DISPLAY_S3_AMOLED_1_64.h ├── PINS_T-DISPLAY_S3_PRO.h ├── PINS_T-JOURNAL.h ├── PINS_T-JOURNAL_ROBOT.h ├── PINS_T-QT.h ├── PINS_T-TRACK.h ├── PINS_T4_S3.h ├── PINS_WT32-SC01_PLUS.h ├── PINS_XIAO_ESP32C6.h └── PINS_XIAO_ESP32C6_ZIGBOT.h /.gitignore: -------------------------------------------------------------------------------- 1 | .* -------------------------------------------------------------------------------- /PINS_TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/PINS_TEMPLATE.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/README.md -------------------------------------------------------------------------------- /examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /examples/GFX_Hello_World/GFX_Hello_World.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/examples/GFX_Hello_World/GFX_Hello_World.ino -------------------------------------------------------------------------------- /examples/LVGL_Arduino_v9/LVGL_Arduino_v9.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/examples/LVGL_Arduino_v9/LVGL_Arduino_v9.ino -------------------------------------------------------------------------------- /examples/LVGL_Arduino_v9/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/examples/LVGL_Arduino_v9/lv_conf.h -------------------------------------------------------------------------------- /examples/LVGL_Arduino_v9/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/examples/LVGL_Arduino_v9/touch.h -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/library.properties -------------------------------------------------------------------------------- /src/PINS_AD35-S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_AD35-S3.h -------------------------------------------------------------------------------- /src/PINS_ESP32-1732S019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-1732S019.h -------------------------------------------------------------------------------- /src/PINS_ESP32-4827A043.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-4827A043.h -------------------------------------------------------------------------------- /src/PINS_ESP32-8048S070.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-8048S070.h -------------------------------------------------------------------------------- /src/PINS_ESP32-C6-LCD-1_47.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-C6-LCD-1_47.h -------------------------------------------------------------------------------- /src/PINS_ESP32-C6-LCD-1_47_I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-C6-LCD-1_47_I2S.h -------------------------------------------------------------------------------- /src/PINS_ESP32-C6-LCD-1_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-C6-LCD-1_9.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-CAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-CAM.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-LCD-1_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-LCD-1_3.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-LCD-1_3_prism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-LCD-1_3_prism.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-LCD-1_47.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-LCD-1_47.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-MATRIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-MATRIX.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-Touch-AMOLED-1_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-Touch-AMOLED-1_64.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-Touch-AMOLED-1_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-Touch-AMOLED-1_8.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-Touch-AMOLED-2_41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-Touch-AMOLED-2_41.h -------------------------------------------------------------------------------- /src/PINS_ESP32-S3-Touch-LCD-2_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_ESP32-S3-Touch-LCD-2_8.h -------------------------------------------------------------------------------- /src/PINS_IBUBLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_IBUBLY.h -------------------------------------------------------------------------------- /src/PINS_JC1060P470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JC1060P470.h -------------------------------------------------------------------------------- /src/PINS_JC3248W535.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JC3248W535.h -------------------------------------------------------------------------------- /src/PINS_JC3636W518.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JC3636W518.h -------------------------------------------------------------------------------- /src/PINS_JC4827W543.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JC4827W543.h -------------------------------------------------------------------------------- /src/PINS_JC8012P4A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JC8012P4A1.h -------------------------------------------------------------------------------- /src/PINS_JSZWY_CYIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JSZWY_CYIS.h -------------------------------------------------------------------------------- /src/PINS_JSZWY_CYIS_V2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_JSZWY_CYIS_V2.h -------------------------------------------------------------------------------- /src/PINS_RP2350-LCD-1_47.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_RP2350-LCD-1_47.h -------------------------------------------------------------------------------- /src/PINS_T-DECK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-DECK.h -------------------------------------------------------------------------------- /src/PINS_T-DISPLAY_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-DISPLAY_S3.h -------------------------------------------------------------------------------- /src/PINS_T-DISPLAY_S3_AMOLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-DISPLAY_S3_AMOLED.h -------------------------------------------------------------------------------- /src/PINS_T-DISPLAY_S3_AMOLED_1_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-DISPLAY_S3_AMOLED_1_64.h -------------------------------------------------------------------------------- /src/PINS_T-DISPLAY_S3_PRO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-DISPLAY_S3_PRO.h -------------------------------------------------------------------------------- /src/PINS_T-JOURNAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-JOURNAL.h -------------------------------------------------------------------------------- /src/PINS_T-JOURNAL_ROBOT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-JOURNAL_ROBOT.h -------------------------------------------------------------------------------- /src/PINS_T-QT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-QT.h -------------------------------------------------------------------------------- /src/PINS_T-TRACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T-TRACK.h -------------------------------------------------------------------------------- /src/PINS_T4_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_T4_S3.h -------------------------------------------------------------------------------- /src/PINS_WT32-SC01_PLUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_WT32-SC01_PLUS.h -------------------------------------------------------------------------------- /src/PINS_XIAO_ESP32C6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_XIAO_ESP32C6.h -------------------------------------------------------------------------------- /src/PINS_XIAO_ESP32C6_ZIGBOT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/Dev_Device_Pins/HEAD/src/PINS_XIAO_ESP32C6_ZIGBOT.h --------------------------------------------------------------------------------