Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: threeAxis.h
- Revision:
- 1:43d856fad23a
- Parent:
- 0:603f46a29b61
- Child:
- 2:5206484275e3
--- a/threeAxis.h Wed Dec 15 00:01:51 2021 +0000
+++ b/threeAxis.h Wed Dec 15 01:17:55 2021 +0000
@@ -1,8 +1,8 @@
class threeAxis{
public:
threeAxis(PinName xStep, PinName yStep, PinName zStep, PinName xDir, PinName yDir, PinName zDir, PinName xEnable, PinName yEnable, PinName zEnable, float stepRatio, float xBound, float yBound, float zBound, PinName xLimit, PinName yLimit, PinName zLimit);
- int goTo(float xVal, float yVal, float zVal);
- int goToRaw(int xVal, int yVal, int zVal);
+ void goTo(float xVal, float yVal, float zVal);
+ //void goToRaw(int xVal, int yVal, int zVal);
void stepBackX();
void stepBackY();