|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
I didn't say to set the value to zero when limit was pressed. One limit switch forces positive motor input to zero but leaves negative alone, the other forces negative and leaves positive alone.
To handle the button toggles, I'd add a state variable. The buttons update the state variable, then the state variable selects positive, zero, or negative speed, then the limit switches pin as described above. The state variable obviously needs to be in either a shift register, a local, or something that maintains state data. Greg McKaskle |
|
#2
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
Quote:
|
|
#3
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
Hmm, is there anyway to set something just once. Like let's say the limit switch becoems true, is there a way to set motor speed to 0, ONCE, and not continuously locking up the device.
edit: @DarkOrono, I can't hold it. I need to be able to press and go. I cannot have it have the need to be held. Last edited by Pasha : 05-02-2009 at 15:45. |
|
#4
|
|||||
|
|||||
|
Re: Limit Switchers Logic Problem
What you want to do is:
- If no limit switches are pressed, do whatever the joystick says. - if left limit switch is pressed, two cases: a.If joystick wants to move lazy susan left, keep motors at 0. b.If joystick wants to not move or move right(or the "else" case for a.), do as joystick wants. - if right limit siwthc is pressed, two cases: a.If joystick wants to move lazy susan right, keep motors at 0. b.If joystick wants to not move or move left(or the "else" case for a.), do as joystick wants. - if both limit switches are pressed ( ), stop motors - sirious error! (or someone is cheating )There's a way where you can put all of these in one big case structe, and in each case ("true" and "false") have another case structre with "true" or "false". |
|
#5
|
||||
|
||||
|
Re: Limit Switchers Logic Problem
Quote:
|
|
#6
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
What is button latching?
Also if you guys know how to just run a piece of code once, when a limit is pressed instead of continuously that would help. |
|
#7
|
||||
|
||||
|
Re: Limit Switchers Logic Problem
OK so um heres the vis, but the vi is not complete to be able to use as a sub vi you have to do that wire thing for the block icon. Anyway the way i programmed it was at home so its not part of the robot coding, so using the switches on the front panel it'll simulate the desired affect.
Now to briefly describe wats going on... ( I don't have much time right now since i have 2 tests tommorow to study for, however if u have any problems just tell me and i'll reply later on) okay so for the Toggle program What I did was simply put a variable that is set to 1 while the button is pressed and then if pressed again it'll change to 0. So if the variable is 1 it'll do something and if the variable is 0 it'll do another task. Now if u imagine wat is going on, if the button is pressed the value is 1, so every millisecond it is pressed it'll continueally set it to 1 and than 0 than 1 than 0. To stop this i put a delay, meaning once u press the button u have to let it go after a certain time. Anyway to observe this, just like a joystick button, on the front panel when u run continuesilly you have to press the trigger and then press the trigger again so that the button simulates the joystick button being let go. Hopefully you can understand wat i said, so basically when u press the trigger u have to press it again right away so that u let go of the button. Now if done correctly u will see the motor value changing from 127 to 0 every time u do so. But there is a limitation to the programming, you must not hold the joystick button for any longer than the delay, if the button is kept held it will continually toggling between the 2 instructions. Now with regards to the limit switches, there is a way around this problem. So with the gateway vi... First a few things must be explained, for our mechanism we wanted a gateway to rise and fall so that the balls can be rolled out, and we wanted one button to do it. So for your purposes there is alot u'd need to change since u would want 3 different buttons. But first thing u need to understand is that if no limit switches are tripped than they will continually provide a True statement. So when u run continuesilly on the front panel u must set upper and lower limit on true. Now when the program runs, simply press the trigger and once again to simulate pressing a button. wat u will see is that the motor speed will be positive simulating that its raising. Now if u imagine the gateway touching a limit switch, the upper limit switch will be turned into false, so on the front panel u have to turn it off manually. Once that becomes tripped u will see the motor speed set to 0. Now if you were to press the trigger button again and once more to simulate the joystick button, you will see the motor speed will be negative which simulates the gateway moving downwards. Now if u imagine when the gate moves down, it will let go of the upper limit switch and so u must turn the upper limit back on manually, and so both limits will be true and than if u imagine as it continues to lower it will trigger the lower limit. So if u manually turn the lower limit to false u will see again the motor speed will become 0. you can continually do this and you will see you will get the desired affect so long as u can simulate wat is happening. Now to explain wat i meant of going around the delay problem, If you look at the coding I've set it so that once the trigger is turned on it will set the a variable to a value. Now i put an if statement if that variable is that value than it will do a task. The solution is that at the END of the task I reset the variable back to 0. This way instead of pressing the trigger again to set it to 0, it will be set back to 0 when the instructions are done. I really hope u can understand what I've said, and I'm sure this is wat your looking for just if you cud get the front panel to work. The rest of the stuff for the gateway vi i can explain later if you want(like the block diagram stuff, because I don't really understand it very well, I started out well and kept getting errors, after alot of debugging it worked but I had to add a whole lot to make it work. So as a whole i cannot explain but parts i can. |
|
#8
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
Alright thanks a lot guys. A lot of your ideas helped us get stuff working. Your vis helped too with the range and conerce ideas. Eventually we got it working with the motors, now we just have to see it reacts on the robot.
Thanks again for your help, and input. |
|
#9
|
|||
|
|||
|
Re: Limit Switchers Logic Problem
I'll describe it again. One limit switch allows positive, but negatives are disallowed and are forced to zero. This means that once a limit switch goes true, it disallows further movement in one direct, but allows movement to unpress the limit.
Greg McKaskle |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Fuzzy Logic? | skidmarks | NI LabVIEW | 1 | 25-01-2009 09:36 |
| Limit Switch Problem | Boydean | Programming | 3 | 13-02-2008 16:32 |
| Using a limit switch to limit motion | ManicMechanic | Programming | 16 | 20-12-2007 00:54 |
| Logic Question | aubinhick990 | Website Design/Showcase | 2 | 11-03-2006 16:45 |
| Why I hate Logic | EnderofDragon | Chit-Chat | 2 | 19-02-2002 21:02 |