Giter VIP home page Giter VIP logo

ili9341-arduino's People

Contributors

gmtii avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ili9341-arduino's Issues

White screen only

Hi.
I wired following the guide, and run the example but only got white screen.
When I remove the LED wire, it blacked!!!
Anybody, pls help me :(

Only white

BUG: TFT_RST_OFF defines incorrect register with ArduinoMega2560

BUG: TFT_RST_OFF defines incorrect register with ArduinoMega2560

how it is now:

define TFT_RST_OFF {DDRD |= 0x10;PORTD |= 0x10;}

define TFT_RST_ON {DDRD |= 0x10;PORTD &=~ 0x10;}

how it should be for ArduinoMega2560:

define TFT_RST_OFF {DDRG |= 0x10;PORTG |= 0x10;}

define TFT_RST_ON {DDRG |= 0x10;PORTG &=~ 0x10;}

So, Port_G is what to be used with Mega2560 if we want same arduino_digital_pin_4.

Symbols merge.

void loop(void)
{
....
Tft.drawNumber(counter++, 0, 0, 2, WHITE);
....
}
when drawing characters merge into a white rectangle.
the characters are not merged, when output in one position, you must add the function
void TFT :: drawChar(.....)
if((temp>>f)&0x01)
{
fillRectangle(poX+i_size, poY+f_size, size, size, fgcolor);
}
else fillRectangle(poX+i_size, poY+f_size, size, size, BLACK); //<------ BLACK is a Background color

Own characters

How can I add character from local alphabet?
I think I can use numbers 128-255, and add lines to font.c, but it not work.
Can you help me?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.