ARC Pro

Upgrade to ARC Pro

Become a Synthiam ARC Pro subscriber to unleash the power of easy and powerful robot programming

PRO
Synthiam
#17  

Just used your plugin - i like the color change. I have a suggestion for the RGB values.

Currently they are specified in a string...


ControlCommand("EZ Chart", SetSeriesColor, 0, "50,50,50")

It would increase versatility if each color was specified separately like so...


ControlCommand("EZ Chart", SetSeriesColor, 0, 50, 50, 50)

Because then you could do this...


repeat($red, 0, 100, 10)

ControlCommand("EZ Chart", SetSeriesValue, "Series1", $red)

ControlCommand("EZ Chart", SetSeriesColor, 0, $red, 10, 10)

sleep(100)

endrepeat

#18  

Great, idea. For some strange reason I think I took the more obtuse way doing that by using a string. Will do for next release.

PRO
Synthiam
#19  

awesome - looking forward to it! I've been using the graph control for visualization.

Any idea if you will be making a historical line graph in the future?

#20  

Nice work @leversofpower.... I can use this as a graphical monitor for my ezb and roomba battery voltages.... It would also be awesome to use if you had 3 or 4 pings across the front or around your robot in order to monitor various distances....