Hey Chief Delphi! does anyone know how to trigger the xbox rumble? in c++... I'm following this page (
http://first.wpi.edu/FRC/roborio/rel...e454c1c7ed ef) and SetRuble(kLeftRumble) is always underlined in red... it would be used to trigger when we are in shooting range... it would be a massive help!
Thanks for your time!
if (stick2.GetRawButton(8) == true)
{
stick2.SetRumble(kLeftRumble, 1);
}
else
{
stick2.SetRumble(kLeftRumble, 0);
}