-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcontroller.js
40 lines (35 loc) · 1.09 KB
/
controller.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
/**
* Created with JetBrains WebStorm.
* User: rohitghatol
* Date: 6/29/13
* Time: 6:32 PM
* To change this template use File | Settings | File Templates.
*/
var io = require('socket.io').listen(3002);
io.set('log level', 1);
io.sockets.on('connection', function (socket) {
var arDrone = require('ar-drone');
var client = arDrone.createClient();
setInterval(function(){
var batteryLevel = client.battery();
socket.emit('event', { name: 'battery',value: batteryLevel});
},1000);
socket.on('event', function (data) {
if(data.name=="takeoff"){
console.log("Browser asked Ar Drone to Take Off");
client.takeoff();
}
if(data.name=="spin"){
console.log("Browser asked Ar Drone to Start Spinning");
client.clockwise(1);
}
if(data.name=="stop"){
console.log("Browser asked Ar Drone to Stay and Hover");
client.stop();
}
if(data.name=="land"){
console.log("Browser asked Ar Drone to Land");
client.land();
}
});
});