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
655e8293
Commit
655e8293
authored
May 31, 2019
by
catdog
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
레 거 시
parent
2f4fcb5c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
222 additions
and
85 deletions
+222
-85
client.bak.js
public/client.bak.js
+86
-0
client.js
public/client.js
+130
-81
server.js
server.js
+6
-4
No files found.
public/client.bak.js
0 → 100644
View file @
655e8293
const
faye
=
new
Faye
.
Client
(
'
/faye
'
,
{
timeout
:
120
});
// get data from socket end set UI text
faye
.
subscribe
(
'
/drone/navdata
'
,
data
=>
{
[
'
batteryPercentage
'
,
'
clockwiseDegrees
'
,
'
altitudeMeters
'
,
'
frontBackDegrees
'
,
'
leftRightDegrees
'
,
'
xVelocity
'
,
'
yVelocity
'
,
'
zVelocity
'
].
forEach
(
type
=>
$
(
'
#
'
+
type
).
html
(
Math
.
round
(
data
.
demo
[
type
],
4
)));
return
showBatteryStatus
(
data
.
demo
.
batteryPercentage
);
});
window
.
showBatteryStatus
=
batteryPercentage
=>
{
$
(
'
#batterybar
'
).
width
(
`
${
batteryPercentage
}
%`
);
if
(
batteryPercentage
<
30
)
$
(
'
#batteryProgress
'
)
.
removeClass
(
'
progress-success
'
)
.
addClass
(
'
progress-warning
'
);
if
(
batteryPercentage
<
15
)
$
(
'
#batteryProgress
'
)
.
removeClass
(
'
progress-warning
'
)
.
addClass
(
'
progress-danger
'
);
return
$
(
'
#batteryProgress
'
).
attr
({
'
data-original-title
'
:
`Battery status:
${
batteryPercentage
}
%`
});
};
// get image stream from server and set UI
faye
.
subscribe
(
'
/drone/image
'
,
src
=>
$
(
'
#cam
'
).
attr
({
src
:
src
}));
// get keyinput
const
keymap
=
{
87
:
{
ev
:
'
move
'
,
action
:
'
front
'
},
// W
83
:
{
ev
:
'
move
'
,
action
:
'
back
'
},
// S
65
:
{
ev
:
'
move
'
,
action
:
'
left
'
},
// A
68
:
{
ev
:
'
move
'
,
action
:
'
right
'
},
// D
38
:
{
ev
:
'
move
'
,
action
:
'
up
'
},
// up
40
:
{
ev
:
'
move
'
,
action
:
'
down
'
},
// down
37
:
{
ev
:
'
move
'
,
action
:
'
counterClockwise
'
},
// left
39
:
{
ev
:
'
move
'
,
action
:
'
clockwise
'
},
// right
32
:
{
ev
:
'
drone
'
,
action
:
'
takeoff
'
},
// space
27
:
{
ev
:
'
drone
'
,
action
:
'
land
'
},
// esc
49
:
{
ev
:
'
animate
'
,
action
:
'
flipAhead
'
,
duration
:
15
},
// 1
50
:
{
ev
:
'
animate
'
,
action
:
'
flipLeft
'
,
duration
:
15
},
// 2
51
:
{
ev
:
'
animate
'
,
action
:
'
yawShake
'
,
duration
:
15
},
// 3
52
:
{
ev
:
'
animate
'
,
action
:
'
doublePhiThetaMixed
'
,
duration
:
15
},
// 4
53
:
{
ev
:
'
animate
'
,
action
:
'
wave
'
,
duration
:
15
},
// 5
69
:
{
ev
:
'
drone
'
,
action
:
'
disableEmergency
'
}
// E
};
let
speed
=
0
;
$
(
document
).
keydown
(
ev
=>
{
if
(
keymap
[
ev
.
keyCode
]
==
null
)
return
;
ev
.
preventDefault
();
speed
=
speed
>=
1
?
1
:
speed
+
0.08
/
(
1
-
speed
);
const
evData
=
keymap
[
ev
.
keyCode
];
return
faye
.
publish
(
'
/drone/
'
+
evData
.
ev
,
{
action
:
evData
.
action
,
speed
:
speed
,
duration
:
evData
.
duration
});
});
$
(
document
).
keyup
(
ev
=>
{
speed
=
0
;
return
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
'
),
speed
:
0.3
,
duration
:
1000
*
parseInt
(
$
(
'
#duration
'
).
val
())
})
);
$
(
'
*[data-action]
'
).
on
(
'
mouseup
'
,
ev
=>
faye
.
publish
(
'
/drone/move
'
,
{
action
:
$
(
this
).
attr
(
'
data-param
'
),
speed
:
$
(
this
).
attr
(
'
data-action
'
)
===
'
move
'
?
0
:
undefined
})
);
$
(
'
*[rel=tooltip]
'
).
tooltip
();
public/client.js
View file @
655e8293
const
faye
=
new
Faye
.
Client
(
'
/faye
'
,
{
timeout
:
120
});
// get data from socket end set UI text
faye
.
subscribe
(
'
/drone/navdata
'
,
data
=>
{
[
'
batteryPercentage
'
,
'
clockwiseDegrees
'
,
'
altitudeMeters
'
,
'
frontBackDegrees
'
,
'
leftRightDegrees
'
,
'
xVelocity
'
,
'
yVelocity
'
,
'
zVelocity
'
].
forEach
(
type
=>
$
(
'
#
'
+
type
).
html
(
Math
.
round
(
data
.
demo
[
type
],
4
)));
return
showBatteryStatus
(
data
.
demo
.
batteryPercentage
);
});
window
.
showBatteryStatus
=
batteryPercentage
=>
{
$
(
'
#batterybar
'
).
width
(
`
${
batteryPercentage
}
%`
);
if
(
batteryPercentage
<
30
)
$
(
'
#batteryProgress
'
)
.
removeClass
(
'
progress-success
'
)
.
addClass
(
'
progress-warning
'
);
if
(
batteryPercentage
<
15
)
$
(
'
#batteryProgress
'
)
.
removeClass
(
'
progress-warning
'
)
.
addClass
(
'
progress-danger
'
);
return
$
(
'
#batteryProgress
'
).
attr
({
'
data-original-title
'
:
`Battery status:
${
batteryPercentage
}
%`
(
function
()
{
var
faye
,
keymap
,
speed
;
faye
=
new
Faye
.
Client
(
"
/faye
"
,
{
timeout
:
120
});
};
// get image stream from server and set UI
faye
.
subscribe
(
'
/drone/image
'
,
src
=>
$
(
'
#cam
'
).
attr
({
src
:
src
}));
// get keyinput
const
keymap
=
{
87
:
{
ev
:
'
move
'
,
action
:
'
front
'
},
// W
83
:
{
ev
:
'
move
'
,
action
:
'
back
'
},
// S
65
:
{
ev
:
'
move
'
,
action
:
'
left
'
},
// A
68
:
{
ev
:
'
move
'
,
action
:
'
right
'
},
// D
38
:
{
ev
:
'
move
'
,
action
:
'
up
'
},
// up
40
:
{
ev
:
'
move
'
,
action
:
'
down
'
},
// down
37
:
{
ev
:
'
move
'
,
action
:
'
counterClockwise
'
},
// left
39
:
{
ev
:
'
move
'
,
action
:
'
clockwise
'
},
// right
32
:
{
ev
:
'
drone
'
,
action
:
'
takeoff
'
},
// space
27
:
{
ev
:
'
drone
'
,
action
:
'
land
'
},
// esc
49
:
{
ev
:
'
animate
'
,
action
:
'
flipAhead
'
,
duration
:
15
},
// 1
50
:
{
ev
:
'
animate
'
,
action
:
'
flipLeft
'
,
duration
:
15
},
// 2
51
:
{
ev
:
'
animate
'
,
action
:
'
yawShake
'
,
duration
:
15
},
// 3
52
:
{
ev
:
'
animate
'
,
action
:
'
doublePhiThetaMixed
'
,
duration
:
15
},
// 4
53
:
{
ev
:
'
animate
'
,
action
:
'
wave
'
,
duration
:
15
},
// 5
69
:
{
ev
:
'
drone
'
,
action
:
'
disableEmergency
'
}
// E
};
let
speed
=
0
;
$
(
document
).
keydown
(
ev
=>
{
if
(
keymap
[
ev
.
keyCode
]
==
null
)
return
;
ev
.
preventDefault
();
speed
=
speed
>=
1
?
1
:
speed
+
0.08
/
(
1
-
speed
);
const
evData
=
keymap
[
ev
.
keyCode
];
faye
.
publish
(
'
/drone/
'
+
evData
.
ev
,
{
action
:
evData
.
action
,
speed
:
speed
,
duration
:
evData
.
duration
faye
.
subscribe
(
"
/drone/navdata
"
,
function
(
data
)
{
[
"
batteryPercentage
"
,
"
clockwiseDegrees
"
,
"
altitudeMeters
"
,
"
frontBackDegrees
"
,
"
leftRightDegrees
"
,
"
xVelocity
"
,
"
yVelocity
"
,
"
zVelocity
"
].
forEach
(
function
(
type
)
{
return
$
(
"
#
"
+
type
).
html
(
Math
.
round
(
data
.
demo
[
type
],
4
));
});
return
showBatteryStatus
(
data
.
demo
.
batteryPercentage
);
});
});
$
(
document
).
keyup
(
ev
=>
{
window
.
showBatteryStatus
=
function
(
batteryPercentage
)
{
$
(
"
#batterybar
"
).
width
(
""
+
batteryPercentage
+
"
%
"
);
if
(
batteryPercentage
<
30
)
{
$
(
"
#batteryProgress
"
).
removeClass
(
"
progress-success
"
).
addClass
(
"
progress-warning
"
);
}
if
(
batteryPercentage
<
15
)
{
$
(
"
#batteryProgress
"
).
removeClass
(
"
progress-warning
"
).
addClass
(
"
progress-danger
"
);
}
return
$
(
"
#batteryProgress
"
).
attr
({
"
data-original-title
"
:
"
Battery status:
"
+
batteryPercentage
+
"
%
"
});
};
faye
.
subscribe
(
"
/drone/image
"
,
function
(
src
)
{
return
$
(
"
#cam
"
).
attr
({
src
:
src
});
});
keymap
=
{
87
:
{
ev
:
'
move
'
,
action
:
'
front
'
},
83
:
{
ev
:
'
move
'
,
action
:
'
back
'
},
65
:
{
ev
:
'
move
'
,
action
:
'
left
'
},
68
:
{
ev
:
'
move
'
,
action
:
'
right
'
},
38
:
{
ev
:
'
move
'
,
action
:
'
up
'
},
40
:
{
ev
:
'
move
'
,
action
:
'
down
'
},
37
:
{
ev
:
'
move
'
,
action
:
'
counterClockwise
'
},
39
:
{
ev
:
'
move
'
,
action
:
'
clockwise
'
},
32
:
{
ev
:
'
drone
'
,
action
:
'
takeoff
'
},
27
:
{
ev
:
'
drone
'
,
action
:
'
land
'
},
49
:
{
ev
:
'
animate
'
,
action
:
'
flipAhead
'
,
duration
:
15
},
50
:
{
ev
:
'
animate
'
,
action
:
'
flipLeft
'
,
duration
:
15
},
51
:
{
ev
:
'
animate
'
,
action
:
'
yawShake
'
,
duration
:
15
},
52
:
{
ev
:
'
animate
'
,
action
:
'
doublePhiThetaMixed
'
,
duration
:
15
},
53
:
{
ev
:
'
animate
'
,
action
:
'
wave
'
,
duration
:
15
},
69
:
{
ev
:
'
drone
'
,
action
:
'
disableEmergency
'
}
};
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
'
),
speed
:
0.3
,
duration
:
1000
*
parseInt
(
$
(
'
#duration
'
).
val
())
$
(
document
).
keydown
(
function
(
ev
)
{
var
evData
;
if
(
keymap
[
ev
.
keyCode
]
==
null
)
{
return
;
}
ev
.
preventDefault
();
speed
=
speed
>=
1
?
1
:
speed
+
0.08
/
(
1
-
speed
);
evData
=
keymap
[
ev
.
keyCode
];
return
faye
.
publish
(
"
/drone/
"
+
evData
.
ev
,
{
action
:
evData
.
action
,
speed
:
speed
,
duration
:
evData
.
duration
});
});
$
(
document
).
keyup
(
function
(
ev
)
{
speed
=
0
;
return
faye
.
publish
(
"
/drone/drone
"
,
{
action
:
'
stop
'
});
});
$
(
"
*[data-action]
"
).
on
(
"
mousedown
"
,
function
(
ev
)
{
return
faye
.
publish
(
"
/drone/
"
+
$
(
this
).
attr
(
"
data-action
"
),
{
action
:
$
(
this
).
attr
(
"
data-param
"
),
speed
:
0.3
,
duration
:
1000
*
parseInt
(
$
(
"
#duration
"
).
val
())
});
});
});
$
(
'
*[data-action]
'
).
on
(
'
mouseup
'
,
ev
=>
{
faye
.
publish
(
'
/drone/move
'
,
{
action
:
$
(
this
).
attr
(
'
data-param
'
),
speed
:
$
(
this
).
attr
(
'
data-action
'
)
===
'
move
'
?
0
:
undefined
$
(
"
*[data-action]
"
).
on
(
"
mouseup
"
,
function
(
ev
)
{
return
faye
.
publish
(
"
/drone/move
"
,
{
action
:
$
(
this
).
attr
(
"
data-param
"
),
speed
:
$
(
this
).
attr
(
"
data-action
"
)
===
"
move
"
?
0
:
void
0
});
});
}
);
$
(
'
*[rel=tooltip]
'
).
tooltip
(
);
$
(
"
*[rel=tooltip]
"
).
tooltip
(
);
}).
call
(
this
);
\ No newline at end of file
server.js
View file @
655e8293
...
...
@@ -23,15 +23,17 @@ 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
);
if
(
typeof
drone
[
cmd
.
action
]
===
"
function
"
)
return
drone
[
cmd
.
action
](
cmd
.
speed
);
});
socket
.
subscribe
(
'
/drone/animate
'
,
cmd
=>
{
console
.
log
(
'
animate
'
,
cmd
);
drone
.
animate
(
cmd
.
action
,
cmd
.
duration
);
return
drone
.
animate
(
cmd
.
action
,
cmd
.
duration
);
});
socket
.
subscribe
(
'
/drone/drone
'
,
cmd
=>
{
console
.
log
(
'
drone command:
'
,
cmd
);
if
(
drone
[
cmd
.
action
])
drone
[
cmd
.
action
]();
if
(
typeof
drone
[
cmd
.
action
]
===
"
function
"
)
return
drone
[
cmd
.
action
]();
});
// start server
...
...
@@ -58,5 +60,5 @@ drone.createPngStream().on('data', frame => {
// send latest img to server
app
.
get
(
'
/image/:id
'
,
(
req
,
res
)
=>
{
res
.
writeHead
(
200
,
{
'
Content-Type
'
:
'
image/png
'
});
res
.
end
(
currentImg
,
'
binary
'
);
re
turn
re
s
.
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