/**
  * Sets the change in degrees required to initiate a watchHeading success callback.
  *
  * @param value
  */
 public void setFilter(double value) {
   JsoHelper.setAttribute(jsObj, "filter", value);
 }
 /**
  * How often to retrieve the Acceleration in milliseconds. (Default: 10000)
  *
  * @param value
  */
 public void setFrequency(double value) {
   JsoHelper.setAttribute(jsObj, Attributes.FREQUENCY.getValue(), value);
 }
 /**
  * Sets how often to retrieve the compass heading, in milliseconds.
  *
  * @param value
  */
 public void setFrequency(double value) {
   JsoHelper.setAttribute(jsObj, "frequency", value);
 }