Close

Adding Layers to the Onion

A project log for A Seven Segment Art Installation

A modular board hosting 9 seven-segment displays that can be daisy chained to make an art installation

arduino-enigmaArduino Enigma 03/11/2019 at 05:320 Comments

Added some functions to the sketch running on the Master Arduino to make displaying things easier:

https://gitlab.com/arduinoenigma/seven-segment-art-installation/tree/master/Board100x9x13-Master

void SendCommandXY(byte XL, byte YL, byte CMD, byte VAL)
{
  Translate(XL, YL);
  SetCMD(CMD);
  SetVal(VAL);
  TxSetChecksum();
  PrintTxFrame();
}

Ultimately the goal is to manipulate arrays and have a function that scans what changed and send the commands to display that.

Discussions