RBE1001Lib
examples
MotorSpinExample
MotorSpinExample.ino
Go to the documentation of this file.
1
#include <Arduino.h>
2
#include <
RBE1001Lib.h
>
3
4
// pin definitions https://wpiroboticsengineering.github.io/RBE1001Lib/RBE1001Lib_8h.html#define-members
5
const
int
buttonPin
=
BOOT_FLAG_PIN
;
6
7
LeftMotor
left_motor
;
8
RightMotor
right_motor
;
9
bool
upDown
=
false
;
10
/*
11
* This is the standard setup function that is called when the ESP32 is rebooted
12
* It is used to initialize anything that needs to be done once.
13
*/
14
void
setup
()
15
{
16
// This will initialize the Serial as 115200 for prints
17
Serial.begin(115200);
18
}
19
20
/*
21
* The main loop for the program. The loop function is repeatedly called
22
* once the ESP32 is started.
23
*/
24
void
loop
()
25
{
26
while
(digitalRead(
buttonPin
))
27
{
28
}
//wait for button press
29
left_motor.
setSpeed
(120);
30
31
uint32_t startTime = millis();
32
33
while
(millis() - startTime < 5000)
//run for 5 seconds
34
{
35
Serial.print(left_motor.
getDegreesPerSecond
());
36
Serial.print(
'\t'
);
37
Serial.print(left_motor.
getEffortPercent
());
38
Serial.print(
'\n'
);
39
40
delay(20);
41
}
42
43
left_motor.
setSpeed
(0);
44
}
left_motor
LeftMotor left_motor
Definition:
MotorSpinExample.ino:7
buttonPin
const int buttonPin
Definition:
MotorSpinExample.ino:5
BOOT_FLAG_PIN
#define BOOT_FLAG_PIN
Definition:
RBE1001Lib.h:12
Motor::setSpeed
void setSpeed(float newDegreesPerSecond)
Definition:
Motor.cpp:295
LeftMotor
Definition:
RBE1001Lib.h:67
RightMotor
Definition:
RBE1001Lib.h:73
upDown
bool upDown
Definition:
MotorSpinExample.ino:9
RBE1001Lib.h
setup
void setup()
Definition:
MotorSpinExample.ino:14
Motor::getEffortPercent
float getEffortPercent()
Definition:
Motor.h:265
right_motor
RightMotor right_motor
Definition:
MotorSpinExample.ino:8
Motor::getDegreesPerSecond
float getDegreesPerSecond()
Definition:
Motor.cpp:551
loop
void loop()
Definition:
MotorSpinExample.ino:24
Generated by
1.8.13