![]() |
understanding position control with encoders
Greetings I am trying to program for a shooter that has a variable tilt from anywhere between 0 and 80 degrees. we are using a talonSRX with an encoder on it (http://www.vexrobotics.com/217-5046.html). My question is how exactly does position control work? We have set the feedback device to Quad Encoder and changed the control mode to position. From there we set the encoder counts per rev to many numbers currently 45, set the encoder position to 0. Now here is where the confusing part comes in Do I need to use SetPID and if so how do I use it. Is there a way to set the max velocity or slow the motor down? Is there any good way to calibrate the code so that I can set(10) and get 10 degrees? Thanks.
|
Re: understanding position control with encoders
Quote:
Also these: http://link.vex.com/vexpro/pdf/217-5046-instructions http://link.vex.com/vexpro/pdf/217-5049-user-guide |
Re: understanding position control with encoders
What you need to do is create a command that initializes the talon's srx PID. Since you have it in position mode, the setPoint is going to be the distance you want the arm to go to. You will need to set a constant that relates degrees to ticks. You can use the configEncoderCodesPerRev() to do so (this is assuming the encoders are connected directly to the talon srx). We do something similar. https://github.com/FRC125/NU16/blob/...sitionCmd.java
|
Re: understanding position control with encoders
Quote:
The key challenge here (which it appears you've identified) is that you need a consistent zero position in order for the encoder to work reliably (eg, if you want to say "go to X"). Often, this is a consistent starting position (where the shooter is at rest) or you can use a limit switch to identify the position more precisely. Once this is good... Then you have to do two things. First, you need to set the P, I, D parameters (setPID). You can either call setPID, or you can set it via the web dashboard. Often, you can get by with just a P (search for forums for more about PID tuning). I usually just set P to an arbitrary number (1), and keep incrementing it until it starts moving, then I adjust the value using binary search until it gets to where the value is reliable. There are more precise ways to do this, the TalonSRX reference manual has some examples. For limiting the speed of the arm, check out the closed loop ramp rate, which can be set via the web dashboard or via setCloseLoopRampRate. There are a bunch of code examples that CTRE provides, I recommend checking them out: https://github.com/CrossTheRoadElec/FRC-Examples . Additionally, the TalonSRX softwware reference manual has a lot of good explanation+documentation available. |
Re: understanding position control with encoders
1 Attachment(s)
Quote:
|
Re: understanding position control with encoders
Quote:
|
Re: understanding position control with encoders
Oh. Ha. Ok. Yes, it is an absolute encoder. Ignore what I said then. As I sadi above, didn't realize that it existed, so when I saw 'encoder' without absolute I made assumptions.
Kids, this is why you don't assume. Otherwise, Ether points out your follies. :) |
Re: understanding position control with encoders
Quote:
|
| All times are GMT -5. The time now is 09:52. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi