Ron Evans
Ron Evans
Hi, @ringzhz considered yes, but implemented, not yet. An ES6 class based syntax for adaptors and/or drivers would be fantastic. We also need to write some examples of robots using...
As a simple example of a robot with ES6 syntax: ``` javascript import * as Cylon from "cylon" Cylon.api() Cylon.robot({ name: "test", connections: { looper: { adaptor: "loopback" } },...
The place that sort of thing becomes much more useful, IMO, is the creation of adaptors/drivers, where they already are using some inheritance by design.
The place in the robot code where ES6 would really shine, would be using Promises to control the sequence of events, especially those triggered by `every` and `after`. But indeed,...
Hi @iszufu I was checking out the firmware there, and it appears to be a hand-customized version of Firmata. First of all, you can use Cylon.js with Firmata via the...
Tp elaborate on this a little further, please check out the example at https://github.com/hybridgroup/cylon-firmata/blob/master/examples/curieIMU/curieIMU.js which is probably what you are looking for, as far as Cylon.js examples that communicates in...
Hi, @ouricezo Good idea for a step by step to show how to do this We have a Nodecopter event coming up in a few weeks, perhaps one of the...
Hi @promentol if you are running Node.js on your target system, you are ready to go to production now. As far as creating microcontroller firmware, that is currently beyond the...
Hi, @OlivierLD you for sure should check out the built-in API plugins, such as https://github.com/hybridgroup/cylon-api-http This allows client programs to access a REST interface based on cppp.io You can also...
Hi, @3158155 The Bebop is a WiFi device, that acts as an access point by default. To connect to multiple Bebop drones, you would need to change it to infrastructure...