Git Product home page Git Product logo

cordova-plugin-intel-xdk-accelerometer's Introduction

DISCONTINUATION OF PROJECT. This project will no longer be maintained by Intel. Intel will not provide or guarantee development of or support for this project, including but not limited to, maintenance, bug fixes, new releases or updates. Patches to this project are no longer accepted by Intel. In an effort to support the developer community, Intel has made this project available under the terms of the Apache License, Version 2. If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the community, please create your own fork of the project.

intel.xdk.accelerometer

Use the accelerometer object to listen to the device's motion sensor.

This Intel XDK Cordova plugin and API has been deprecated. Please use the equivalent standard Cordova accelerometer plugin instead.

Description

The accelerometer is that device on a smartphone that detects movement. The accelerometer object is used to track the accelerometer on the device. Success and failure callback functions need to be defined in your Javascript. Successful data is returned as an object with the attributes .x, .y, and .z. Values of accelerometer samples for each axis range from -1 to 1.

Methods

  • clearWatch — This method stops the process started by watchAcceleration when it is passed the appropriate watch timer object.

  • getCurrentAcceleration — This method will asynchronously acquire the device's acceleration when it is called.

  • watchAcceleration — This method will asynchronously acquire the device's acceleration repeatedly at a given interval.

Methods

clearWatch

This method stops the process started by watchAcceleration when it is passed the appropriate watch timer object.

intel.xdk.accelerometer.clearWatch(watchID);

Available Platforms

  • Apple iOS
  • Google Android
  • Microsoft Windows 8 - BETA
  • Microsoft Windows Phone 8 - BETA

Parameters

  • watchID: The ID returned by accelerometer.watchAcceleration.

Example

var watchID = intel.xdk.accelerometer.watchAcceleration(onSuccess, options);
// ... later on ...
intel.xdk.accelerometer.clearWatch(watchID);

getCurrentAcceleration

This method will asynchronously acquire the device's acceleration when it is called.

intel.xdk.accelerometer.getCurrentAcceleration(accelerometerSuccess,accelerometerOptions);

Description

This method will asynchronously acquire the acceleration on the device when it is called. The optional acceleration options parameter is looking for a javascript object with the .adjustForRotation property which changes the values of the .x and .y parameter based on the device orientation. The success function callback is triggered once data is available. Successful data is returned as an object with the attributes .x, .y, and .z.

Available Platforms

  • Apple iOS
  • Google Android
  • Microsoft Windows 8 - BETA
  • Microsoft Windows Phone 8 - BETA

Parameters

  • accelerometerSuccess: A function executed when the method successfully detects an accelerometer change.
  • accelerometerOptions: An object that contains the adjustForRotation property to set it to adjust for device orientation or not.

Example

function getSingleAcceleration() {
    intel.xdk.accelerometer.getCurrentAcceleration(
       function(evt){
           document.getElementById("accelerometerReadings").innerHTML =
                'Acceleration X: ' + evt.x + '<br/>' +
                'Acceleration Y: ' + evt.y + '<br/>' +
                'Acceleration Z: ' + evt.z + '<br/>' +
                'Timestamp: '      + evt.timestamp;
       }, {adjustForRotation:false});
}

watchAcceleration

This method will asynchronously acquire the device's acceleration repeatedly at a given interval

var watchID = intel.xdk.accelerometer.watchAcceleration(accelerometerSuccess,accelerometerOptions);

Description

This method will asynchronously acquire the acceleration repeatedly at a given interval. The acceleration options parameter is looking for a javascript object with two properties: .frequency which changes that millisecond interval for refresh and has a default of 500 and .adjustForRotation which changes the values of the .x and .y parameter based on the device orientation. The success function callback is triggered each time data is available. Successful data is returned as an object with the attributes .x, .y, and .z. This method returns a watch timer object to be cleared with clearWatch.

Available Platforms

  • Apple iOS
  • Google Android
  • Microsoft Windows 8 - BETA
  • Microsoft Windows Phone 8 - BETA

Parameters

  • accelerometerSuccess: A function executed when the method successfully detects an accelerometer change.
  • accelerometerOptions: An object that contains properties which will modify how the accelerometer information is accessed.

Returns

  • watchID: A unique identifier returned from this method that can be used to stop watching for an accelerometer change.

Example

function onSuccess(acceleration) {
    alert('Acceleration X: ' + acceleration.x + '\n' +
        'Acceleration Y: ' + acceleration.y + '\n' +
        'Acceleration Z: ' + acceleration.z + '\n' +
        'Timestamp: '      + acceleration.timestamp + '\n');
};

var options = { frequency: 3000, adjustForRotation: true  };  // Update every 3 seconds

var watchID = intel.xdk.accelerometer.watchAcceleration(onSuccess, options);

cordova-plugin-intel-xdk-accelerometer's People

Contributors

ryanwfiorini avatar tony-- avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.