upm/examples/javascript/sensortemplate.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

30 lines
688 B
JavaScript

/*
* The MIT License (MIT)
*
* Author: Your Full Name <your@email.address>
* Copyright (c) <year> <copyright holder>
*
* 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 jsupm_sensortemplate = require('jsupm_sensortemplate');
// Create an instance of the sensor
var sensor = new upm_sensortemplate.SensorTemplate(0);
loop();
function loop()
{
// Call a method from the sensortemplate
console.log("SensorTemplate says: " + sensor.helloWorld());
// Call loop every 2 seconds
setTimeout(loop, 2000);
}