diff --git a/software/videomixer/main.c b/software/videomixer/main.c index 83af200fe..203d69e20 100644 --- a/software/videomixer/main.c +++ b/software/videomixer/main.c @@ -13,8 +13,8 @@ static int scale_pot(int raw, int range) { - int pot_min = 54000; - int pot_max = 105400; + int pot_min = 64000; + int pot_max = 103000; int scaled; scaled = range*(raw - pot_min)/(pot_max - pot_min);