Package com.grt192.sensor

Source Code of com.grt192.sensor.GRTGyro

package com.grt192.sensor;

import com.grt192.core.Sensor;
import com.grt192.event.component.GyroEvent;
import com.grt192.event.component.GyroListener;
import edu.wpi.first.wpilibj.AnalogChannel;
import edu.wpi.first.wpilibj.Gyro;
import edu.wpi.first.wpilibj.PIDSource;
import java.util.Vector;

/**
* GRTGyro is a continuously running sensor driver that collects and
* serves data from a single-axis gyro
* @author anand
*/
public class GRTGyro extends Sensor implements PIDSource{

    public static final double SPIKE_THRESHOLD = 1.0;
    public static final double CHANGE_THRESHOLD = .1;
    private Gyro gyro;
    private Vector gyroListeners;
    private boolean firsttime = true;
    private double driftsum = 0;
    private double driftCount = 0;
    private double driftAVG = 0;
    public static double DRIFT_THRESHOLD = 0.5;

    public GRTGyro(int channel, int pollTime, String id) {
        gyro = new Gyro(channel);
        setSleepTime(pollTime);
        setState("Angle", 0.0);
        gyroListeners = new Vector();
        this.id = id;
    }

    public void poll() {
        double previousValue = getState("Angle");
        double angle = gyro.getAngle() * 360.0 / 208.0;
       
//        angle += driftsum;
//        if(Math.abs(angle - previousValue) < DRIFT_THRESHOLD) {
//            driftsum+= previousValue - angle;
//            driftCount++;
//            driftAVG = driftsum / driftCount;
//        } else {
//            driftsum += driftAVG;
//        }

        setState("Angle", angle);


        if (Math.abs(getState("Angle") - previousValue) >= SPIKE_THRESHOLD) {
            notifyGyroSpike();
        }
        if (Math.abs(getState("Angle") - previousValue) >= CHANGE_THRESHOLD) {
            notifyGyroChange();
        }
        notifyGyroListeners();
    }

    protected void notifyGyroSpike() {
        for (int i = 0; i < gyroListeners.size(); i++) {
            ((GyroListener) gyroListeners.elementAt(i)).didAngleSpike(
                    new GyroEvent(this,
                    GyroEvent.DEFAULT,
                    getState("Angle")));
        }
    }

    protected void notifyGyroChange() {
        for (int i = 0; i < gyroListeners.size(); i++) {
            ((GyroListener) gyroListeners.elementAt(i)).didAngleChange(
                    new GyroEvent(this,
                    GyroEvent.DEFAULT,
                    getState("Angle")));
        }
    }

    protected void notifyGyroListeners() {
        for (int i = 0; i < gyroListeners.size(); i++) {
            ((GyroListener) gyroListeners.elementAt(i)).didReceiveAngle(
                    new GyroEvent(this,
                    GyroEvent.DEFAULT,
                    getState("Angle")));
        }
    }

    public Vector getGyroListeners() {
        return gyroListeners;
    }

    public void addGyroListener(GyroListener a) {
        gyroListeners.addElement(a);
    }

    public void removeGyroListener(GyroListener a) {
        gyroListeners.removeElement(a);
    }

    public String toString() {
        return "gyro: " + getState("Angle");
    }

    public double pidGet() {
        //fix asap
        return 0;
    }
   
}
TOP

Related Classes of com.grt192.sensor.GRTGyro

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.