Replies: 3 comments 1 reply
-
I've updated the wiki, thanks for your contribution. Is the stop URL correct, or should it also include the shade identifier? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Implemented: https://github.com/dxdc/homebridge-blinds/wiki/Tested-configurations#integration-with-espsomfy-rts Please let me know if you have any other comments. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Yes this is almost fine: One more thing I forgot:
100-position[0] is 100-position[« Identier - 1 »]
Sorry about this.
Thank again for your work
… Le 27 déc. 2023 à 18:30, Daniel Caspi ***@***.***> a écrit :
Implemented: https://github.com/dxdc/homebridge-blinds/wiki/Tested-configurations#integration-with-espsomfy-rts
Please let me know if you have any other comments.
—
Reply to this email directly, view it on GitHub <#83 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AMPPNNF7ZWAFBFH2OQOSZI3YLRLJ5AVCNFSM6AAAAABBELP3VKVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TSNJYGU3DC>.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
This could be added to the wiki (in Integration pages).
Homebridge-blinds works with ESPSomfy-RTS (see https://github.com/rstrouse/ESPSomfy-RTS). It is a small cheap hardware that allows wifi remote access to Somfy blinds using RTS radio protocol.
This device accepts commands through HTTP POST/GET commands (as well as MQTT). This fits well with home bridge-blinds (See https://github.com/rstrouse/ESPSomfy-RTS/wiki/Integrations).
needs to be modified with the IP/DNS of the ESP/
needs to be modified with the shade identifier from ESPSomfyRTS (from 1 to 32)
This is some needed computation to translate position from/to home bridge-blinds (in % open) to ESPSomfyRTS (in % closed).
Here is an configuration example:$number($ ) ) ",
{
"name": "Shade1",
"up_url": {
"url": "http:///shadeCommand?shadeId=&target=%%POS%%",
"method": "GET"
},
"down_url": {
"url": "http:///shadeCommand?shadeId=&target=%%POS%%",
"method": "GET"
},
"motion_time": 28000,
"stop_url": {
"url": "http:///shadeCommand?shadeId=1&command=my",
"method": "GET"
},
"pos_url": "http:///shades",
"pos_jsonata": "100-position[0]",
"send_pos_jsonata": "( 100 -
"verbose": true,
"accessory": "BlindsHTTP"
}
Best regards to all,
Beta Was this translation helpful? Give feedback.
All reactions