JamesNewton

Results 40 comments of JamesNewton

Perhaps each joint could be a different color and every 4 circles could increase the intensity of the color giving an idea of the part of the disk that generated...

As much as the parsers are a nightmare, the one for reading "lines" (which can be delimited by anything) is pretty easy to use. see this example: https://github.com/serialport/node-serialport/blob/master/packages/serialport/examples/readline.js You could...

Also, note that the .on('data' callback has a parameter which IS the data, it just needs to be converted to a string. Do not use the .buffer attribute of the...

I couldn't tell if the job stopped first or the robot stopped first; it seems to happen in both at the same time. No errors... it just appears to toss...

In 2.1.7, the following "job" (script) causes the last letter, the "e" to not be written. The arm draws the "-" part of the "e" and then stops, with the...

Good point about memory allocation. How about returning the text of the regexp that matched the captured text (or rather pointers to it) in addion? The goal being to allow...

Expanded on this idea in https://github.com/arduino/Arduino/issues/5308 I think it has greater use with esp 8266

@timkoers A few thoughts: 1. If there is a preferences file, then it doesn't "travel" with the INO file. Better to use, as originally suggested, "meta-comments" in the INO file....

Love it! Is it looking for the exact text "Arduino IDE Board Tool details"? If so, may I suggest something simpler and less likely to be incorrectly entered? E.g. "Settings"...

I think it's important to see that this feature is an IDE, and NOT a compiler feature. It is NOT for CLI users, but for those who have little experience,...