Skip to content

Instantly share code, notes, and snippets.

@Dzinlife
Last active November 5, 2017 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Dzinlife/0eb9b949e698d23ae19d to your computer and use it in GitHub Desktop.
Save Dzinlife/0eb9b949e698d23ae19d to your computer and use it in GitHub Desktop.
Low pass filter
const double ALPHA = 0.05;
resultSpeed = ALPHA * currentSpeed + (1.0 - ALPHA) * resultSpeed;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment