-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'ready' never fired #6
Comments
Sorry, I've used an older version of the Arduino IDE. Seems the StandardFirmata example has change between the versions. Now it works fine. |
Awesome I should note somewhere that I frequently have to run the program, control-C, then run again to get the serial line free between each program run. |
I'm having the same issue, but I'm using an up to date version of Arduino IDE (1.0.5). Do you have any troubleshooting advice? 1380785466622 Board Connecting... |
Is this a regular Arduino UNO? Did you install Johnny-Five very recently? (There were updates to node-serialport a few days ago) |
Yes, it is a regular Arduino UNO. I installed Johnny-Five for the first time yesterday (10/2/2013). |
Can you try this: git clone https://github.com/rwaldron/johnny-five.git;
cd johnny-five;
npm install && npm install serialport@1.1.3; |
Nothing in windows was changed in the latest release. |
This worked on Ubuntu. Blinking Lights! Great success! npm install johnny-five && npm install serialport@1.2.2 This didn't work on Windows. Same issue as I originally stated. When I run the following get 7 (yellow) warnings during the install (no errors). Please let me know if you would like more info. git clone https://github.com/rwaldron/johnny-five.git |
I'm also running into this issue. board.on("ready") never fires. :-( |
As of yesterday there were still issues with serialport. Please use On Friday, October 11, 2013, hwiguna wrote:
|
When I start the simple example from the README the callback on
ready
is never called. It seems to connect to the board as it prints:I'm adding a simple
console.log()
into the callback but it was nerver printed.I'm using an Arduino Duemilanove
The text was updated successfully, but these errors were encountered: