MK Hasan

MK Hasan

  • NA
  • 1
  • 3.2k

Error in wacom pressure level

Dec 2 2009 1:45 PM
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.