|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
motor controller error
Hey, programmer here (using Labview), we have been having some problems with the motor controllers on our robot. I have programmed a button to make a motor go forward. We know that the motor controller works because when we used it for the regular drive it turned red and green as it should. When I use the button to control a motor however the motor controller rapidly flashes red and orange when the button is not in use. When I push the button it flashes green red and orange. I know the code is right because I have used two separate versions, one from chief delphi and one from NI.
Can anyone please help??? ![]() |
|
#2
|
|||||
|
|||||
|
Re: motor controller error
If the code were right, it would be working.
![]() Show us what you're doing. Oh, and tell us how things are wired so we can rule out electrical problems. |
|
#3
|
|||
|
|||
|
Re: motor controller error
okay here is the code. It is copied as best I can from NI's FIRST forum. The electronics is the same as last years, and that worked perfectly. We haven't had time to rework the electronics board yet.
|
|
#4
|
|||||
|
|||||
|
Re: motor controller error
I see your problem.
You are opening and closing the motor in teleop.vi This code does not contain the main loop; you must open the motor in Begin.vi, save it as a refnum, then get the refnum in Teleop.vi, use it, and leave it. If you want to be nice and close it, then get the refnum and close it in Finish.vi |
|
#5
|
|||||
|
|||||
|
Re: motor controller error
Quote:
The LabVIEW examples are typically set up as an Open, fed into a While, with a Close after the While. That's fine for a standalone example, but it isn't how the full robot code is structured. The robot project should have all the Opens put in the Begin vi, with each resulting reference fed into a registry Set vi. Everything inside the example's While should go in the Teleop vi, which you might think of as having an implied While around it. Use a registry Get in Teleop instead of another Open; you can see how that's done with the existing references. Put each Close from the example in the Finish vi, again using the existing code as a pattern. |
|
#6
|
|||
|
|||
|
Re: motor controller error
Yeah, opening everything in Begin.vi fixed everything. Thanks everyone.
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Cheap motor controller | dpeterson3 | Electrical | 15 | 17-06-2009 17:42 |
| Motor speed sensing with the Jaguar motor controller? | mminutto | FRC Control System | 5 | 13-01-2009 18:13 |
| Motor Controller | RoarRoar | Motors | 4 | 24-01-2008 21:32 |
| purchase motor controller | wkethman | Electrical | 7 | 09-01-2006 09:16 |
| Program error after controller reset | randomperson | Programming | 6 | 04-01-2005 23:31 |