This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-disable class-methods-use-this */ | |
| /* eslint-disable no-return-assign */ | |
| import React, { Component } from 'react' | |
| import request from 'superagent' | |
| import Grid from '@material-ui/core/Grid' | |
| import Card from '@material-ui/core/Card' | |
| import CardContent from '@material-ui/core/CardContent' | |
| import Typography from '@material-ui/core/Typography' | |
| import Button from '@material-ui/core/Button' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import request from 'superagent' | |
| import Grid from '@material-ui/core/Grid' | |
| import Card from '@material-ui/core/Card' | |
| import CardContent from '@material-ui/core/CardContent' | |
| import Typography from '@material-ui/core/Typography' | |
| import Button from '@material-ui/core/Button' | |
| import DeleteIcon from '@material-ui/icons/Delete' | |
| import Layout from '../components/Layout' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // BASE SETUP | |
| // ============================================================================= | |
| // call the packages we need | |
| const express = require('express') | |
| const bodyParser = require('body-parser') | |
| const app = express() | |
| const morgan = require('morgan') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import request from 'superagent' | |
| import Grid from '@material-ui/core/Grid' | |
| import Card from '@material-ui/core/Card' | |
| import CardContent from '@material-ui/core/CardContent' | |
| import Typography from '@material-ui/core/Typography' | |
| import Button from '@material-ui/core/Button' | |
| import DeleteIcon from '@material-ui/icons/Delete' | |
| import Layout from '../components/Layout' | |
| import Delete from '../components/DeleteCard' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.firstinspires.ftc.teamcode.Teleop; | |
| import com.qualcomm.ftccommon.configuration.RobotConfigFile; | |
| import com.qualcomm.hardware.adafruit.AdafruitBNO055IMU; | |
| import com.qualcomm.robotcore.eventloop.opmode.OpMode; | |
| import com.qualcomm.robotcore.eventloop.opmode.TeleOp; | |
| import com.qualcomm.robotcore.hardware.DcMotor; | |
| import com.qualcomm.robotcore.robot.Robot; | |
| import com.qualcomm.robotcore.util.ElapsedTime; | |
| import com.qualcomm.robotcore.util.Range; |
NewerOlder