![]() |
Using a switch with a victor
I know that the CIM motors must be attached to a victor we want to turn the motor on to a constant speed with a switch instead of using a joystick. I know we did it several years ago by changing the code but it was with the old controller that used BASIC. Can't remember how we did it any pointers would be greatly appreciated.
|
Re: Using a switch with a victor
have an if statement in code that is something like:
if(p1_sw_trig == 1) { pwm04 = 255; } else { pwm04 = 127; } and then it will be on full speed or at neutral and still going through a victor |
Re: Using a switch with a victor
Try something like this:
Code:
if(switch = open){Good luck. **Props to Drew Shapiro (huge white kid with a 'fro) for comming up with this scheme.** - He doesn't like it when I steal his code. |
Re: Using a switch with a victor
Try something like this:
pwm01 = 127 + (p1_sw_trig*127) - (p1_sw_top*127); That way, if p1_sw_trig is pressed, the motor will be full forward (254). If p1_sw_top is pressed, it will go full reverse (0). If by mistake you press both buttons, nothing happens - safe! Gotta love one liners ;) |
| All times are GMT -5. The time now is 01:04. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi