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
f660af37
Commit
f660af37
authored
Jun 09, 2019
by
15김건우
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change server.js to use fallback public.1
parent
67e5f3aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
server.js
server.js
+12
-8
No files found.
server.js
View file @
f660af37
...
...
@@ -11,7 +11,7 @@ const app = express();
app
.
configure
(()
=>
{
app
.
set
(
'
port
'
,
process
.
env
.
PORT
||
3001
);
app
.
use
(
app
.
router
);
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'
public
'
)));
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'
public
.1
'
)));
app
.
use
(
'
/components
'
,
express
.
static
(
path
.
join
(
__dirname
,
'
components
'
)));
});
...
...
@@ -23,17 +23,21 @@ 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
(
typeof
drone
[
cmd
.
action
]
===
"
function
"
)
return
drone
[
cmd
.
action
](
cmd
.
speed
);
if
(
cmd
.
action
==
"
calibrate
"
)
{
console
.
log
(
"
calibrate
"
);
drone
[
cmd
.
action
](
0
);
}
else
if
(
typeof
drone
[
cmd
.
action
]
===
"
function
"
)
drone
[
cmd
.
action
](
cmd
.
speed
);
});
socket
.
subscribe
(
'
/drone/animate
'
,
cmd
=>
{
console
.
log
(
'
animate
'
,
cmd
);
return
drone
.
animate
(
cmd
.
action
,
cmd
.
duration
);
//
console.log('animate', cmd);
//
return drone.animate(cmd.action, cmd.duration);
});
socket
.
subscribe
(
'
/drone/drone
'
,
cmd
=>
{
console
.
log
(
'
drone command:
'
,
cmd
);
if
(
typeof
drone
[
cmd
.
action
]
===
"
function
"
)
return
drone
[
cmd
.
action
]();
//
console.log('drone command: ', cmd);
//
if (typeof drone[cmd.action] === "function")
//
return drone[cmd.action]();
});
// start server
...
...
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