I was trying to set up my Arduino Uno R3 for a project. Having followed the setup guide, with a simple code snippet.
const johnnyFive = require('johnny-five')
const board = new johnnyFive.Board();
board.on('ready', () =>{
console.log('board is ready');
})
Sadly, Johnny Five can't find my device on this machine, and is giving me an error No connected device found. I tried to find out whether this was an OS specific issue, and running the same code snippet on my macOS Big Sur Macbook worked fine no problem. Note that I have uploaded standardFirmataPlus to the board, and did not modify this between, and under both OS the Arduino IDE reports the device as being available and I can upload sketches from either devices.
I was trying to set up my Arduino Uno R3 for a project. Having followed the setup guide, with a simple code snippet.
Sadly, Johnny Five can't find my device on this machine, and is giving me an error
No connected device found. I tried to find out whether this was an OS specific issue, and running the same code snippet on my macOS Big Sur Macbook worked fine no problem. Note that I have uploaded standardFirmataPlus to the board, and did not modify this between, and under both OS the Arduino IDE reports the device as being available and I can upload sketches from either devices.