This repository has been archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflightplan.js
73 lines (55 loc) · 1.62 KB
/
flightplan.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
"use strict";
var bebop = require('node-bebop');
var drone = bebop.createClient();
var alreadyFlying = false;
drone.connect(function() {
drone.on("GPSFixStateChanged", function(data) {
console.log("GPSFixStateChanged", data);
});
drone.on("MavlinkPlayErrorStateChanged", function(data) {
console.log("MavlinkPlayErrorStateChanged", data);
});
drone.on("MavlinkFilePlayingStateChanged", function(data) {
console.log("MavlinkFilePlayingStateChanged", data);
});
drone.on("AvailabilityStateChanged", function(data) {
console.log("AvailabilityStateChanged", data);
if (data.AvailabilityState === 1 && !alreadyFlying) {
alreadyFlying = true;
drone.Mavlink.start("/data/ftp/internal_000/flightplans/flightPlan.mavlink", 0);
}
});
drone.on("ComponentStateListChanged", function(data) {
console.log("ComponentStateListChanged", data);
});
drone.on("ready", function () {
console.log("ready");
});
drone.on("battery", function (data) {
console.log(data);
});
drone.on("landed", function () {
console.log("landed");
});
drone.on("takingOff", function () {
console.log("takingOff");
});
drone.on("hovering", function () {
console.log("hovering");
});
drone.on("FlyingStateChanged", function () {
console.log("FlyingStateChanged");
});
drone.on("BatteryStateChanged", function () {
console.log("BatteryStateChanged");
});
drone.on("flying", function() {
console.log("flying");
});
drone.on("landing", function() {
console.log("landing");
});
drone.on("unknown", function(data) {
console.log("unknown", data);
});
});