Support for RTS shutters #60
Programmierfreund
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
@nikkow Thank you for the successful V3 betas. The support of the new local API works wonderfully for me. However, I still have RTS shutters, so for me only the commands "open" and "close" are relevant. I have now read out via the Tahoma Read Node once the possible commands of a RTS shutter. These are:
stop, test, open, close, identify, up, down, my, openConfiguration and rest (see attached file for a detailed log).
RTS_shutter_commands.pdf
I really need the "my" position for controlling my shutters and I just added the command once in the tahoma.ts file now:
interface ITahomaControlInstructions {
command: 'open' | 'close' | 'rotation' | 'stop' | 'my' | 'setClosure';
....
function generateInstructionsFromPayload(
.......
case 'my':
return {
command: 'my',
labels: {
done:
Positioned,progress:
Positioning...,},
};
......
tahoma_ts.pdf
I then followed up with these changes manually (because I did not want to compile the ts file) in the tasmota.js by overwriting the installed file and the my command now works great with my RTS shutters.
@nikkow Could you please add the "my command" in the main branch of your project?
Beta Was this translation helpful? Give feedback.
All reactions