776f845919
Closes #8
29 linhas
1.1 KiB
Plaintext
29 linhas
1.1 KiB
Plaintext
var config = {
|
|
plugins: [
|
|
"video-png" // Display the video feed as static pngs (work in every browser)
|
|
//, "video-stream" // Display the video as a native h264 stream decoded in JS
|
|
, "hud" // Display the artificial horizon, altimeter, compass, etc.
|
|
, "battery" // Display a simple battery widget in the header bar
|
|
, "pilot" // Pilot the drone with the keyboard
|
|
, "blackbox" // Experimental: Records all mision data (navData, raw video, PaVE headers, etc.)
|
|
//, "replay" // Experimental: Replay the data recorded by the blackbox
|
|
],
|
|
|
|
// Config for pilot plugin
|
|
keyboard: 'azerty',
|
|
|
|
// Config for blackbox plugin. Path is an existing folder where to store mission data
|
|
// Each new mission will have its own timestamped folder.
|
|
blackbox: {
|
|
path: "/tmp"
|
|
},
|
|
|
|
// Config for replay plugin. Path points to a specific mission folder to be replayed.
|
|
replay: {
|
|
path: "/tmp/2013-06-03_09-10-33/"
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|
|
|