/// <summary>
    /// The most recent Y Touchpad value received from the handheld controller device.
    /// </summary
    /// <returns>Range is 0 - 255, however the touchpad is circular so corner values are never returned. Value will be 0 if there is no finger contact with the touchpad. </returns>
    public int GetYTouch()
    {
        if (!IsBridgeInitialized)
        {
            return(0);
        }

        return(_controllerPlugin.GetYTouch());
    }