|
Re: Programming Compressor C++
All you need to do is instantiate a compressor object with the pressure switch and compressor ports, then start it. For example, you might do:
Compressor *compressor;
compressor = new Compressor(1,2);
compressor->Start();
|