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
5748ac1f
Commit
5748ac1f
authored
Jun 09, 2019
by
15김건우
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Test
parent
655e8293
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
test.1.js
test.1.js
+45
-0
No files found.
test.1.js
0 → 100644
View file @
5748ac1f
const
drone
=
require
(
'
ar-drone
'
).
createClient
();
const
btSerial
=
new
(
require
(
'
bluetooth-serial-port
'
)).
BluetoothSerialPort
();
function
toDrone
(
data
)
{
// action: up, down, front, back, left, right, clockwise, counterClockwise
// speed: 0.0 ~ 1.0
// drone['back'](0.3); // drone['action'](speed);
// action: takeoff, land, disableEmergency
// drone['takeoff']();
// drone.calibrate(0); // magnetometer sync
}
function
fromDrone
(
data
)
{
// type: batteryPercentage, altitudeMeters,
// clockwiseDegrees, frontBackDegrees, leftRightDegrees, xVelocity, yVelocity, zVelocity
// Math.round(data.demo[type], 4);
console
.
log
(
data
.
demo
);
}
function
fromController
(
data
)
{
process
.
stdout
.
write
(
data
);
}
drone
.
config
(
'
general:navdata_demo
'
,
'
TRUE
'
);
drone
.
on
(
'
navdata
'
,
fromDrone
);
console
.
log
(
"
Try to connect Bluetooth...
"
);
btSerial
.
on
(
'
found
'
,
(
address
,
name
)
=>
{
if
(
!
name
.
toLowerCase
().
includes
(
'
dronermctrl
'
))
{
console
.
log
(
'
SKIP:
'
,
name
);
}
else
{
btSerial
.
findSerialPortChannel
(
address
,
channel
=>
{
// Finds then serial port channel and then connects to it
btSerial
.
connect
(
address
,
channel
,
function
()
{
console
.
log
(
"
Bluetooth connected.
"
);
btSerial
.
on
(
'
data
'
,
bufferData
=>
fromController
(
bufferData
.
toString
(
'
utf-8
'
)));
},
console
.
error
);
btSerial
.
close
();
},
console
.
error
);
}
});
btSerial
.
inquire
();
// start bluetooth serial
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