You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make a web application which manages AR drones. I want to have multiple clients which can make an account and get data from their drones in browser. Is this posible? Can I identify each drone unique or can i make an array of ardrone clients ( var client = arDrone.createClient(); ) ?
I tried to put ar-drone files on client side( with browserify) but it ended with "dgram.createSocket is not a function" .
I need some opinions. Thank you !!
The text was updated successfully, but these errors were encountered:
Hi. In theory you can have an application that talks to multiple drones. That being said, they will all have to be on the same network in order for the application to be able to talk to them. Depending on your use cases for the application, that might be a problem.
You won't be able to use this library on the client side. The error message you got is because Browsers don't allow JS to do UDP networking, which is needed for talking to AR Drones.
Hello,
I want to make a web application which manages AR drones. I want to have multiple clients which can make an account and get data from their drones in browser. Is this posible? Can I identify each drone unique or can i make an array of ardrone clients ( var client = arDrone.createClient(); ) ?
I tried to put ar-drone files on client side( with browserify) but it ended with "dgram.createSocket is not a function" .
I need some opinions. Thank you !!
The text was updated successfully, but these errors were encountered: