Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TFT_eSPI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
TFT_eSPI
Commits
92d51413
Commit
92d51413
authored
Feb 21, 2022
by
Bodmer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #1653
parent
97a9455e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
TFT_eSPI.cpp
TFT_eSPI.cpp
+2
-1
TFT_eSPI.h
TFT_eSPI.h
+1
-1
library.json
library.json
+1
-1
library.properties
library.properties
+1
-1
No files found.
TFT_eSPI.cpp
View file @
92d51413
...
@@ -3453,13 +3453,14 @@ void TFT_eSPI::drawPixel(int32_t x, int32_t y, uint32_t color)
...
@@ -3453,13 +3453,14 @@ void TFT_eSPI::drawPixel(int32_t x, int32_t y, uint32_t color)
#else
#else
#if defined (SSD1
351_DRIVER) || defined (SSD1
963_DRIVER)
#if defined (SSD1963_DRIVER)
if
((
rotation
&
0x1
)
==
0
)
{
swap_coord
(
x
,
y
);
}
if
((
rotation
&
0x1
)
==
0
)
{
swap_coord
(
x
,
y
);
}
#endif
#endif
SPI_BUSY_CHECK
;
SPI_BUSY_CHECK
;
#if defined (SSD1351_DRIVER)
#if defined (SSD1351_DRIVER)
if
(
rotation
&
0x1
)
{
swap_coord
(
x
,
y
);
}
// No need to send x if it has not changed (speeds things up)
// No need to send x if it has not changed (speeds things up)
if
(
addr_col
!=
x
)
{
if
(
addr_col
!=
x
)
{
DC_C
;
tft_Write_8
(
TFT_CASET
);
DC_C
;
tft_Write_8
(
TFT_CASET
);
...
...
TFT_eSPI.h
View file @
92d51413
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
#ifndef _TFT_eSPIH_
#ifndef _TFT_eSPIH_
#define _TFT_eSPIH_
#define _TFT_eSPIH_
#define TFT_ESPI_VERSION "2.4.
39
"
#define TFT_ESPI_VERSION "2.4.
40
"
// Bit level feature flags
// Bit level feature flags
// Bit 0 set: viewport capability
// Bit 0 set: viewport capability
...
...
library.json
View file @
92d51413
{
{
"name"
:
"TFT_eSPI"
,
"name"
:
"TFT_eSPI"
,
"version"
:
"2.4.
39
"
,
"version"
:
"2.4.
40
"
,
"keywords"
:
"Arduino, tft, ePaper, display, Pico, RP2040, STM32, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9481, ILI9486, ILI9488, ST7789, RM68140, SSD1351, SSD1963, ILI9225, HX8357D"
,
"keywords"
:
"Arduino, tft, ePaper, display, Pico, RP2040, STM32, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9481, ILI9486, ILI9488, ST7789, RM68140, SSD1351, SSD1963, ILI9225, HX8357D"
,
"description"
:
"A TFT and ePaper SPI graphics library with optimisation for Raspberry Pi Pico, ESP8266, ESP32 and STM32"
,
"description"
:
"A TFT and ePaper SPI graphics library with optimisation for Raspberry Pi Pico, ESP8266, ESP32 and STM32"
,
"repository"
:
"repository"
:
...
...
library.properties
View file @
92d51413
name
=
TFT_eSPI
name
=
TFT_eSPI
version
=
2.4.
39
version
=
2.4.
40
author
=
Bodmer
author
=
Bodmer
maintainer
=
Bodmer
maintainer
=
Bodmer
sentence
=
TFT graphics library for Arduino processors with performance optimisation for RP2040, STM32, ESP8266 and ESP32
sentence
=
TFT graphics library for Arduino processors with performance optimisation for RP2040, STM32, ESP8266 and ESP32
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment