glad it worked, at least the system commands.
I've tried getting arduino and volume control to work together with a proximity sensor. I ended up just 'easing' the value. So for example I get 1 from arduino and the volume is at 5, it gradualy goes to 1 in OF, worked slow but fine. Not super precise as you can see
new_volume = (new_volume * 0.75) + (old_volume * 0.25);
Please let us know how you do it in the end, since it's useful and interesting to know.