Xavier Seignard

Results 133 comments of Xavier Seignard

Re, You wrote the following for the port configuration: ``` js { baudRate: 57600 } ``` According to what you say it should be: ``` js { baudRate: 115200, dataBits:...

Hello @Freezus I'll try to fix it during next week. Will you be able to test it? Regards

Great. I'll add some options in the cordovarduino plugin. I'll let you know

Mmmm, I guess you face the same issue as @Freezus I should add an option to switch endpoints. And for this I would need your help @sureshkumar-s89 I come back...

Hello @sureshkumar-s89 Could you try to change the jar file in the cordovaduino plugin in your project? With the following https://drive.google.com/open?id=1EDRnA9Q9wHvrNZjmgsx11qAc3rM-0F0n And let me know if it works Regards

Hello @sureshkumar-s89 Could you try with this new version of the jar? https://drive.google.com/open?id=1NPPHRboI3F7wuQHXTYArh1vZelCpPzLC Regards Xavier

Hello @sureshkumar-s89 Due to the async nature of javascript, I would change a bit your code. ```javascript // attach the callback before anything else, to be sure to miss nothing...

Hello, So to be clear, do you get the 2 "Write success" alerts? Beside of that you may need to to use `writeHex` instead of `write`. And I'm not sure...

And? Does it work? I checked your node.js version, and the parser you use relies on new lines, so the code on the readme should do the trick. Regards

You can try something like this: ```javascript var str; serial.registerReadCallback( function success(data){ // decode the received message var view = new Uint8Array(data); if(view.length >= 1) { for(var i=0; i <...