We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3239275 commit a3c7abfCopy full SHA for a3c7abf
main/include/Robot.h
@@ -7,6 +7,8 @@
7
8
#pragma once
9
10
+#define _USE_MATH_DEFINES
11
+
12
#include <cmath>
13
#include <string>
14
#include <iostream>
@@ -64,6 +66,9 @@ class Robot : public frc::TimedRobot {
64
66
static constexpr double upSpeedFast = -.5;
65
67
static constexpr double downSpeedNormal = -.04;
68
static constexpr double downSpeedFast = -.03;
69
+ static constexpr double flywheelIntake = .5;
70
+ static constexpr double flywheelOutake = .5;
71
+ static constexpr double f = 10;//Frequancy for acceleration
72
//Analog PI (PWM)
73
AnalogInput pi{0};
74
Joystick fightStick{1};
0 commit comments