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
in main.js line 205 you simply add switch 00 to the command instead of taking whatever switch issues the command. by issuing 00 you command all switches within the current ID to change.
currently it is:
command += '00;3c00;' + value + ';';
i propose it to be:
command += states[id].native.switch + ';3c00;' + value + ';';
The text was updated successfully, but these errors were encountered:
hi,
in main.js line 205 you simply add switch 00 to the command instead of taking whatever switch issues the command. by issuing 00 you command all switches within the current ID to change.
currently it is:
command += '00;3c00;' + value + ';';
i propose it to be:
command += states[id].native.switch + ';3c00;' + value + ';';
The text was updated successfully, but these errors were encountered: