Block-Text Correlation
void setup() {
pulse.PulseBegin();
pulse.setMotorInvert(1,1);
void loop() {
pulse.setMotorPowers(100,50);
Note: Motor 1 is turning at twice the power of Motor 2.
Arduino Source Code
#include <PULSE.h>
PULSE pulse;
void setup() {
pulse.PulseBegin();
pulse.setMotorInvert(1,1);
}
void loop() {
pulse.setMotorPowers(100,50);
}
94 Building and Coding the PULSE CodeeBot