-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
58 lines (39 loc) · 1.74 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
var express = require('express'); // call express
var app = express(); // define our app using express
var bodyParser = require('body-parser');
var WeMo = require('wemo');
// configure app to use bodyParser()
// this will let us get the data from a POST
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
var port = process.env.PORT || 8080; // set our port
// ROUTES FOR OUR API
// =============================================================================
var router = express.Router(); // get an instance of the express Router
// test route to make sure everything is working (accessed at GET http://localhost:8080/api)
router.get('/toggle', function(req, res) {
var wemoSwitch = new WeMo('IP', 'PORT');
wemoSwitch.setBinaryState(0, function(err, result) {
if (err) console.error(err);
console.log(result); // 1
wemoSwitch.setBinaryState(1, function(err, result) { // switch on
if (err) console.error(err);
console.log(result); // 1
setTimeout(function() {
wemoSwitch.setBinaryState(0, function(err, result) { // switch on
if (err) console.error(err);
wemoSwitch.getBinaryState(function(err, result) {
if (err) console.error(err);
console.log(result); // 1
});
});
}, 6000);
});
});
res.json({ message: 'hooray! welcome to our api!' });
});
app.use('/courtains', router);
// START THE SERVER
// =============================================================================
app.listen(port);
console.log('Magic happens on port ' + port);