Coder Social home page Coder Social logo

matrixorbital / eve2-library Goto Github PK

View Code? Open in Web Editor NEW
16.0 16.0 6.0 66 KB

C library for a Matrix Orbital EVE2 & EVE3 & EVE4 Displays

License: MIT License

C 100.00%
bridgetek bt815 bt816 bt817 bt818 c eve eve2 eve3 eve4 ft812 ft813 ft81x ftdi matrix-orbital spi-tft

eve2-library's People

Contributors

ddivino avatar hjakl avatar matrixraym avatar raquelmalinis avatar rudolphriedel avatar tharnlago avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar

eve2-library's Issues

Function definitions and Function prototypes are conflicting...

Two Examples of many in the library...

Example 1:
void FT81x_Init(int display, int board, int touch)
void FT81x_Init(void)

Example 2:
void Cmd_AnimDrawFrame(uint32_t addr, uint16_t Xpos, uint16_t Ypos, uint8_t Frame)
void Cmd_AnimDrawFrame(int16_t x, int16_t y, uint32_t aoptr, uint32_t frame);

Cmd_Keys not implemented/New implementation failing

I have not found CMD_KEYS implemented in any MatrixOrbital code. I did find it implemented in the Riverdi code and extrapolated to get it into the Matrix Orbital code (nearly identical to the Cmd_Text). However the implementation seems to be somehow flawed. It shows the keys but with an extra "stacking" issue shown below.

Given a single row of keys, each key appears to be on top of a stack of (the same shaped) keys each shifted by a few pixels vertically.
Given multiple rows of keys, just the bottom row appears as above.

Is the EVE engine in the MatrixOrbital hardware not capable of this (hence the lack of current cmd_keys) or is it this implementation?

Here is my implementation..


void Cmd_Keys(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t font, uint16_t options, const char * str)
{
  
  uint16_t DataPtr, LoopCount, StrPtr;
  uint16_t length = (uint16_t)strlen(str);
  if(!length) 
    return;

  // Create a data the same size as the string only make it in 32 bit chunks instead of 8 bit.
  uint32_t* data = (uint32_t*) calloc((length/4)+1, sizeof(uint32_t));
  // With a length of three this allocates int(3/4 + 1) == 1 uint32.

  // Loop over the incoming  string and combine 4 consecutive elements into a single data element.
  StrPtr = 0;
  //for(DataPtr=0; DataPtr<(length/4); DataPtr++, StrPtr += 4)
  for(DataPtr=0; DataPtr<(length/4); DataPtr++, StrPtr += 4)
    data[DataPtr] = (uint32_t)str[StrPtr+3]<<24 | (uint32_t)str[StrPtr+2]<<16 | (uint32_t)str[StrPtr+1]<<8 | (uint32_t)str[StrPtr];
  
  // insert the remaining (less than 4) characters into the last element in data array.
  for(LoopCount=0; LoopCount<(length%4); LoopCount++, StrPtr++)
    data[DataPtr] |= (uint32_t)str[StrPtr] << (LoopCount * 8);

  //printf("-- CMD_KEYS -- Size(%d), DataPtr(%d), LoopCount(%d), Data0(%x)\n", sizeof(data[0]), DataPtr, LoopCount,  data[0]);
 
  Send_CMD(CMD_KEYS);
  Send_CMD( ((uint32_t)y << 16) | x ); // Put two 16 bit values together into one 32 bit value - do it little endian
  Send_CMD( ((uint32_t)h << 16) | w );
  Send_CMD( ((uint32_t)options << 16) | font );
  
  // Loop over the data array and send each 32 bit chunk to the display.
  for (LoopCount = 0; LoopCount <= length / 4; LoopCount++)
  {
	  Send_CMD(data[LoopCount]);
  }

  free(data);

}

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.