Hi,
I have the Hamulight L2045 and would like to switch it with domoticz, i have a rfxcom-e
it uses 433MHZ
Is there anyone here who has connected this led driver to domoticz?
thanx!
Search found 42 matches
- Wednesday 05 July 2017 23:08
- Forum: Rfxcom Transceiver
- Topic: Hamulight L2045 led driver and RFXCOM?
- Replies: 2
- Views: 2714
- Friday 23 June 2017 17:22
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
where can we find the updated code?
i get these error's
2017-06-23 17:18:40.885 (Onkyo) Receiver found:
2017-06-23 17:18:40.885 (Onkyo) Type: AV Receiver or Stereo Receiver
2017-06-23 17:18:40.885 (Onkyo) Type: TX-NR626
2017-06-23 17:18:40.886 (Onkyo) Region: European or Asian model
2017-06-23 17 ...
i get these error's
2017-06-23 17:18:40.885 (Onkyo) Receiver found:
2017-06-23 17:18:40.885 (Onkyo) Type: AV Receiver or Stereo Receiver
2017-06-23 17:18:40.885 (Onkyo) Type: TX-NR626
2017-06-23 17:18:40.886 (Onkyo) Region: European or Asian model
2017-06-23 17 ...
- Tuesday 30 May 2017 18:04
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
@Plaagje
Even when i do not power off the tuner, the plugin gets disconnected. maybe a wait/sleep issue?
I've updated the code, so it should reconnect after the receiver gets disconnected in the development branch ( https://github.com/jorgh6/domoticz-onkyo-plugin/tree/development ) Have you ...
Even when i do not power off the tuner, the plugin gets disconnected. maybe a wait/sleep issue?
I've updated the code, so it should reconnect after the receiver gets disconnected in the development branch ( https://github.com/jorgh6/domoticz-onkyo-plugin/tree/development ) Have you ...
- Wednesday 19 April 2017 17:52
- Forum: LUA
- Topic: Nest thermostat
- Replies: 10
- Views: 4582
Re: Nest thermostat
Fixed it , tostring was missing, the following code works
local nest_setpoint_idx = 368
local setpoint_low = 17
local setpoint_high = 21
commandArray = {}
if (devicechanged['test']=='On') then
commandArray['SetSetPoint:'..nest_setpoint_idx]=tostring(setpoint_high)
elseif (devicechanged['test ...
local nest_setpoint_idx = 368
local setpoint_low = 17
local setpoint_high = 21
commandArray = {}
if (devicechanged['test']=='On') then
commandArray['SetSetPoint:'..nest_setpoint_idx]=tostring(setpoint_high)
elseif (devicechanged['test ...
- Wednesday 19 April 2017 17:38
- Forum: LUA
- Topic: Nest thermostat
- Replies: 10
- Views: 4582
Re: Nest thermostat
Strange then, which Domoticz version are you running at the moment?
As for me i'm on the latest beta version.
I don't know in which version this "SetSetPoint" was introduced.
I'm on v3.7320
You are using in your Nest script:
commandArray["OpenURL"]="http://"..domoticz.ip..":"..domoticz.port ...
As for me i'm on the latest beta version.
I don't know in which version this "SetSetPoint" was introduced.
I'm on v3.7320
You are using in your Nest script:
commandArray["OpenURL"]="http://"..domoticz.ip..":"..domoticz.port ...
- Wednesday 19 April 2017 17:16
- Forum: LUA
- Topic: Nest thermostat
- Replies: 10
- Views: 4582
Re: Nest thermostat
YesSiewert308SW wrote:
I assume that you set the correct idx as seen under settings->devices and not under hardware

Code: Select all
commandArray['SetSetPoint:368']='20'- Wednesday 19 April 2017 17:11
- Forum: LUA
- Topic: Nest thermostat
- Replies: 10
- Views: 4582
Re: Nest thermostat
Siewert308SW wrote:I use "SetSetpoint" to set the setpoint on my Nest v3.
Works like acharm and don't have those "Longer then 10 seconds" error
commandArray['SetSetPoint:MySetPointIdx']='20.5'
I tried that, but nothing happens (Nest v3)
- Tuesday 18 April 2017 19:09
- Forum: LUA
- Topic: Nest thermostat
- Replies: 10
- Views: 4582
Re: Nest thermostat
Any luck fixing the problem? my setpoint command runs also for more then 10 seconds but it works..
if (devicechanged['test']=='On') then
commandArray['UpdateDevice'] = '368|0|21'
end
i also have no idea what to fill in at the nValue so i guess it should be '0' ?
i found another way to set it ...
if (devicechanged['test']=='On') then
commandArray['UpdateDevice'] = '368|0|21'
end
i also have no idea what to fill in at the nValue so i guess it should be '0' ?
i found another way to set it ...
- Sunday 16 April 2017 17:32
- Forum: LUA
- Topic: Total noob on lua scripting, where to start ?
- Replies: 3
- Views: 1003
Re: Total noob on lua scripting, where to start ?
I suggest you take a look at the demo scripts and change then and see what happens, check the log when you have changed something so you can see any mistakes you make such as punctuation errors..
The wiki has a lot of scripts with good explanation.
Basically you have to do it and experience ...
The wiki has a lot of scripts with good explanation.
Basically you have to do it and experience ...
- Tuesday 11 April 2017 10:04
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
@Plaagje,
Maybe the loss off power could be the reason...
I think it is, however the plugin should try to reconnect (haven't tested this). So if you restore power, things should start working again. I'll take a look at the code to see if I can spot why it doesn't reconnect.
Regards,
Jorg ...
Maybe the loss off power could be the reason...
I think it is, however the plugin should try to reconnect (haven't tested this). So if you restore power, things should start working again. I'll take a look at the code to see if I can spot why it doesn't reconnect.
Regards,
Jorg ...
- Monday 10 April 2017 21:02
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
Hi Jorgh,
I have your plugin installed and connected to my ONKYO TX-NR626.
After connecting to the plugin, the devices are created and i can control my onkyo, i get feedback so everything works.
But.....
after a day the tuner/plugin seems disconnected and i get the following error's when trying to ...
I have your plugin installed and connected to my ONKYO TX-NR626.
After connecting to the plugin, the devices are created and i can control my onkyo, i get feedback so everything works.
But.....
after a day the tuner/plugin seems disconnected and i get the following error's when trying to ...
- Sunday 09 April 2017 16:13
- Forum: Python
- Topic: Buienradar Weather Lookup Plugin
- Replies: 381
- Views: 95929
Re: Buienradar Weather Lookup Plugin
Nice Plugin!
I could use an UV index.
And an rain predicament would be nice.
-Plaagje
I could use an UV index.
And an rain predicament would be nice.
-Plaagje
- Sunday 09 April 2017 14:01
- Forum: LUA
- Topic: Multiple SendNotification
- Replies: 6
- Views: 3614
Re: Multiple SendNotification
Thank you for the explanation!
-Plaagje
-Plaagje
- Sunday 09 April 2017 0:22
- Forum: LUA
- Topic: Multiple SendNotification
- Replies: 6
- Views: 3614
Re: Multiple SendNotification
I'm using telegram as a notification service, so it seems to me it should be "instant".
You mention that the first message is sent and therefore it skips the second message.. but i experience the other way around.
Only the second message is send...
You mention that the first message is sent and therefore it skips the second message.. but i experience the other way around.
Only the second message is send...
- Saturday 08 April 2017 23:53
- Forum: LUA
- Topic: Multiple SendNotification
- Replies: 6
- Views: 3614
Multiple SendNotification
Could someone explain why is only the second (message 2) notification is send, and how i should code it to get both messages send??
commandArray = {}
if (devicechanged['MyDeviceName'] == 'On') then
commandArray['SendNotification']='message 1'
commandArray['SendNotification']='message 2'
end ...
commandArray = {}
if (devicechanged['MyDeviceName'] == 'On') then
commandArray['SendNotification']='message 1'
commandArray['SendNotification']='message 2'
end ...
- Sunday 02 April 2017 16:03
- Forum: Python
- Topic: Buienradar Weather Lookup Plugin
- Replies: 381
- Views: 95929
Re: Buienradar Weather Lookup Plugin
Are you running the beta version? That's necessary.
Have you done the following steps (Raspberry Pi)?
sudo apt-get update
sudo apt-get upgrade
sudo apt install python3.4
sudo apt install libpython3.4
sudo apt install python3-dev
Whats in the Domoticz log?
Running stable here.
https://i.imgur ...
Have you done the following steps (Raspberry Pi)?
sudo apt-get update
sudo apt-get upgrade
sudo apt install python3.4
sudo apt install libpython3.4
sudo apt install python3-dev
Whats in the Domoticz log?
Running stable here.
https://i.imgur ...
- Sunday 02 April 2017 13:00
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
I added an other plugin and that one didnt load as well,,,, i suppose it is the plugin system.
- Saturday 01 April 2017 17:18
- Forum: LUA
- Topic: Lua and Kodi
- Replies: 23
- Views: 6394
Re: Lua and Kodi
Hi all,
I tried to play around with kodi and lua scripts and would like to pause my Kodi only when kodi is playing video's.
But i can only get to print the On and Off statuses and not Video Audio Photo or Paused...
I have 2 Kodi's (Kodi Livingroom, Kodi Bedroom)
This is my script:
commandArray ...
I tried to play around with kodi and lua scripts and would like to pause my Kodi only when kodi is playing video's.
But i can only get to print the On and Off statuses and not Video Audio Photo or Paused...
I have 2 Kodi's (Kodi Livingroom, Kodi Bedroom)
This is my script:
commandArray ...
- Saturday 01 April 2017 1:15
- Forum: Python
- Topic: [RELEASED] Python plugin to control Onkyo receivers
- Replies: 277
- Views: 60237
Re: [RELEASED] Python plugin to control Onkyo receivers
Installation instructions:
Unzip the plugin.zip file and put plugin.py within a folder named 'Onkyo' in the Domoticz plugin folder.
On Linux make the file executable (chmod a+x plugin.py)
After you installed the plugin, restart Domoticz and add the Onkyo Receiver through the Setup->Hardware.
Hi ...
Unzip the plugin.zip file and put plugin.py within a folder named 'Onkyo' in the Domoticz plugin folder.
On Linux make the file executable (chmod a+x plugin.py)
After you installed the plugin, restart Domoticz and add the Onkyo Receiver through the Setup->Hardware.
Hi ...
- Monday 20 March 2017 14:52
- Forum: ESP8266
- Topic: Sonoff - MQTT - Domoticz
- Replies: 4
- Views: 22657
Sonoff - MQTT - Domoticz
I know there are more threads about this but i think my solution is best 8-)
My Domoticz is installed on a RPI2
Sonoff Memory upgrade
you will need:
• Sonoff wifi smart switch
• Solder iron and solder
• Winbond 25Q32FV in SOP-8 package, which is a 32Mbit (4MByte) chip
1. Solder off the old chip ...
My Domoticz is installed on a RPI2
Sonoff Memory upgrade
you will need:
• Sonoff wifi smart switch
• Solder iron and solder
• Winbond 25Q32FV in SOP-8 package, which is a 32Mbit (4MByte) chip
1. Solder off the old chip ...