mirror of
https://github.com/eclipse/upm.git
synced 2025-03-25 09:49:59 +03:00
30 lines
963 B
JavaScript
30 lines
963 B
JavaScript
/*
|
|
* Author: Sarah Knepper <sarah.knepper@intel.com>
|
|
* Copyright (c) 2014 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
|
|
*/
|
|
|
|
// Load temperature module
|
|
var upm = require('jsupm_temperature');
|
|
|
|
// Create the temperature sensor object using AIO pin 0
|
|
var temp = new upm.Temperature(0);
|
|
console.log(temp.name());
|
|
|
|
// Read the temperature ten times, printing both the Celsius and
|
|
// equivalent Fahrenheit temperature, waiting one second between readings
|
|
var i = 0;
|
|
var waiting = setInterval(function() {
|
|
var celsius = temp.value();
|
|
var fahrenheit = celsius * 9.0/5.0 + 32.0;
|
|
console.log(celsius + " degrees Celsius, or " +
|
|
Math.round(fahrenheit) + " degrees Fahrenheit");
|
|
i++;
|
|
if (i == 10) clearInterval(waiting);
|
|
}, 1000);
|