From 0cbef22b031d598232b13258f17c0f4eabd70d35 Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Mon, 9 Dec 2019 12:44:41 +0100 Subject: [PATCH] Better documentation VULEDs documentation --- docs/Doxygen/d9/df2/4_8VULEDs_8ino-example.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/Doxygen/d9/df2/4_8VULEDs_8ino-example.html b/docs/Doxygen/d9/df2/4_8VULEDs_8ino-example.html index 6d8013eb09..6a63c98166 100644 --- a/docs/Doxygen/d9/df2/4_8VULEDs_8ino-example.html +++ b/docs/Doxygen/d9/df2/4_8VULEDs_8ino-example.html @@ -85,13 +85,15 @@

  • SS: 74HC595 ST_CP
  • MOSI: 74HC595 DS
  • SCK: 74HC595 SH_CP
  • +
  • A0: Push button (to ground, internal pull-up resistor will be used)
  • Connect an LED (and series resistor) between each of the first 12 outputs of the shift registers and ground.

    Remember to connect the enable pin of the shift register to ground and the master reset pin to Vcc in order to enable it.

    Behavior

    -

    The LEDs display the level of the first track in your DAW.

    +

    The LEDs display the level of the first track in your DAW.
    + When the push button is pressed, the VU meter switches from bar mode to dot mode and back.

    Mapping

    Map the Arduino as a Mackie Control Universal in your DAW.

    @@ -111,6 +113,7 @@

    * - SS: 74HC595 ST_CP
    * - MOSI: 74HC595 DS
    * - SCK: 74HC595 SH_CP
    +
    * - A0: Push button (to ground, internal pull-up resistor will be used)
    *
    * Connect an LED (and series resistor) between each of the first 12 outputs of
    * the shift registers and ground.
    @@ -121,7 +124,9 @@

    * Behavior
    * --------
    *
    -
    * The LEDs display the level of the first track in your DAW.
    +
    * The LEDs display the level of the first track in your DAW.
    +
    * When the push button is pressed, the VU meter switches from bar mode to dot
    +
    * mode and back.
    *
    * Mapping
    * -------
    @@ -161,6 +166,7 @@

    // If you use 24 LEDs, for example, the LEDs will turn on in groups of 2 at a
    // time.
    +
    // Push button to switch between dot and bar mode.
    Button dotBarModeButton = A0;
    void setup() {