Lineary animates an internal value toward max value `MAX` with a rate `STEP` in seconds.
Use the node to smoothen LED switching, motor starting, or servo angular position update.
xod/core/fade
stepper(second)
@/stepper(second)
Lineary animates an internal value toward max value `MAX` with a rate `STEP` in seconds.
Use the node to smoothen LED switching, motor starting, or servo angular position update.
xod/core/fade
MAXnumber
The maximum target value to strive for.
RATEnumber
Speed rate in units per second.
UPDpulse
Triggers an update (i.e. recalculation) of `OUT` value. Keep the value set to `Continuously` to achieve the most smooth animation possible.
OUTnumber
The current animation value.
To use the node in your project you should have the koadrobot/arduino library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.
C++ implementation
struct State {
TimeMs lastUpdateTime;
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
State* state = getState(ctx);
if (!isInputDirty<input_UPD>(ctx)) {
return;
}
TimeMs now = transactionTime();
Number target = getValue<input_MAX>(ctx);
Number position = getValue<output_OUT>(ctx);
if (target == position) {
// Already done. Store timestamp anyway so that an animation to a new
// value would not jump at the first update
state->lastUpdateTime = now;
return;
}
Number rate = getValue<input_RATE>(ctx);
TimeMs dtMs = now - state->lastUpdateTime;
Number step = (Number)dtMs / 1000. * rate;
if (target > position) {
position = min(target, position + step);
} else {
position = max(target, position - step);
}
emitValue<output_OUT>(ctx, position);
state->lastUpdateTime = now;
}