Giter VIP home page Giter VIP logo

ssd1803a_i2c's Introduction

ssd1803a_i2c's People

Contributors

dermalog avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

vjtagaltera

ssd1803a_i2c's Issues

Custom Character Write Is Incorrect

Hi,

Confirmed it's incorrect, forgot to set back to DDRAM after write.

Same code as an example but converted for nrf52.

  uint8_t *c = &characters[0];
  uint8_t x = 0;
  while (c < (&characters[0] + sizeof(characters))) {
    i = 0;
    dmaBuffer.transfer[i++] = INSTRUCTION_COMMAND;
    dmaBuffer.transfer[i++] = COMMAND_ADDRESS_CGRAM | x << 3;
    txWait(i);
    for(uint8_t j = 0; j < 8; j++) {
      i = 0;
      dmaBuffer.transfer[i++] = INSTRUCTION_DATA;
      dmaBuffer.transfer[i++] = *c;
      c++;
      txWait(i);
    }
    i = 0;
    dmaBuffer.transfer[i++] = INSTRUCTION_COMMAND;
    dmaBuffer.transfer[i++] = COMMAND_ADDRESS_DDRAM;
    txWait(i);
    x++;
  }

Wishes

Hi.
Have you thought about adding so that it is possible and choose if you want to show different number of lines with different height of text (Double Height)?
Ex.
1 row of standard height
1 row of standard height
1 row of double height

as showed in "https://www.lcd-module.de/fileadmin/eng/pdf/zubehoer/ssd1803a_2_0.pdf" page 44

This library is working very well.
Thanks for all your work.

Different display, same controller issue

Hello Firexx,
I am trying to use the library you wrote with 16x4 character displays (EA DOGS164N-A, https://www.mouser.fr/datasheet/2/127/dogs164e-1532335.pdf ), since they use the same SSD1803A controller as your MIDAS display.
For now, I can't make it work. My poor skills in writing or editing libraries don't allow me to find the cause of the problem. I can only set the contrast, but text won't print on the display.
Could you help me please ?
Thank you a lot for your work and time.
Julien.

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.