upm/examples/javascript/curieimu.js
Mihai Tudor Panu 89d5de43e0 license: update to SPDX style license text throughout
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2020-03-05 15:13:36 -08:00

38 lines
911 B
JavaScript

/*
* Author: Ron Evans (@deadprogram)
* Copyright (c) 2016 Intel Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the The MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
*/
var mraa = require('mraa');
console.log('MRAA Version: ' + mraa.getVersion());
// open connection to Firmata
mraa.addSubplatform(mraa.GENERIC_FIRMATA, "/dev/ttyACM0");
var curieImu = require('jsupm_curieimu');
var myCurie = new curieImu.CurieImu();
var outputStr;
var myInterval = setInterval(function()
{
myCurie.updateAccel();
outputStr = "accel: x " + myCurie.getAccelX()
+ " - y " + myCurie.getAccelY()
+ " - z " + myCurie.getAccelZ();
console.log(outputStr);
}, 500);
// Print message when exiting
process.on('SIGINT', function()
{
clearInterval(myInterval);
console.log("Exiting");
process.exit(0);
});