Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   C/C++ (http://www.chiefdelphi.com/forums/forumdisplay.php?f=183)
-   -   Trouble getting encoder output to work with analog trigger sources (http://www.chiefdelphi.com/forums/showthread.php?t=134340)

vamfun 11-02-2015 05:10

Trouble getting encoder output to work with analog trigger sources
 
Hi all,
We are using two analog ports on RoboRio to read a grey hill encoder. We set up some analog triggers which tested ok by themselves. When we try to use them as DigitalSource objects for the WPI encoder class it doesn't seem to work.

Does anyone have some C++ code examples of driving encoder software with analog triggers?

We tried something like the following without success.

public class Robot extends IterativeRobot {
...
AnalogInput input1 = new AnalogInput(1);
AnalogInput input2 = new AnalogInput(2);

AnalogTrigger Trigger1 = new AnalogTrigger(input1);
AnalogTrigger Trigger2 = new AnalogTrigger(input2);

AnalogTriggerOutput source1 = new AnalogTriggerOutput(Trigger1,AnalogTriggerType.kRi singPulse);
AnalogTriggerOutput source2 = new AnalogTriggerOutput(Trigger2,AnalogTriggerType.kRi singPulse);

Encoder enc = new Encoder(source1,source2);

* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
public void robotInit() {


Trigger1.setLimitsVoltage(1.5,3.5);
Trigger2.setLimitsVoltage(1.5,3.5);

/**
* This function is called periodically during operator control
*/
public void teleopPeriodic() {

val = enc.Get();


I know .... this isn't our actual code but its representative.
Any ideas??

GeeTwo 11-02-2015 08:39

Re: Trouble getting encoder output to work with analog trigger sources
 
The encoder class is intended for sensors which send a signal rather frequently, typically 4 times per motor revolution. I'm not familiar with the sensor you're using but this reads like you're planning to use this to keep an item between boundaries. What are you trying to control, and what does it mean when these trigger values are met?

Ether 11-02-2015 11:10

Re: Trouble getting encoder output to work with analog trigger sources
 
Quote:

Originally Posted by vamfun (Post 1441677)
We are using two analog ports on RoboRio to read a grey hill encoder.

Did you mean Grayhill?

What is the part number of that Grayhill encoder?



vamfun 11-02-2015 14:54

Re: Trouble getting encoder output to work with analog trigger sources
 
Quote:

Originally Posted by GeeTwo (Post 1441698)
The encoder class is intended for sensors which send a signal rather frequently, typically 4 times per motor revolution. I'm not familiar with the sensor you're using but this reads like you're planning to use this to keep an item between boundaries. What are you trying to control, and what does it mean when these trigger values are met?

Using it as a lift encoder. We are out of digital ports so we want to create a digital source for the encoder routine using the analog trigger output. The trigger creates a true pulse when the Greyhill output transitions above 3.5v and a low pulse when below 1.5 volts. We were able to use the trigger output to drive a counter successfully so we know its working. Just doesn't seem to work with the encoder class.

vamfun 11-02-2015 14:57

Re: Trouble getting encoder output to work with analog trigger sources
 
Quote:

Originally Posted by Ether (Post 1441769)
Did you mean Grayhill?

What is the part number of that Grayhill encoder?




Hi Ether,
Been a long time. I don't recall the part number, but it is a 256 count. The max pulses per second we expect is around 12000. We are using 3 analog ports so we should have a 167000 sample rate on each a/d port since the RoboRio is capable of 500k hz total.

Ether 11-02-2015 15:10

Re: Trouble getting encoder output to work with analog trigger sources
 
Quote:

Originally Posted by vamfun (Post 1441950)
Hi Ether,
Been a long time.


Yeah, welcome back :-)

You've been gone from CD for what... 2 1/2 years?



All times are GMT -5. The time now is 12:07.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi