forked from felixge/node-ar-drone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_flight.js
75 lines (67 loc) · 1.51 KB
/
simple_flight.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
var arDrone = require('..');
var http = require('http');
//var pngStream = arDrone.createClient().getPngStream();
var client = arDrone.createClient();
client.disableEmergency();
console.log('Connecting png stream ...');
var pngStream = client.getPngStream();
var lastPng;
pngStream
.on('error', console.log)
.on('data', function(pngBuffer) {
lastPng = pngBuffer;
});
var server = http.createServer(function(req, res) {
if (!lastPng) {
res.writeHead(503);
res.end('Did not receive any png data yet.');
return;
}
res.writeHead(200, {'Content-Type': 'image/png'});
res.end(lastPng);
});
server.listen(8080, function() {
console.log('Serving latest png on port 8080 ...');
client.takeoff();
client
.after(5000, function() {
this.clockwise(0.5);
})
.after(5000, function() {
this.stop();
})
.after(5000, function() {
this.clockwise(0.5);
})
.after(5000, function() {
this.stop();
})
.after(5000, function() {
this.clockwise(0.5);
})
.after(5000, function() {
this.stop();
})
.after(5000, function() {
this.clockwise(-0.5);
})
.after(5000, function() {
this.stop();
})
.after(5000, function() {
this.clockwise(-0.5);
})
.after(5000, function() {
this.stop();
})
.after(5000, function() {
this.clockwise(-0.5);
})
.after(5000, function() {
this.stop();
})
.after(1000, function() {
this.stop();
this.land();
});
});