public VisualLedController()
        {
            // Create the base controller, specifiy how we want upates; if want everything everytime, or if we want signle slot updates.
            m_baseController = new LedController(this, ControlerUpdateType.AllSlots);

            // Enable animation on the base controller. This must be enabled for led animation.
            m_baseController.ToggleAnimation(true, false);
        }