Skip to content
Snippets Groups Projects
README.MD 1.12 KiB
Newer Older
This project was created by Alexander Tkaczyk-Harrison & Bradley Griffiths. 

All work is our own. 

The template for the website was downloaded from: https://html5up.net/prologue
The website can be found in the folder called "PIXL"


Lines:

  if(done < 1){
    delay(125);
    matrix.fillScreen(0);

    matrix.setTextColor(colors[1]);
    int pass = 0;
    matrix.setCursor(x, 4);
    matrix.print(F("PIXL"));
    
    if(--x < -36) {
      x = matrix.width();
      
      if(++pass >= 3) pass = 0;
    }
  } 

And:

if(exitMessage >= 1){
        delay(50);
        matrix.fillScreen(0);
        
        matrix.setTextColor(colors[3]);
        int pass = 0;
        matrix.setCursor(x+50, 4);
        matrix.print(F("TURN ME OFF:)"));
    
        if(--x < -200) {
          
          x = matrix.width();
          
         if(++pass >= 3) pass = 0;
         
        }    
      }

Were appropriated from the file "Arduino Files / matrixtest". "matrixtest" is a free example which is included from downloading the <Adafruit_NeoMatrix.h> library from the Arduino IDE.  

The main PIXL file can be found in the folder called "PIXL-FINAL"