Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
node-drone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
15김건우
node-drone
Commits
2f4fcb5c
Commit
2f4fcb5c
authored
May 31, 2019
by
15김건우
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add comment
parent
965b9fc6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
client.js
public/client.js
+8
-2
server.js
server.js
+10
-2
No files found.
public/client.js
View file @
2f4fcb5c
const
faye
=
new
Faye
.
Client
(
'
/faye
'
,
{
timeout
:
120
});
// get data from socket end set UI text
faye
.
subscribe
(
'
/drone/navdata
'
,
data
=>
{
[
'
batteryPercentage
'
,
...
...
@@ -12,7 +14,6 @@ faye.subscribe('/drone/navdata', data => {
].
forEach
(
type
=>
$
(
'
#
'
+
type
).
html
(
Math
.
round
(
data
.
demo
[
type
],
4
)));
return
showBatteryStatus
(
data
.
demo
.
batteryPercentage
);
});
window
.
showBatteryStatus
=
batteryPercentage
=>
{
$
(
'
#batterybar
'
).
width
(
`
${
batteryPercentage
}
%`
);
if
(
batteryPercentage
<
30
)
...
...
@@ -27,9 +28,12 @@ window.showBatteryStatus = batteryPercentage => {
'
data-original-title
'
:
`Battery status:
${
batteryPercentage
}
%`
});
};
// get image stream from server and set UI
faye
.
subscribe
(
'
/drone/image
'
,
src
=>
$
(
'
#cam
'
).
attr
({
src
:
src
}));
keymap
=
{
// get keyinput
const
keymap
=
{
87
:
{
ev
:
'
move
'
,
action
:
'
front
'
},
// W
83
:
{
ev
:
'
move
'
,
action
:
'
back
'
},
// S
65
:
{
ev
:
'
move
'
,
action
:
'
left
'
},
// A
...
...
@@ -64,6 +68,8 @@ $(document).keyup(ev => {
speed
=
0
;
faye
.
publish
(
'
/drone/drone
'
,
{
action
:
'
stop
'
});
});
// get mouse event
$
(
'
*[data-action]
'
).
on
(
'
mousedown
'
,
ev
=>
{
faye
.
publish
(
'
/drone/
'
+
$
(
this
).
attr
(
'
data-action
'
),
{
action
:
$
(
this
).
attr
(
'
data-param
'
),
...
...
server.js
View file @
2f4fcb5c
...
...
@@ -2,9 +2,11 @@ const express = require('express');
const
faye
=
require
(
'
faye
'
);
const
path
=
require
(
'
path
'
);
// config drone
const
drone
=
require
(
'
ar-drone
'
).
createClient
();
drone
.
config
(
'
general:navdata_demo
'
,
'
TRUE
'
);
// config express app
const
app
=
express
();
app
.
configure
(()
=>
{
app
.
set
(
'
port
'
,
process
.
env
.
PORT
||
3001
);
...
...
@@ -13,11 +15,12 @@ app.configure(() => {
app
.
use
(
'
/components
'
,
express
.
static
(
path
.
join
(
__dirname
,
'
components
'
)));
});
// create server and socket
const
server
=
require
(
'
http
'
).
createServer
(
app
);
new
faye
.
NodeAdapter
({
mount
:
'
/faye
'
,
timeout
:
45
}).
attach
(
server
);
const
socket
=
new
faye
.
Client
(
`http://localhost:
${
app
.
get
(
'
port
'
)}
/faye`
);
// get request from socket -> set command to drone
socket
.
subscribe
(
'
/drone/move
'
,
cmd
=>
{
console
.
log
(
'
move
'
,
cmd
);
if
(
drone
[
cmd
.
action
])
drone
[
cmd
.
action
](
cmd
.
speed
);
...
...
@@ -30,13 +33,17 @@ socket.subscribe('/drone/drone', cmd => {
console
.
log
(
'
drone command:
'
,
cmd
);
if
(
drone
[
cmd
.
action
])
drone
[
cmd
.
action
]();
});
// start server
server
.
listen
(
app
.
get
(
'
port
'
),
()
=>
console
.
log
(
'
Express server listening on port
'
+
app
.
get
(
'
port
'
))
);
let
currentImg
=
null
;
// send navdata to socket
drone
.
on
(
'
navdata
'
,
data
=>
socket
.
publish
(
'
/drone/navdata
'
,
data
));
// save latest img from drone PngStream
let
currentImg
=
null
;
let
imageSendingPaused
=
false
;
drone
.
createPngStream
().
on
(
'
data
'
,
frame
=>
{
currentImg
=
frame
;
...
...
@@ -48,6 +55,7 @@ drone.createPngStream().on('data', frame => {
},
100
);
});
// send latest img to server
app
.
get
(
'
/image/:id
'
,
(
req
,
res
)
=>
{
res
.
writeHead
(
200
,
{
'
Content-Type
'
:
'
image/png
'
});
res
.
end
(
currentImg
,
'
binary
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment