Hello Forum, we are a relativley experienced team but this is my first time programming with windriver. I have previous experience in C++.
Anyways, I've written code for the solenoids to extend when a button on the controller is pressed. Unfortunatley, when the corresponding button is pressed, nothing happens. I don't have the code infront of my now, but this is about how it looks:
Code:
if(controller.GetRawButton(1))
solenoidName.Set(solenoidName.kForward);
else
solenoidName.Set(kOff);
The code compiles and builds without any warnings or errors. The cables are plugged in to their correct ports and the code most likely has those ports entered correctly.
Any help would be greatly appreciated as I am very confused.