The Light Sculpture knob controls which mode the sculpture is in.
As seen in void loop(), the sculpture can be in:
offMode
lightShowMode
nightLightMode
You are going to be writing code for the lightShowMode.
The code you write should be individual functions and they should be placed after runLightShow() in the display functions area of the file YourInitials_LightSculpture.ino
Each function you create has the following requirements:
Functions Begin and end with all LEDs off.
Functions MUST use loops and arrays wherever possible to ensure sure you dont use up all the memory of the arduino.
Functions MUST use at least three arguments (typically onTime, offTime, repeatCount).