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
@rytilahti May I ask you about your support here? My python skills are pretty limited. Could you provide an example how to convert a string "[1,2,3]" to a list of integers?
The following command line works:
miiocli device --ip 192.168.1.12 --token XXX raw_command setPrepareDish "[5,6390]"
But when I set the following in the config:
From the log I can see that it sends the following instead:
What I want is sending the following:
{'id': 6, 'method': 'setPrepareDish', 'params': [5, 6390]}
What should I do?
I tried the config:
It sends the following parameters:
{'id': 6, 'method': 'setPrepareDish', 'params': ['[5, 6390]']}
Which is also incorrect.
THANKS.
The text was updated successfully, but these errors were encountered: