Skip to content

Commit

Permalink
Fixes for ESP32_1732S019C
Browse files Browse the repository at this point in the history
  • Loading branch information
rzeldent committed Dec 5, 2023
1 parent b477225 commit 8fd3f96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ They can be bought in the [Sunton Store](https://www.aliexpress.com/store/110019
| Type | CPU | Display | Size | Controller | Rotate support | Color16 swap | Touch | Audio | Flash | RGB LED | CDS | Link|
|--- |--- |--- |-- |--- |--- |--- |--- |--- |--- |--- |--- |--- |
| ESP32_1732S019N | ESP32-S3 | 170x320 | 1.9" | [ST7796](assets/datasheets/ST7796.pdf) | yes | yes | n/a | no | no | no | no | [Ali Express](https://www.aliexpress.com/item/1005005059421229.html) |
| ESP32_1732S019N | ESP32-S3 | 170x320 | 1.9" | [ST7796](assets/datasheets/ST7796.pdf) | yes | yes | [GT911](assets/datasheets//GT911.pdf) | no | no | no | no | [Ali Express](https://www.aliexpress.com/item/1005005059421229.html) |
| ESP32_1732S019C | ESP32-S3 | 170x320 | 1.9" | [ST7796](assets/datasheets/ST7796.pdf) | yes | yes | [GT911](assets/datasheets//GT911.pdf) | no | no | no | no | [Ali Express](https://www.aliexpress.com/item/1005005059421229.html) |
| ESP32-2424S012N | ESP32-C3 | 240x240 | 1.2" | [GC9A01A](assets/datasheets/GC9A01A.pdf) | yes | yes | n/a | no | no | no | no | [Ali Express](https://www.aliexpress.com/item/1005005453515690.html) |
| ESP32-2424S012C | ESP32-C3 | 240x240 | 1.2" | [GC9A01A](assets/datasheets/GC9A01A.pdf) | yes | yes | [CST816S](assets/datasheets/CST816S.pdf) | no | no | no | no | [Ali Express](https://www.aliexpress.com/item/1005005453515690.html) |
| ESP32-2432S024N | ESP32 | 240x320 | 2.4" | [ILI9341](assets/datasheets/ILI9341.pdf) | yes | yes | n/a | yes | [W25Q32JV](assets/datasheets/25Q32JVSSIQ.pdf) | yes | yes | [Ali Express](https://www.aliexpress.com/item/1005005865107357.html) |
Expand Down Expand Up @@ -81,6 +81,7 @@ Be aware that the platform board must also match but this is a requirement for a

- esp32-s3-devkitc-1
- ESP32_1732S019N
- ESP32_1732S019C
- ESP32_8048S043N
- ESP32_8048S043R
- ESP32_8048S043C
Expand Down Expand Up @@ -144,6 +145,7 @@ build_flags =
${env.build_flags}
# Smartdisplay selection
#-D ESP32_1732S019N
#-D ESP32_1732S019C
#-D ESP32_4827S043R
#-D ESP32_4827S043C
#-D ESP32_8048S043N
Expand Down Expand Up @@ -269,9 +271,9 @@ This application uses this library and the SquareLine Studio GUI generator.
## Board details
### ESP32_1732S019 NC
### ESP32_1732S019 N/C
- USB-C
- USB-C
### ESP32-2424S012 N/C
Expand Down
2 changes: 1 addition & 1 deletion include/esp32_smartdisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#define GT911_I2C_HOST 0
#define GT911_I2C_CONFIG {.mode=I2C_MODE_MASTER,.sda_io_num=4,.scl_io_num=5,.sda_pullup_en=GPIO_PULLUP_ENABLE,.scl_pullup_en=GPIO_PULLUP_ENABLE,.master={.clk_speed=400000}}
#define GT911_IO_I2C_CONFIG {.dev_addr=ESP_LCD_TOUCH_IO_I2C_GT911_ADDRESS,.control_phase_bytes=1,.lcd_cmd_bits=16,.flags={.disable_control_phase=1}}
#define GT911_TOUCH_CONFIG {.x_max=TFT_WIDTH,.y_max=TFT_HEIGHT,.rst_gpio_num=GPIO_NUM_25,.int_gpio_num=GPIO_NUM_NC}
#define GT911_TOUCH_CONFIG {.x_max=TFT_WIDTH,.y_max=TFT_HEIGHT,.rst_gpio_num=GPIO_NUM_26,.int_gpio_num=GPIO_NUM_25}
#define TOUCH_ROT_NONE_SWAP_X false
#define TOUCH_ROT_NONE_SWAP_Y false
#endif
Expand Down

0 comments on commit 8fd3f96

Please sign in to comment.