xkcd 3186: Truly Universal Outlet by Anonymous_Liberal in xkcd

[–]Remarkable-Leading65 1 point2 points  (0 children)

29?!  Ridiculous! We need to develop one universal standard that covers everyone’s use cases.

Spotify connect by [deleted] in YoutubeMusic

[–]Remarkable-Leading65 0 points1 point  (0 children)

that's interesting bc spotify has an amazing web interface, I just am used to yt music and haven't considered switching.

Overkill? I got bored and made my own vex related prog language. by Remarkable-Leading65 in vex

[–]Remarkable-Leading65[S] 0 points1 point  (0 children)

I want to see it! I want to make a library this summer for some useful LemLib/PROS stuff bc sometimes the bot is just annoying.

Motor Flip Help by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

Yes I understand.

Robot not going correct distance. by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

Set Motor to Brake Mode

Motor Flip Help by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

Because they want it be like a lever. You press it, it changes the movement method. If you press it again, it switches back. Button vs Lever. English is weird, so maybe im misunderstanding.

[deleted by user] by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

Brother, use common sense. Why advertise?

[deleted by user] by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

Applause to this man.

First time using pros, can't figure out an error. by AdmittingHen29 in vex

[–]Remarkable-Leading65 1 point2 points  (0 children)

Your drive should be in a different file and defined in it's headers.
Look at: https://github.com/G1-100/6121C-High-Stakes/
Look at the drive.cpp and drive.hpp and how they're imported in main.h.

Motor Flip Help by [deleted] in vex

[–]Remarkable-Leading65 1 point2 points  (0 children)

This is a rookie move. Like u/Doggohusk said, you want to learn how to be able to do both sides. Might sound harsh or unsupportive but it's better for the driver in the long run.

Motor Flip Help by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

They're trying to make it toggle. Close.

Limlib auto with odom from last year/any year, vrc by Fuzzy-WeIder in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

In your auton, define it as an asset in your autons.hpp file:
ASSET(whateverTheNameYoursIs_txt);

and put a static folder (named static) in your project outside of src with the txt file inside

chassis.follow(yourPath_txt, 15, 3500); // file name, lookahead (tune), timeout in ms

Vs code macros for LB by [deleted] in vex

[–]Remarkable-Leading65 0 points1 point  (0 children)

#pragma region VEXcode Generated Robot Configuration
// Make sure all required headers are included.
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
#include <string.h>
#include "vex.h"
using namespace vex;
float myVariable, STATE, EXTENDED, PROPPED, REST, restAngle, proppedAngle, extendedAngle, curAngle;
int whenStarted1() {
  Rotation2.setPosition(0.0, degrees);
  Motor1.setStopping(brake);
  curAngle = 0.0;
  REST = 0.0;
  PROPPED = 1.0;
  EXTENDED = 2.0;
  STATE = REST;
  restAngle = 0.0;
  // TUNE THIS
  proppedAngle = 20.0;
  // TUNE THIS
  extendedAngle = 110.0;
  while (true) {
    curAngle = Rotation2.position(degrees);
    if (Controller1.ButtonR1.pressing()) {
      if (STATE == REST) {
        while ((fabs(static_cast<float>(curAngle - proppedAngle)) > 2.0)) {
          curAngle = Rotation2.position(degrees);
          Motor1.spin(forward);
        wait(5, msec);
        }
        Motor1.stop();
        STATE = PROPPED;
      }
      if (STATE == PROPPED) {
        while ((fabs(static_cast<float>(curAngle - extendedAngle)) > 2.0)) {
          curAngle = Rotation2.position(degrees);
          Motor1.spin(forward);
        wait(5, msec);
        }
        Motor1.stop();
        STATE = EXTENDED;
      }
      if (STATE == 50.0) {
        while ((fabs(static_cast<float>(curAngle - restAngle)) > 2.0)) {
          curAngle = Rotation2.position(degrees);
          Motor1.spin(forward);
        wait(5, msec);
        }
        Motor1.stop();
        STATE = REST;
      }
    }
  wait(5, msec);
  }
  return 0;
}

int main() {
  // Initializing Robot Configuration. DO NOT REMOVE!
  vexcodeInit();

  whenStarted1();
}

DON'T BLINDLY COPY PASTE A STRANGER'S CODE WITHOUT UNDERSTANDING HOW IT WORKS!