I have paired my somfy blinds in domoticz according the instruction in de rfxcom manual. It works fine.
When operated by domoticz i can see the status of the blinds (open, stopped or closed) on the switch or by reading out the devicestatus.
When the blinds are operated by the remotecontrol the devicesstatus does not change so i do not know if the blinds are open or closed. So the remotecontrol and domoticz comunicate seperately with the somfy-motor.
Paring the remotecontrole like other normal switches (without using the programbutton) so you can detect an on/offstatus is not possible. Probably due to the frequency difference between 433.92 and the 433.42 of the somfy blinds
Does anyone has a solution for detecting the somfy remotecontrole commands or some other solution/idea to detect the use of the remotecontrol.
Thanks a lot.
Regards
Paul
Somfy blinds and remotecontrol
Moderators: leecollings, remb0
- Treve
- Posts: 107
- Joined: Thursday 05 November 2015 10:37
- Target OS: Raspberry Pi / ODroid
- Domoticz version: v4.11474
- Location: Rotterdam, NL
- Contact:
Re: Somfy blinds and remotecontrol
I think it is only possible by 2-way communication like Z-Wave or Zigbee.
RfxCom is oneway communication.
RfxCom is oneway communication.
- RFXtrx433E,
- AEON Labs ZW090 Z-Stick Gen5 EU
- Hue v2.1
- Raspberry Pi 3 Model B, Raspbian Stretch Full on USB-Stick.
- Domoticz 4.11474
Devices: KaKu, Z-Wave, Hue.
for testing:
Raspberry 4, 2GB, SSD
Domoticz 2022.1
Ikea Hub, Fyrtur curtain
- AEON Labs ZW090 Z-Stick Gen5 EU
- Hue v2.1
- Raspberry Pi 3 Model B, Raspbian Stretch Full on USB-Stick.
- Domoticz 4.11474
Devices: KaKu, Z-Wave, Hue.
for testing:
Raspberry 4, 2GB, SSD
Domoticz 2022.1
Ikea Hub, Fyrtur curtain
Re: Somfy blinds and remotecontrol
For people interested:
The original somfy remote can not be paired as a on/off switch so an on/off/stop command can not be received via Domoticz /RFxcom. A somfyremote command does not change the blindsswitch. .
So if your wife uses the Somfy remotecontrol and you always use Domoticz you have a problem.
Starting point: Somfy blinds are paired (see RFXcom user manual)
Solution:
Buy a simple KlikonKlifoff remote.
Add an on/off switch for opening and closing the blinds. Add an on/off switch for for stopping the movement of the blinds With the KlikonKlifoff remote you can control two switches. Two little scripts will direct your Somfy blindsswitch.
regards
Paul
The original somfy remote can not be paired as a on/off switch so an on/off/stop command can not be received via Domoticz /RFxcom. A somfyremote command does not change the blindsswitch. .
So if your wife uses the Somfy remotecontrol and you always use Domoticz you have a problem.
Starting point: Somfy blinds are paired (see RFXcom user manual)
Solution:
Buy a simple KlikonKlifoff remote.
Add an on/off switch for opening and closing the blinds. Add an on/off switch for for stopping the movement of the blinds With the KlikonKlifoff remote you can control two switches. Two little scripts will direct your Somfy blindsswitch.
Code: Select all
return {
active = true,
on = {
devices = {
6904 --- blinds open/dicht switch
}
},
execute = function(domoticz, switch)
domoticz.log('===blinds script==================')
if (switch.state == 'On') then
domoticz.log('===blinds open ====================')
--domoticz.notify('Blinds open', 'Blinds open', domoticz.PRIORITY_LOW)
domoticz.devices('Somfy-blinds').switchOff() --somfy
else
domoticz.log('===blinds dicht ====================')
--domoticz.notify('Blinds Erwin dicht', 'Blinds dicht', domoticz.PRIORITY_LOW)
domoticz.devices('Somfy-blinds').switchOn()
end
end
}
Code: Select all
return {
active = true,
on = {
devices = {
6906 --- blinds stop
}
},
execute = function(domoticz, switch)
domoticz.log('===blinds script==================')
if (switch.state == 'Off') then
domoticz.log('===blinds gestopt ====================')
--domoticz.notify('Blinds gestopt', 'Blinds beweging gestopt', domoticz.PRIORITY_LOW)
domoticz.devices('Somfy-blinds').stop() --somfy
end
end
}
Paul
Who is online
Users browsing this forum: No registered users and 1 guest