Andy Peters
Andy Peters
I'm evaluating terosHDL with a current project. The project has a lot of source files, and the source tree is hierarchical. The source tree is also a Subversion working copy,...
(Refer to the Adafruit [article](https://learn.adafruit.com/flying-faders)) Starting here: [Flying_Fader_Arduino](https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Flying_Fader_Arduino/Flying_Fader_Arduino.ino), in the `go_to_position` function starting at line 100: ``` void go_to_position(int new_position) { fader_pos = int(analogRead(fader) / 4); while (abs(fader_pos - new_position)...