/// <summary>
    /// The most recent X 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 GetXTouch()
    {
        if (!IsBridgeInitialized)
        {
            return(0);
        }

        return(_controllerPlugin.GetXTouch());
    }