Releases: pkerspe/ESP-FlexyStepper
new getters and some handling for single core ESP32s
Add driver enable pin support
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 :-) )
1.4.9 - Update Readme with missing configs
update readme file with missing entries for functions
1.4.8 - Open Drain Configuration for Step and Dir Pin
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)
1.4.7 - fixed typos in readme
only some minimal typo fixes
Bugfix Issue #31
- fixed issue with variable type for limit switch types
- added new example for multiple instances running as service
1.4.5 - just an update for PlatformIO
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 #22
1.4.4 - minor changes for ESPStepperMotorServer
minor changes in method signature for ESPStepperMotor Server
1.4.3 - callback function changes and example
added an example for using callback functions
and changed function signature for position callback function
1.4.2 - bugfix in the setTargetPositionToStop function
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.