Manual for controlling each channel of the Adafruit 12-Channel 16-bit PWM LED Dr

  1. Make sure that you have installed the Adafruit Libraryhttps://github.com/adafruit/Adafruit_TLC59711
  2. See the code and try to understand it .
  3. Copy and Paste the example provided by Adafruit Adafruit_TLC59711/examples/tlc59711test at master · adafruit/Adafruit_TLC59711 · GitHub
  4. If you have only one board change the number 2 to 1 in the question:
    //How many board do you have chained?
  5. In void loop()
    Delete all except the first line.
  6. In void colorWipe(uint16_t r, uint16_t g, uint16_t b, uint8_t wait)
    Just leave:

tlc.setLED(i, r, g, b);

tlc.write();

Questions?
Hope it helps.