This sample demonstrates how to integrate sensors (accelerometer) into a BlackBerry WebWorks application for BlackBerry 10.
The sample code for this application is Open Source under the Apache 2.0 License.
Applies To
Author(s)
Sounds
Sound files used in this sample are from freesound.org and licensed under the CC0 1.0 Universal license.
To contribute code to this repository you must be signed up as an official contributor.
The documentation for this API is available at http://developer.blackberry.com/html5/apis/blackberry.sensors.html
Config.xml
The following feature must be included in your project's config.xml.
<feature id="blackberry.sensors" />
Setup the accelerometer options
blackberry.sensors.setOptions("deviceaccelerometer", {
delay: 10000,
background: true,
batching: false,
queue: false,
reducedReporting: false
});
Start a listener
blackberry.event.addEventListener("deviceaccelerometer", accelCallback);
Accellerometer callback
function accelCallback(data) {
// do something fun here!
}
- Clone the repo to your local machine
- Use Using the Ripple Mobile Emulator and the BlackBerry 10 WebWorks SDK, package the contents of your local BB10-WebWorks-Samples/WindowCovers folder into a BlackBerry application.
- BlackBerry HTML5 WebWorks - Downloads, Getting Started guides, samples, code signing keys.
- BlackBerry WebWorks Development Guides
- BlackBerry WebWorks Community Forums
- BlackBerry Open Source WebWorks Contributions Forums
Please see the README of the BB10-WebWorks-Samples repository for instructions on how to add new Samples or make modifications to existing Samples.
If you find a bug in a Sample, or have an enhancement request, simply file an Issue for the Sample.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.