-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set values are cut off too early #48
Comments
I see a similar issue here:
Option "Zeit 1" sends only the first “on”-time in the string = “06:30”. It doesn’t send the whole String "06:30 08:30 18:30 22:00" including the other values. |
I think the root cause is that in |
Thank you. |
Resolves Set values are cut off too early Alexandre-io#48.
Hi,
I have noticed that some set commands are not successful if the values have got whitespaces.
Example from Unit "BetriebsArt", enum value
<enum bytes="04" text="H+WW FS"/>
The set command is cut off after "H+WW"
I think the reason is in vcontrold/rootfs/etc/services.d/vclient_sub/run
Line 19
echo "setBetriebsArt H+WW FS" | cut -d' ' -f2
=H+WW
Maybe solved by
echo "setBetriebsArt H+WW FS" | cut -d' ' -f2-
=H+WW FS
Regards
Daniel
The text was updated successfully, but these errors were encountered: