npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ardrone-webflight

v0.1.1

Published

Extensible remote-control environment for the AR Drone.

Downloads

10

Readme

ardrone-webflight

Pilot the AR.Drone 2.0 directly from your browser. Extend the application with plugins to add features such as video recording, autonomous flight, face recognition, and more. It makes it a very friendly environment to quickly build and experiment with your drone (e.g. during a nodecopter event).

If you encounter an issue; please submit it to the issue tracker! You can also catch up with me (eschnou) on twitter or on #freenode (channel #nodecopter).

This branch is the development branch, there are no packaged release yet.

Built-in plugins

  • video-png stream the video to the browser through static image loading, works great in every browser. Requires ffmpeg installed on your system.

  • video-stream use node-dronestream to stream the raw h264 video feed via webscokets and rendering in Javascript !!! Need a modern browser and CPU.

  • hud to visualize a head-up display with artificial horizon, compass, altimeter, etc. Based on nodecopter-cockpit

  • pilot to control the drone remotely using the keyboard. Based on drone-browser.

  • battery display a battery widget in the top bar.

  • blackbox records all mission data (raw video, navdata, etc.) on the disk.

  • replay replays a mission by injecting the data at the client level. Makes it a very friendly tool to code/test/debug when you can't fly. You need to use video-png for video, not compatible with video-stream yet.

Other plugins

Feel free to add your plugins in this list by editing this page.

  • copterface detect faces and track them by rotating the drone. A port of the copterface project to the webflight environment.

  • traffic displays live Air traffic from ADS-B data as an augmented reality overlay.

  • gamepad controls the drone with a gamepad.

  • tracker track pixels on the videostream by clicking on them.

Install

WebFlight requires a recent nodejs (built and tested with node > 0.10) as well as npm and bower for dependency management.

In order to use the video-png plugin, you also need ffmpeg installed on your system.

git clone https://github.com/eschnou/ardrone-webflight.git
cd ardrone-webflight
npm install
bower install

Usage

  1. Copy the config.js.sample to config.js and edit to select your plugins
  2. Connect to the drone's wifi
  3. Run node app.js
  4. Point your browser to http://localhost:3000/

Controlling the drone

If you have enabled the pilot plugin, you can fly the drone with the following keys. You can define your keyboard in the config file. In the plugin, azerty and qwerty keyboards are defined. Feel free to define others.

Use z, s, q, d to move front, back and sideways. Use your cursors to go up/down or turn clockwise/counter clockwise. Use t to takeoff and l for landing.

Use the tab key to toggle acceleration speed slow/fast.

Use the f key to perform a flip in the current direction of movement.

Record a mission

Just press the r to start recording. A popup alers you when the recording starts. Press r again to stop. Each mission is bundled in its own folder.

Adding your own plugin

There is no tutorial yet, in the meanwhile, just have a look at the built in plugins, it is faily straightforward.

Thanks

This work is based on the integration of nodecopter-cockpit and drone-browser, refactored in a plugin architecture. Thanks to @bkw and @functino for sharing! Also a big thank you to @felixge for his node-ar-drone library which pushed me into buying a drone and become crazy about these little flying robots!

License

The MIT License

Copyright (c) 2013 by the AUTHORS

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.