Donovan Buck

Results 130 comments of Donovan Buck

Hi @julianduque This request was spawned by [this conversation](https://github.com/rwaldron/johnny-five/issues/1691) over on the J5 repo. See that for more info.

Never mind. Here's how it can be done: jQuery('#myLayer').data().parallax.layer.setParallax ( xparallax || null, yparallax || null , xorigin || null, yorigin || null); passing null leaves the value unchanged. If...

That makes sense. If they don't explicitly choose a provider or pass in an IO, we assume Digital. If a call is made to a method that requires PWM, we...

Tagging @nebrius and linking to https://github.com/libuv/libuv/pull/379

It doesn't support it yet, but contributions are always welcome. It's a little tricky since it comprises multiple sensors, but there is precedent. I think I'd look at the MPU6050...

That particular error message isn't related to the Arduino code, it's just saying it can't find the node.js module "firmata". That should have been installed when you installed johnny-five so...

These appear to be listeners on network traffic, not on the sensors themselves. I don't work with node-red, but I suspect that for each sensor instance a separate event listener...

There is already a way. When you call stop, after decelerating and stopping firmata will report back from the board with STEPPER_MOVE_COMPLETE and the stepper's position. The board instance will...

I don't think ESP32 support has been added to firmata yet (which is how Johnny-Five would talk to it). Something about no support for analogWrite. It does work with ESP8266...

@Ron1949 It looks like you haven't imported Johnny-Five. Your program should probably start with ```js const five = require("johnny-five"); ``` Note that you need a special build of firmata (with...