PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
rampStep.c
1 #include "abdrive.h"
2 
3 void drive_speed(int left, int right);
4 
5 void drive_rampStep(int left, int right)
6 {
7  drive_speed(left, right);
8 }
9 
drive_rampStep
void drive_rampStep(int left, int right)
This function allows your code to ask for a speed repeatedly in a loop, but each time your code asks ...
Definition: rampStep.c:5
drive_speed
void drive_speed(int left, int right)
Set wheel speeds in encoder ticks per second. An encoder tick is 1/64th of a revolution,...
Definition: speed.c:138
abdrive.h
This library takes care of encoder monitoring and servo signaling, and provides a simple set of funct...