mirror of
https://github.com/eclipse/upm.git
synced 2025-07-02 01:41:12 +03:00
examples: Changed Node.js module from jsupm_grove
Signed-off-by: Suyash Lakhotia <suyashlakhotia@gmail.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:

committed by
Mihai Tudor Panu

parent
3eb3a0b825
commit
b3991979ad
@ -22,28 +22,27 @@
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
// Load Grove module
|
||||
var groveSensor = require('jsupm_grove');
|
||||
// Load UPM module
|
||||
var upm = require('jsupm_relay');
|
||||
|
||||
// Create the relay switch object using GPIO pin 0
|
||||
var relay = new groveSensor.Relay(0);
|
||||
var relay = new upm.Relay(0);
|
||||
|
||||
// Close and then open the relay switch 3 times,
|
||||
// waiting one second each time. The LED on the relay switch
|
||||
// waiting one second each time. The LED on the relay switch
|
||||
// will light up when the switch is on (closed).
|
||||
// The switch will also make a noise between transitions.
|
||||
var i = 0;
|
||||
var waiting = setInterval(function() {
|
||||
if ( i % 2 == 0 ) {
|
||||
relay.on();
|
||||
if ( relay.isOn() )
|
||||
console.log(relay.name() + " is on");
|
||||
} else {
|
||||
relay.off();
|
||||
if ( relay.isOff() )
|
||||
console.log(relay.name() + " is off");
|
||||
}
|
||||
i++;
|
||||
if ( i == 6) clearInterval(waiting);
|
||||
}, 1000);
|
||||
|
||||
if (i % 2 == 0) {
|
||||
relay.on();
|
||||
if (relay.isOn())
|
||||
console.log(relay.name() + " is on");
|
||||
} else {
|
||||
relay.off();
|
||||
if (relay.isOff())
|
||||
console.log(relay.name() + " is off");
|
||||
}
|
||||
i++;
|
||||
if (i == 6) clearInterval(waiting);
|
||||
}, 1000);
|
||||
|
Reference in New Issue
Block a user