
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@giwisoft/ryze-tello-sdk
Advanced tools
NodeJS utility for the [Ryze Tello Drone](https://www.ryzerobotics.com/tello)
NodeJS utility for the Ryze Tello Drone
Video stream is supported, but you need mplayer.
yarn install @giwisoft/ryze-tello-sdk
Connect to the Tello's Wifi.
yarn start
'use strict';
const tello = require('./lib/tello');
tello.start()
.then(() => tello.takeoff())
.then(() => tello.forward(50))
.then(() => tello.rotateCCW(360))
.then(() => {
return new Promise(resolve =>
tello.get('h').then(r => {
console.log('height', r.value);
resolve()
}));
})
.then(() => tello.backward(50))
.then(() => tello.land())
.then(() => tello.stop());
or
const tello = require('./lib/tello');
'use strict';
(async() => {
// Start the engine
await tello.start();
await tello.startStream();
await tello.startTelemetry({});
await tello.takeoff();
// Read the battery status
console.log('battery', (await tello.get('bat')).value, '%');
// Go up
await tello.up(50);
// Perform a forward flip
await tello.flip('f');
// Go forward
await tello.forward(50);
await tello.right(20);
// Read the height
console.log('height', (await tello.get('h')).value, 'cm');
// Go backward
await tello.backward(100);
await tello.rotateCW(360);
// Finally land
await tello.land();
await tello.stopTelemetry();
await tello.stopStream();
// And then shut down the engine
})().then(() => tello.stop());
Name | Unit | Description |
---|---|---|
h | cm | height |
baro | cm | barometer |
tof | cm | to floor distance |
templ | °C | min temperature |
temph | °C | max temperature |
pitch | ° | attitude pitch |
roll | ° | attitude roll |
yaw | ° | attitude yaw |
agx | 0.001g | acceleration x |
agy | 0.001g | acceleration y |
agz | 0.001g | acceleration z |
vgx | cm/s | speed x |
vgy | cm/s | speed y |
vgz | cm/s | speed z |
bat | % | battery |
FAQs
NodeJS utility for the [Ryze Tello Drone](https://www.ryzerobotics.com/tello)
We found that @giwisoft/ryze-tello-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.