Giter VIP home page Giter VIP logo

2866's Introduction

2866

Team 2866's repository during the 2017 - 2018 FTC season.

2866's People

Contributors

magneticflux- avatar skeltonn avatar thekrazystew avatar fudocode avatar tomeng70 avatar prockallsyms avatar ianmckeown avatar ftctechnh avatar nessixtyfive avatar colllll avatar greg-bahr avatar iamwood avatar ovec8hkin avatar www avatar gitter-badger avatar

Stargazers

 avatar Nick McMaster avatar Benjamin Broce avatar Yasaman (Yasi) Mostafavi  avatar  avatar  avatar  avatar

Watchers

James Cloos avatar  avatar Kyle Murphy avatar  avatar  avatar  avatar  avatar Yasaman (Yasi) Mostafavi  avatar Michael Pieper avatar  avatar Mr. B avatar  avatar  avatar Nick McMaster avatar  avatar

2866's Issues

Driving straight using gyro

Suggested modification to end of Drive moveInches function to use gyro to drive straight:

        this.waitForNextHardwareCycle();

        this.linearOpMode.telemetry.addData(TAG, "Started encoder move...");
        while (this.linearOpMode.opModeIsActive() && Math.abs(motorRight.getCurrentPosition() - targetPositionRight) + Math.abs(motorLeft.getCurrentPosition() - targetPositionLeft) > Config.ENCODER_MOVEMENT_TOLERANCE) {
            this.waitForNextHardwareCycle();
        }
        linearOpMode.telemetry.addData(TAG, "Finished encoder move...");

        this.stopDriveMotors();

to

        this.waitForNextHardwareCycle();

/// NEW
        constant double POWER_SCALE = 0.02;    // 2 percent power per degree of error
        int target_angle = gyro.getIntegratedZValue();
        int delta_angle;
/// end NEW

        this.linearOpMode.telemetry.addData(TAG, "Started encoder move...");
        while (this.linearOpMode.opModeIsActive() && Math.abs(motorRight.getCurrentPosition() - targetPositionRight) + Math.abs(motorLeft.getCurrentPosition() - targetPositionLeft) > Config.ENCODER_MOVEMENT_TOLERANCE) {

/// NEW
            delta_angle = gyro.getIntegratedZValue() - target_angle;

            if (delta_angle > 10) {
              delta_angle = 10;
            }

            motorLeft.setPower(power - delta_angle * POWER_SCALE);
            motorRight.setPower(power + delta_angle * POWER_SCALE);
/// end NEW

            this.waitForNextHardwareCycle();
        }
        linearOpMode.telemetry.addData(TAG, "Finished encoder move...");

        this.stopDriveMotors();

Restructure

Replace libs with Maven coordinates, add Common-Code dependency, add in ftc_app code again.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.