ESP FlexyStepper Versions Save

This library is used to control one or more stepper motors from an ESP32 device. It is based on the FlexyStepper library by S.Reifel but provides some additional functionality

v1.5.1

4 months ago

added getters to retrieve the configured deceleration and acceleration values Added conditional code block to remove logic for second core on single core ESP2 models

v1.5.0

4 months ago

Integrated PR from ameisso: Added support for an enable io pin. This allows the external driver module to be shut off if needed (and if it has an enable pin or some external components attached to enable it) via the Library. Note: this function is only to control the pin via the library, it does not automate the enable/disable functionality for you. E.g. if you set it manually to "disabled" state, you need to manually enable it again before you try to send steps to the driver.

Note: this version contains a partially a "breaking" change if you use the brake-function of the library. The brake function has been renamed (typo corrected) thus if you use it, you simply need to change your code to use "isBrakeActive" instead of "isBakeActive" (old function mane with typo, library unfortunately cannot "bake" anything for you :-) )

v1.4.9

10 months ago

update readme file with missing entries for functions

v1.4.7

10 months ago

only some minimal typo fixes

v1.4.8

10 months ago

added Feature Request #33 open drain configuration for step and dir pins of driver. Should be a non breaking change since parameter has been added with default value to connectPins function:

void ESP_FlexyStepper::connectToPins(byte stepPinNumber, byte directionPinNumber, bool useOpenDrain)

v1.4.6

1 year ago
  • fixed issue with variable type for limit switch types
  • added new example for multiple instances running as service

v1.4.5

2 years ago

this update does not contain real new features, it is solely for platformIO to pull the latest sources, which seems to have failed in version 1.4.4 as reported in https://github.com/pkerspe/ESP-FlexyStepper/issues/22

v1.4.4

2 years ago

minor changes in method signature for ESPStepperMotor Server

v1.4.3

3 years ago

added an example for using callback functions and changed function signature for position callback function

v1.4.2

3 years ago

a bug has been fixed in the function setTargetPositionToStop function which caused an unwanted move when called while the motor has already come to a stop.