Hi.
I have installed ha-bridge on a clean ubuntu server, and it is up and running with auto-start.
But when I add domoticz in Bridge Controll no Domoticz tab comes up, even if I click save.
This is how I installed it and set ut up:
cd ~
mkdir habridge
cd habridge
wget https://github.com/bwssytems ...
Search found 233 matches
- Sunday 11 March 2018 3:26
- Forum: Third party and supplementary tools
- Topic: Control Domoticz using Harmony Hub and HA Bridge
- Replies: 72
- Views: 54495
- Tuesday 09 January 2018 0:02
- Forum: Cameras
- Topic: How to: Motion sensors from iSpy camera's
- Replies: 13
- Views: 9871
Re: How to: Motion sensors from iSpy camera's
The problem with this is that ispy think lights turning on and off is motion
- Monday 08 January 2018 23:58
- Forum: Other questions and discussions
- Topic: What exactly does Backup Database entail?
- Replies: 4
- Views: 1770
Re: What exactly does Backup Database entail?
Not sure about custom scripts but all scripts made from domoticz web gui incl blockly and all devices are backed up.
- Saturday 30 December 2017 19:06
- Forum: LUA
- Topic: IF Button is pressed on (even if on already) do somthing
- Replies: 5
- Views: 1303
- Saturday 30 December 2017 15:20
- Forum: LUA
- Topic: IF Button is pressed on (even if on already) do somthing
- Replies: 5
- Views: 1303
Re: IF Button is pressed on (even if on already) do somthing
Try a 'device' triggered dzVentz event like this
return {
on = {
devices = {
'Button'
}
},
logging = {
level = domoticz.LOG_INFO,
marker = "dz_Test"
},
execute = function(domoticz, device)
domoticz.log('Device ' .. device.name .. ' was triggered', domoticz.LOG_INFO)
end
}
It will ...
- Saturday 30 December 2017 3:37
- Forum: Other questions and discussions
- Topic: Delete a device
- Replies: 13
- Views: 8575
Re: Delete a device
As a Domoticz user for years I have looked for a way to delete devices.
I agree, terrible UI design. At least now i know.
Complaining is my my contribution
I agree, terrible UI design. At least now i know.
Complaining is my my contribution
- Saturday 30 December 2017 3:34
- Forum: LUA
- Topic: IF Button is pressed on (even if on already) do somthing
- Replies: 5
- Views: 1303
IF Button is pressed on (even if on already) do somthing
Hi.
I have these wall switches that can be set to "on" or "off".
Now I just have JSON inside the device on "response by on" and "response by off", but this just works if I want to change one device, since that is what JSON supports.
I want in LUA:
IF "Button is pressed on (even if on already)"
DO ...
I have these wall switches that can be set to "on" or "off".
Now I just have JSON inside the device on "response by on" and "response by off", but this just works if I want to change one device, since that is what JSON supports.
I want in LUA:
IF "Button is pressed on (even if on already)"
DO ...
- Friday 22 December 2017 17:56
- Forum: Z-Wave
- Topic: All Z-wave nodes gone after server reinstall
- Replies: 4
- Views: 1843
Re: All Z-wave nodes gone after server reinstall
Got ut to work by re-insetting it in the ESXI host 
thanks for help
thanks for help
- Friday 22 December 2017 16:45
- Forum: Z-Wave
- Topic: All Z-wave nodes gone after server reinstall
- Replies: 4
- Views: 1843
All Z-wave nodes gone after server reinstall
Hi.
I Am running Domoticz on Ubuntu server, and it worked perfect, but due to mess on the ubuntu server I just wanted to do a clean install.
Så this is what i did:
- created a database backup "domoticz.db"
- Reinstalled Ubuntu Server
- Installed Domoticz
- Started Domoticz, imported domoticz.db ...
I Am running Domoticz on Ubuntu server, and it worked perfect, but due to mess on the ubuntu server I just wanted to do a clean install.
Så this is what i did:
- created a database backup "domoticz.db"
- Reinstalled Ubuntu Server
- Installed Domoticz
- Started Domoticz, imported domoticz.db ...
- Tuesday 12 December 2017 18:13
- Forum: Dashticz
- Topic: Dashticz - Translations - NEW LANGUAGES WANTED!
- Replies: 36
- Views: 36973
Re: Dashticz - Translations - WANTED: ch,no,pt,uk,sl,sk,hu,pl,da
If you need a Norwegian translation send me a PM. I can do that,
- Monday 25 September 2017 21:08
- Forum: LUA
- Topic: varibles inside a notification?
- Replies: 3
- Views: 1314
- Sunday 24 September 2017 18:40
- Forum: LUA
- Topic: varibles inside a notification?
- Replies: 3
- Views: 1314
varibles inside a notification?
okey, so I got this to work:
commandArray = {}
if ("1" == "1") then
print("testing")
commandArray['SendNotification']='subject#body#2'
end
return commandArray
but I want to add subject, body and priority as variables
like:
local msg_subject = "Kjøleskap"
local msg_body = "Det er for varmt ...
commandArray = {}
if ("1" == "1") then
print("testing")
commandArray['SendNotification']='subject#body#2'
end
return commandArray
but I want to add subject, body and priority as variables
like:
local msg_subject = "Kjøleskap"
local msg_body = "Det er for varmt ...
- Sunday 24 September 2017 17:37
- Forum: LUA
- Topic: only print if uservar=false
- Replies: 4
- Views: 1367
Re: only print if uservar=false
thanks, it works 
- Sunday 24 September 2017 15:54
- Forum: LUA
- Topic: only print if uservar=false
- Replies: 4
- Views: 1367
Re: only print if uservar=false
the type is "string" and the value is truejvdz wrote: Sunday 24 September 2017 15:44 So what exactly is the value of the UserVariable? is it true or is it "true"?
Which type is the Uservariable?
Jos
- Sunday 24 September 2017 15:20
- Forum: LUA
- Topic: only print if uservar=false
- Replies: 4
- Views: 1367
only print if uservar=false
okey, I made this script to print to the log if a temp sensor is higher, lower or in middle of two values (to monitor fridge and freezer ect)
I try to output "temp is ok" in log each time the script runs if the temp is ok.
And I want to output a warning if it is higher or lower if that is the case ...
I try to output "temp is ok" in log each time the script runs if the temp is ok.
And I want to output a warning if it is higher or lower if that is the case ...
- Sunday 24 September 2017 13:18
- Forum: LUA
- Topic: Error: EventSystem: in *event: [string " ..."]:18: attempt to compare number with nil
- Replies: 2
- Views: 2972
Re: Error: EventSystem: in *event: [string " ..."]:18: attempt to compare number with nil
thanks 
Also, another mistake was that the name of the device was wrong..
this gives me the value:
Also, another mistake was that the name of the device was wrong..
this gives me the value:
Code: Select all
local temp_device = "29 - Kjøleskap"
local temp = tonumber(otherdevices_svalues[temp_device])
print(temp)- Sunday 24 September 2017 11:21
- Forum: LUA
- Topic: Error: EventSystem: in *event: [string " ..."]:18: attempt to compare number with nil
- Replies: 2
- Views: 2972
Error: EventSystem: in *event: [string " ..."]:18: attempt to compare number with nil
Hi.
I try to make my first LUA script to warn me if the temperature is bellow/ower a number
the script works perfect in my LUA editor ZeroBrane Studio (with temp as a variable), but when I try it in Domoticz I got this message:
Error: EventSystem: in Kjøleskap alarm: [string " ..."]:18: attempt to ...
I try to make my first LUA script to warn me if the temperature is bellow/ower a number
the script works perfect in my LUA editor ZeroBrane Studio (with temp as a variable), but when I try it in Domoticz I got this message:
Error: EventSystem: in Kjøleskap alarm: [string " ..."]:18: attempt to ...
- Monday 13 March 2017 20:22
- Forum: Third party and supplementary tools
- Topic: [MyDomoAtHome] Support thread
- Replies: 1080
- Views: 225897
Re: [MyDomoAtHome] Support thread
I think I have updatet MyDomoAtHome now.
How can I check if i have the last version of "MyDomoAtHome"? (Ubuntu Server)
I think it don't worked.
??
## Run `apt-get install nodejs` (as root) to install Node.js v4.x LTS Argon and npm
flemmingss@VM4:~/domoticz/MyDomoAtHome$ sudo apt-get install ...
How can I check if i have the last version of "MyDomoAtHome"? (Ubuntu Server)
I think it don't worked.
??
## Run `apt-get install nodejs` (as root) to install Node.js v4.x LTS Argon and npm
flemmingss@VM4:~/domoticz/MyDomoAtHome$ sudo apt-get install ...
- Thursday 09 March 2017 12:00
- Forum: MySensors
- Topic: How to add sensor that displays numbers of persons in a room?
- Replies: 3
- Views: 1581
Re: How to add sensor that displays numbers of persons in a room?
I don't think this will work.
- Thursday 09 March 2017 11:53
- Forum: Bash / PowerShell / Batch etc.
- Topic: Script to get pollen forecast in Norway
- Replies: 1
- Views: 1551
Script to get pollen forecast in Norway
Just wanted to share this powershell script.
https://github.com/flemmingss/Pollen-fo ... r-Domoticz
Only tested on windows (Although PowerShell is open-source and available on Linux)
I use it on Windows 10 with Domoticz on Ubuntu Server.
https://github.com/flemmingss/Pollen-fo ... r-Domoticz
Only tested on windows (Although PowerShell is open-source and available on Linux)
I use it on Windows 10 with Domoticz on Ubuntu Server.