GY-63_MS5611/libraries/DRV8825/DRV8825.h
2022-07-13 12:40:22 +02:00

69 lines
1.6 KiB
C++

#pragma once
//
// FILE: DRV8825.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// PURPOSE: Arduino library for DRV8825 stepper motor driver
// DATE: 2022-07-07
// URL: https://github.com/RobTillaart/DRV8825
#include "Arduino.h"
#define DRV8825_LIB_VERSION (F("0.1.1"))
// setDirection
const uint8_t DRV8825_CLOCK_WISE = 0; // LOW
const uint8_t DRV8825_COUNTERCLOCK_WISE = 1; // HIGHT
class DRV8825
{
public:
DRV8825();
bool begin(uint8_t dirPin, uint8_t stepPin);
// DIRECTION
// 0 = DRV8825_CLOCK_WISE
// 1 = DRV8825_COUNTERCLOCK_WISE
// returns false if parameter out of range.
bool setDirection(uint8_t direction = DRV8825_CLOCK_WISE);
uint8_t getDirection();
// STEPS
void setStepsPerRotation(uint16_t stepsPerRotation);
uint16_t getStepsPerRotation();
void step();
uint32_t resetSteps(uint32_t s = 0 );
uint32_t getSteps();
// POSITION
// only works if stepsPerRotation > 0
// returns false if pos > stepsPerRotation.
bool setPosition(uint16_t pos = 0);
uint16_t getPosition();
// CONFIGURATION
// step pulse length is in microseconds
// datasheet default = 1.9 us
void setStepPulseLength(uint16_t us = 2);
uint16_t getStepPulseLength();
protected:
uint16_t _stepsPerRotation = 0;
uint8_t _directionPin = 255;
uint8_t _stepPin = 255;
uint8_t _direction = DRV8825_CLOCK_WISE;
uint32_t _steps = 0;
uint16_t _us = 2;
uint16_t _pos = 0;
};
// -- END OF FILE --