added valves display

This commit is contained in:
maxwes08
2026-05-06 14:05:37 +02:00
parent d6b1d214f5
commit bc4e077924
4 changed files with 103 additions and 29 deletions

View File

@@ -25,7 +25,7 @@ public class Program
// Throttle smoothing
private static double targetThrottle = 0.0; // 1.0 when W is pressed, 0.0 otherwise
private static double currentThrottle = 0.0;
private const double ThrottleSmoothing = 40.0; // rate of change
private const double ThrottleSmoothing = 20.0; // rate of change
private static volatile bool running = true;