GithubHelp home page GithubHelp logo

glcd-st7920-lib's People

Contributors

liyanboy74 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

glcd-st7920-lib's Issues

FONT_PRINT

void GLCD_Font_Print(uint8_t x,uint8_t y,char * String);

GLCD_Font_Print(3, 4, "HELLO"); this is not printing anything on display ?
so i have added the inside the `

//Print Fonted String x=0-15 y=0-7
void GLCD_Font_Print(uint8_t x,uint8_t y,char * String)
{
int i;
while(String)
{
for(i=0;i<8;i++)
GLCD_Buf[i+(x
8)+(y*128)]=Font[(*String)*8+i];
String++;
x++;
if(x>15)
{
x=0;
y++;
}
ST7920_SendData(GLCD_Buf);
}
}` now printing xxxx on (0,0 - x,y) location . even if try to change the x,y location nothing is happening should i pass some other value to display before sending these value . request you to help me for font adding and changes in this code

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.