mirror of
https://github.com/adafruit/TFTLCD-Library.git
synced 2026-09-11 09:02:53 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54ad6b159d | ||
|
|
d31c7e1dc0 | ||
|
|
6690f613c9 | ||
|
|
747a389fe5 | ||
|
|
3ba0b31ddf | ||
|
|
2f917ad72b | ||
|
|
aad1e5e77a | ||
|
|
ebc64f235b |
+4
-5
@@ -112,7 +112,6 @@ void Adafruit_TFTLCD::init(void) {
|
|||||||
|
|
||||||
rotation = 0;
|
rotation = 0;
|
||||||
cursor_y = cursor_x = 0;
|
cursor_y = cursor_x = 0;
|
||||||
int textsize = 1;
|
|
||||||
textcolor = 0xFFFF;
|
textcolor = 0xFFFF;
|
||||||
_width = TFTWIDTH;
|
_width = TFTWIDTH;
|
||||||
_height = TFTHEIGHT;
|
_height = TFTHEIGHT;
|
||||||
@@ -342,7 +341,6 @@ void Adafruit_TFTLCD::begin(uint16_t id) {
|
|||||||
|
|
||||||
} else if (id == 0x9341) {
|
} else if (id == 0x9341) {
|
||||||
|
|
||||||
uint16_t a, d;
|
|
||||||
driver = ID_9341;
|
driver = ID_9341;
|
||||||
CS_ACTIVE;
|
CS_ACTIVE;
|
||||||
writeRegister8(ILI9341_SOFTRESET, 0);
|
writeRegister8(ILI9341_SOFTRESET, 0);
|
||||||
@@ -885,7 +883,7 @@ void Adafruit_TFTLCD::setRotation(uint8_t x) {
|
|||||||
|
|
||||||
if (driver == ID_9341) {
|
if (driver == ID_9341) {
|
||||||
// MEME, HX8357D uses same registers as 9341 but different values
|
// MEME, HX8357D uses same registers as 9341 but different values
|
||||||
uint16_t t;
|
uint16_t t = 0;
|
||||||
|
|
||||||
switch (rotation) {
|
switch (rotation) {
|
||||||
case 2:
|
case 2:
|
||||||
@@ -909,7 +907,7 @@ void Adafruit_TFTLCD::setRotation(uint8_t x) {
|
|||||||
|
|
||||||
if (driver == ID_HX8357D) {
|
if (driver == ID_HX8357D) {
|
||||||
// MEME, HX8357D uses same registers as 9341 but different values
|
// MEME, HX8357D uses same registers as 9341 but different values
|
||||||
uint16_t t;
|
uint16_t t = 0;
|
||||||
|
|
||||||
switch (rotation) {
|
switch (rotation) {
|
||||||
case 2:
|
case 2:
|
||||||
@@ -1012,7 +1010,8 @@ uint16_t Adafruit_TFTLCD::readID(void) {
|
|||||||
|
|
||||||
// retry a bunch!
|
// retry a bunch!
|
||||||
for (int i = 0; i < 5; i++) {
|
for (int i = 0; i < 5; i++) {
|
||||||
id = readReg(0xD3);
|
id = (uint16_t)readReg(0xD3);
|
||||||
|
delayMicroseconds(50);
|
||||||
if (id == 0x9341) {
|
if (id == 0x9341) {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
# Adafruit library for 8-bit TFT LCDs such as ILI9325, ILI9328, etc
|
# Adafruit library for 8-bit TFT LCDs such as ILI9325, ILI9328, etc
|
||||||
|
|
||||||
This is a library for our Adafruit 16-channel PWM & Servo driver, shield or FeatherWing
|
This is a library for our Adafruit 8-bit TFT LCD breakouts
|
||||||
|
|
||||||
<a href="https://www.adafruit.com/products/335"><img src="assets/image.jpg" height="300"/></a>
|
<a href="https://www.adafruit.com/products/335"><img src="assets/image.jpg" height="300"/></a>
|
||||||
|
|
||||||
Pick one up today in the adafruit shop!
|
Pick one up today in the adafruit shop!
|
||||||
* https://www.adafruit.com/product/335
|
* [https://www.adafruit.com/product/335](https://www.adafruit.com/product/1770)
|
||||||
* https://www.adafruit.com/product/376
|
* https://www.adafruit.com/product/376
|
||||||
|
* https://www.adafruit.com/product/335
|
||||||
|
|
||||||
These displays use 8-bit parallel to communicate, 12 or 13 pins are required to interface (RST is optional).
|
These displays use 8-bit parallel to communicate, 12 or 13 pins are required to interface (RST is optional). This library supports 8-bit and 16-bit parallel TFT displays on AVR (ATmega328/32u4/1280/2560) and the Arduino Due (SAM3X8E) only. It does not support ESP32, ESP8266, SAMD or RP2040 boards. For parallel displays on ESP32-S3, see the LCD_CAM peripheral and a library that drives it.
|
||||||
|
|
||||||
Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!
|
Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
name=Adafruit TFTLCD Library
|
name=Adafruit TFTLCD Library
|
||||||
version=1.0.2
|
version=1.0.4
|
||||||
author=Adafruit
|
author=Adafruit
|
||||||
maintainer=Adafruit <info@adafruit.com>
|
maintainer=Adafruit <info@adafruit.com>
|
||||||
sentence=Adafruit 2.8" TFT display Library
|
sentence=Adafruit 2.8" TFT display Library
|
||||||
|
|||||||
+2
-2
@@ -359,8 +359,8 @@
|
|||||||
|
|
||||||
#define read8inline(result) \
|
#define read8inline(result) \
|
||||||
{ \
|
{ \
|
||||||
\
|
\
|
||||||
RD_ACTIVE; \
|
RD_ACTIVE; \
|
||||||
delayMicroseconds(1); \
|
delayMicroseconds(1); \
|
||||||
result = (((PIOC->PIO_PDSR & (1 << 23)) >> (23 - 7)) | \
|
result = (((PIOC->PIO_PDSR & (1 << 23)) >> (23 - 7)) | \
|
||||||
((PIOC->PIO_PDSR & (1 << 24)) >> (24 - 6)) | \
|
((PIOC->PIO_PDSR & (1 << 24)) >> (24 - 6)) | \
|
||||||
|
|||||||
Reference in New Issue
Block a user