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 started with RCSwitchFirmata, could not get it work. I think I should test ConfigurableFirmata first. So I upload ConfigurableFirmata to my UNO, and use a client code with firmata lib like below:
`var firmata = require('firmata');
var board = new firmata.Board('COM4', function () {
console.log('ready!')
});
board.on("ready", function() {
const a = 6;
const b = 7;
.....
`
neither ready above fires. But if I try it with the StandardFirmata code, it works fine.
Any idea? Is there special client side code for ConfigurableFirmata ?
Thanks
The text was updated successfully, but these errors were encountered:
Which classes did you include in your ConfigurableFirmata sketch file? If you include too many it's possible there is not enough memory on the Uno and the program will crash silently.
I started with RCSwitchFirmata, could not get it work. I think I should test ConfigurableFirmata first. So I upload ConfigurableFirmata to my UNO, and use a client code with firmata lib like below:
`var firmata = require('firmata');
var board = new firmata.Board('COM4', function () {
console.log('ready!')
});
board.on("ready", function() {
const a = 6;
const b = 7;
.....
`
neither ready above fires. But if I try it with the StandardFirmata code, it works fine.
Any idea? Is there special client side code for ConfigurableFirmata ?
Thanks
The text was updated successfully, but these errors were encountered: