mirror of
https://github.com/modelec/pami.git
synced 2026-03-18 21:40:35 +01:00
15 lines
227 B
C
15 lines
227 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
void enableMotorDrivers();
|
|
|
|
void disableDrivers();
|
|
|
|
int getStepsForDistance(float cm);
|
|
|
|
int getRotationSteps(float angleDeg);
|
|
|
|
void setServoAngle(int angle, int channel = 0);
|
|
|
|
#endif // UTILS_H
|