Skip to content

Instantly share code, notes, and snippets.

@acetousk
Last active January 27, 2019 22:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acetousk/b39129e48a1308f032930260f963c316 to your computer and use it in GitHub Desktop.
Save acetousk/b39129e48a1308f032930260f963c316 to your computer and use it in GitHub Desktop.
72832S Potatehoes Directory
//
// Created by jonesdav004 on 1/23/2019
//
#ifndef POTATOES_API_H
#define POTATOES_API_H
#endif //POTATOES_API_H
/** @file APIh
* @brief Provides the high-level user functionality intended for use by typical VEX Cortex
* programmers
*
* This file should be included for you in the predefined stubs in each new VEX Cortex PROS
* project through the inclusion of "mainh" In any new C source file, it is advisable to
* include mainh instead of referencing APIh by name, to better handle any nomenclature
* changes to this file or its contents
*
* Copyright (c) 2011-2018, Purdue University ACM SIGBots
* All rights reserved
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v 20 If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozillaorg/MPL/20/
*
* PROS contains FreeRTOS (http://wwwfreertosorg) whose source code may be
* obtained from http://sourceforgenet/projects/freertos/files/ or on request
*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------- 72832S variable definitions -----------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
int intake;
int right;
int left;
int puncher;
int one;
int two;
int three;
int four;
int five;
int six;
int seven;
int eight;
int nine;
int ten;
int autonRun;
//auton cutoffs
int cutoffs[] = {-4096, -2048, 0, 2048, 4096};
//auton reading potentionmeters
int val1 = SensorValue[posPotent];
int val2 = SensorValue[progPotent];
bool driveReverse = false;
string mainBattery, backupBattery;
int leftEnc=SensorValue[leftEncoder]*-1;
int rightEnc=SensorValue[rightEncoder];
int give=45;
int maxVal=127;
int minVal=-127;
int zeroed=0;
int equals=1;
int minus=2;
int plus=3;
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** --------------------- 72832S global functions -------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
void delayFunc(int time){
wait1Msec(time);
}
void motorRefresh() {
right *= -1;
one = intake;
two = left;
three = left;
four = left;
five = right;
six = right;
seven = right;
eight = 0;//unused
nine = puncher;
ten = intake;
}
void motorVarSet(){
motor[port1]=one;
motor[port2]=two;
motor[port3]=three;
motor[port4]=four;
motor[port5]=five;
motor[port6]=six;
motor[port7]=seven;
motor[port8]=eight;
motor[port9]=nine;
motor[port10]=ten;
}
void motorChange(int var, int change = 0, int val = 0) {
if (change > 3)
else
if (change < 0)
else
if (change == 0)
var = 0;
else if (change == 1) {
if (val > maxVal)
else
if (val < minVal)
else
{
var = val;
}
}
if (change == 2) {
if (val > 0)
else
if ((var - val) < minVal)
else
{
var -= val;
}
}
if (change == 3) {
if (val > 0)
else
if ((var + val) > maxVal)
else
var += val;
}
}
void resetEncoders() {
SensorValue[leftEncoder] = 0;
SensorValue[rightEncoder] = 0;
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ----------------- 72832S initialization functions ---------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
void clearLCD() {
clearLCDLine(0);
clearLCDLine(1);
}
//void lcd display voltage
void lcdBattery() {
clearLCD();
//Display the Primary Robot battery voltage
displayLCDString(0, 0, "Primary: ");
sprintf(mainBattery, "%12f%c", nImmediateBatteryLevel / 10000, 'V'); //Build the value to be displayed
displayNextLCDString(mainBattery);
//Display the Backup battery voltage
displayLCDString(1, 0, "Backup: ");
sprintf(backupBattery, "%12f%c", BackupBatteryLevel / 10000, 'V'); //Build the value to be displayed
displayNextLCDString(backupBattery);
//Short delay for the LCD refresh rate
wait1Msec(100);
}
void init() {
//auton menu
if (val1 >= cutoffs[0] && val1 < cutoffs[1]) {
if (val2 >= cutoffs[0] && val2 < cutoffs[1])
autonRun = 0;
else if (val2 >= cutoffs[1] && val2 < cutoffs[2])
autonRun = 1;
else if (val2 >= cutoffs[2] && val2 < cutoffs[3])
autonRun = 2;
else if (val2 >= cutoffs[3] && val2 < cutoffs[4])
autonRun = 3;
} else if (val1 >= cutoffs[1] && val1 < cutoffs[2]) {
if (val2 >= cutoffs[0] && val2 < cutoffs[1])
autonRun = 4;
else if (val2 >= cutoffs[1] && val2 < cutoffs[2])
autonRun = 5;
else if (val2 >= cutoffs[2] && val2 < cutoffs[3])
autonRun = 6;
else if (val2 >= cutoffs[3] && val2 < cutoffs[4])
autonRun = 7;
} else if (val1 >= cutoffs[2] && val1 < cutoffs[3]) {
if (val2 >= cutoffs[0] && val2 < cutoffs[1])
autonRun = 8;
else if (val2 >= cutoffs[1] && val2 < cutoffs[2])
autonRun = 9;
else if (val2 >= cutoffs[2] && val2 < cutoffs[3])
autonRun = 10;
else if (val2 >= cutoffs[3] && val2 < cutoffs[4])
autonRun = 11;
} else if (val1 >= cutoffs[3] && val1 < cutoffs[4]) {
if (val2 >= cutoffs[0] && val2 < cutoffs[1])
autonRun = 12;
else if (val2 >= cutoffs[1] && val2 < cutoffs[2])
autonRun = 13;
else if (val2 >= cutoffs[2] && val2 < cutoffs[3])
autonRun = 14;
else if (val2 >= cutoffs[3] && val2 < cutoffs[4])
autonRun = 15;
}else{
autonRun = -1;
}
resetEncoders();
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------- 72832S autonomous functions -----------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
task puncherOn() {
while (true)
puncher = 127;
}
task puncherOff() {
while (true)
puncher = 0;
}
task intakeOn() {
while (true)
intake = 127;
}
task intakeOff() {
while (true)
intake = 0;
}
void punch() {
//puncher on
startTask(puncherOn);
delayFunc(2000);
stopTask(puncherOn);
startTask(puncherOff);
stopTask(puncherOff);
}
void striaghtForward(int modifier){
if(leftEnc-give>rightEnc){
motorChange(left,minus,modifier);
}else if(leftEnc<rightEnc-give){
motorChange(right,minus,modifier);
}else if((-give<rightEnc-leftEnc) && (rightEnc-leftEnc<give)){
motorChange(left,equals,minVal);
motorChange(right,equals,minVal);
}
}
void straightBackward(int modifier){
if(leftEnc-give>rightEnc){
motorChange(left,plus,modifier);
}else if(leftEnc<rightEnc-give){
motorChange(right,plus,modifier);
}else if(-give<rightEnc-leftEnc && rightEnc-leftEnc<give){
motorChange(left,equals,minVal);
motorChange(right,equals,minVal);
}
}
void reqValueStraight(int val){
int diff=val-leftEnc;
int diffNeg=val+leftEnc;
if(val>0){
if(diff >=1800){
striaghtForward(15);
maxVal=90;
}else if(diff>=360){
straightForward(3);
maxVal=60;
}
}
else if(val<0){
if(diffNeg <=-1800){
straightBackward(15);
maxVal=90;
}else if(diffNeg<=-360){
straightBackward(3);
maxVal=60;
}
}
}
//auton
void autonFront() {
//1200 from place to flag or to alliance park
//2000 from place to center
punch();
//intake on
startTask(intakeOn);
reqValueStraight(1100);
//intake stop
stopTask(intakeOn);
startTask(intakeOff);
stopTask(intakeOff);
}
//auton
void autonBack() {
//intake on
startTask(intakeOn);
reqValueStraight(1100);
//intake stop
stopTask(intakeOn);
startTask(intakeOff);
stopTask(intakeOff);
}
void autonRedFrontFirst() {
auton();
}
void autonRedBackFirst{
autonBack();
}
void autonBlueFrontFirst{
auton();
}
void autonBlueBackFirst{
auton();
}
void autonRedFrontSecond() {
auton();
}
void autonRedBackSecond{
auton();
}
void autonBlueFrontSecond{
auton();
}
void autonBlueBackSecond{
auton();
}
void autonRedFrontThird() {
auton();
}
void autonRedBackThird{
auton();
}
void autonBlueFrontThird{
auton();
}
void autonBlueBackThird{
auton();
}
void autonRedFrontFourth() {
auton();
}
void autonRedBackFourth{
auton();
}
void autonBlueFrontFourth{
auton();
}
void autonBlueBackFourth{
auton();
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------- 72832S opcontrol functions -----------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
void opcontrol(){
left = vexRT[Ch3];
right = vexRT[Ch2];
// Puncher program
if (vexRT[Btn6U] == 1) {
motorChange(puncher,1,127);
} else {
motorChange(puncher,0,0);
}
//reverse drive so that you can easily flip caps (find in functions)
if (vexRT[Btn8D] == 1) {
if (!driveReverse) {waitUntil(vexRT[Btn8D]== 0);
driveReverse = true;
delayFunc(500);
} else if (driveReverse) {
waitUntil(vexRT[Btn8D]== 0);
driveReverse = false;
delayFunc(500);
}
}
// Intake program
if (vexRT[Btn5U] == 1) {
motorChange(intake,1,127);
} else if (vexRT[Btn6D] == 1) {
motorChange(intake,1,-127);
} else {
motorChange(intake,0,0);
}
motorRefresh();
motorVarSet();
}
#pragma config(Sensor, in1, posPotent, sensorPotentiometer)
#pragma config(Sensor, in2, progPotent, sensorPotentiometer)
#pragma config(Sensor, dgtl1, rightEncoder, sensorQuadEncoder)
#pragma config(Sensor, dgtl3, leftEncoder, sensorQuadEncoder)
#pragma config(Motor, port1, intake1, tmotorVex393TurboSpeed_HBridge, openLoop)
#pragma config(Motor, port2, left1, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port3, left2, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port4, left3, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port5, right3, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port6, right2, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port7, right1, tmotorVex393HighSpeed_MC29, openLoop)
#pragma config(Motor, port8, noUse, tmotorNone, openLoop)
#pragma config(Motor, port9, puncherMain, tmotorVex393_MC29, openLoop)
#pragma config(Motor, port10, intake2, tmotorVex393TurboSpeed_HBridge, openLoop)
//*!!Code automatically generated by 'ROBOTC' configuration wizard !!*//
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** --------------------- 72832S competition ctrl -------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
// Competition Control and Duration Settings
#pragma competitionControl(Competition)
#pragma autonomousDuration(15)
#pragma userControlDuration(105)
#pragma systemFile
/*---------------------------------------------------------------------------*/
/* 9 */
/* Description: Competition template for VEX EDR */
/* */
/*---------------------------------------------------------------------------*/
// This code is for the VEX cortex platform
#pragma platform(VEX2)
// Select Download method as "competition"
#pragma competitionControl(Competition)
// Main competition background code...do not modify!
/*---------------------------------------------------------------------------*/
/* Pre-Autonomous Functions */
/* */
/* You may want to perform some actions before the competition starts. */
/* Do them in the following function. You must return from this function */
/* or the autonomous and usercontrol tasks will not be started. This */
/* function is only called once after the cortex has been powered on and */
/* not every time that the robot is disabled. */
/*---------------------------------------------------------------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ---------------------- 72832S include files ---------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
#include "cleanerDirectory/jpearman/SmartMotorLib.c"
#include "Vex_Competition_Includes.c" // Main competition background code...do not modify!
#include "include/API.h"
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------------ 72832S pre auton -----------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
void pre_auton() {
// Set bStopTasksBetweenModes to false if you want to keep user created tasks
// running between Autonomous and Driver controlled modes. You will need to
// manage all user created tasks if set to false.
init();
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------- 72832S autonomous functions -----------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
task autonomous() {
if (autonRun == 0) {
auton0();
} else if (autonRun == 1) {
auton1();
} else if (autonRun == 2) {
auton2();
} else if (autonRun == 3) {
auton3();
} else if (autonRun == 4) {
auton4();
} else if (autonRun == 5) {
auton5();
} else if (autonRun == 6) {
auton6();
} else if (autonRun == 7) {
auton7();
} else if (autonRun == 8) {
auton8();
} else if (autonRun == 9) {
auton9();
} else if (autonRun == 10) {
auton10();
} else if (autonRun == 11) {
auton11();
} else if (autonRun == 12) {
auton12();
} else if (autonRun == 13) {
auton13();
} else if (autonRun == 14) {
auton14();
} else if (autonRun == 15) {
auton15();
} else {
auton_1();
}
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/** ------------------- 72832S opcontrol functions ------------------*/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
task usercontrol() {
//display battery voltage
lcdBattery();
bLCDBacklight = true; // Turn on LCD Backlight
while (true) {
opcontrol();
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment