You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use it for my awning and it is shown active (open) when it is fully moved in. Also the position slider is fully extended (to the right).In my opinion it would be better the other way around.ThanksAm 24.03.2023 um 17:46 schrieb Daniel Mühlbachler-Pietrzykowski ***@***.***>:
sorry for my late response. is this still an issue? do you have a particular example where this is useful?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
Is your feature request related to a problem? Please describe.
It's because HELLA API v3 dose not support switch_drive_direction anymore ...
Describe the solution you'd like.
If possible integrate a config switch to choose an inversion of position values.
Ex input 10 -> pos -> 90
Describe alternatives you've considered.
If config switch is set to yes, then do something like this:
(sorry I'm not a python programmer ;-) )
#!/bin/bash
input=$1
if [ $input -lt 50 ];then
(( pos = (50 - input) * 2 + input ))
else
(( pos = input - (input - 50) * 2))
fi
echo $pos
Regards,
Thomas
The text was updated successfully, but these errors were encountered: