0
Reply

Error in wacom pressure level

MK Hasan

MK Hasan

Dec 2 2009 1:45 PM
2.8k
Hi,
i am using the following code to measure the wacom (intuos4 with stylus) pressure level.

        public double getPressure(StylusEventArgs e)
        {
            return e.GetStylusPoints(window)[e.GetStylusPoints(window).Count - 1].GetPropertyValue(StylusPointProperties.NormalPressure);
        }

  according to the wacom manual, i should get value range of 0-1023. but right now it returns a range 0-32767

can anyone help me to solve the problem.