|
Double Solenoid error in Eclipse
Hello! We are currently trying to set up a double acting solenoid in Eclipse.
First we create a DoubleSolenoid called Solenoid with the following line:
DoubleSolenoid Solenoid;
Next we construct it:
Solenoid(0,1);
Next, we try to set the Solenoid to forward. This is where the problem occurs. We are told that there is no member named "Forward". We have tried various ways of calling "set". Currently, we are using:
Solenoid.Set(DoubleSolenoid::kForward);
|