Hello all,
I will (hopefully!) be controlling a large A/C motor with an Arduino. I plan on using this VFD:
http://www.factorymation.com/s.nl/it.A/id.193/.f
There's a quick spec sheet for it here:
Look at page 2, lower left corner, for specs regarding the control signal(s).
Basically, I want the motor running all the time, but I want to be able to use a signal from the Arduino to set the frequency. It looks like the VFD wants a 0-10v analog signal on the MVI connection. The schematic shows a 10k pot on that pin to control speed - basically, I want the Arduino to be able to provide that signal.
So, I'm having trouble deciding the best way to implement this. Do I design some sort of circuit to step a PWM pin up to 10v, then filter it to get an analog 0-10v signal? I'd rather not use up a PWM pin, but I suppose that would work. It looks like there's a +10v and GND pin
Or, do I implement some sort of DAC chip? If so, any suggestions? I'm using I2C for several other purposes, so an I2C DAC chip would be nice.
It looks like I could also program some presets and use digital signals to switch between them, but I'd rather have full control from the Arduino.
Has anyone interfaced to a VFD like this before? General thoughts or suggestions?