From 0168aadc287d8b4752bed02a173ad934eefd5936 Mon Sep 17 00:00:00 2001 From: Derisis13 Date: Mon, 30 Aug 2021 21:05:01 +0200 Subject: [PATCH] Version 1.4.4 Bugfix: in function lower the time slept was 1/10th of what is neccesary. Now it is multiplied by 100000 instead od 10000. --- moving.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moving.c b/moving.c index 8753ea3..cf916ad 100644 --- a/moving.c +++ b/moving.c @@ -55,6 +55,6 @@ void press_button (buttons b) void lower (shutter *r) { press_button (down); - usleep (r->percentage * r->rolltime_down * 10000); + usleep (r->percentage * r->rolltime_down * 100000); press_button (stop); } \ No newline at end of file