Page 28 of 94

Re: domoticz in synology as package! Available now.

Posted: Saturday 16 January 2016 8:34
by Isane
I've got a question. I use domoticz just for testing and discover domoticz.

I have added the following repositories for downloading domoticz.
Image

But now i've recieving a lot of updates from domoticz. Nearly every week 2 updates.

Image
Image

I see now there is a Beta Sign when I open domoticz in the package center.
How do i see if am im downloading a beta?

I Use now version 2.0.410-7

Re: domoticz in synology as package! Available now.

Posted: Saturday 16 January 2016 12:05
by jumbotroll
Edit:
New url for domoticz beta and stable!

http://www.jadahl.com
Beta versions:
http://www.jadahl.com/domoticz_beta/

Stable versions:
http://www.jadahl.com/domoticz_stable/

Re: domoticz in synology as package! Available now.

Posted: Sunday 17 January 2016 12:22
by erikf
Hello Jumbotroll,

Would it be possible to include the driver for Aeon Labs’ Z-Stick 2S??

It would save me the €55,- for the Z plus version... ;-))

Hope you can put it in the next Beta.

When it is included I will put in a donation!

Re: domoticz in synology as package! Available now.

Posted: Sunday 17 January 2016 12:28
by jumbotroll
NEW SERVER URL!

Domoticz Beta build:
http://www.jadahl.com/domoticz_beta/

Domoticz Stable build:
http://www.jadahl.com/domoticz_stable/

Re: domoticz in synology as package! Available now.

Posted: Sunday 17 January 2016 12:30
by jumbotroll
erikf wrote:Hello Jumbotroll,

Would it be possible to include the driver for Aeon Labs’ Z-Stick 2S??

It would save me the €55,- for the Z plus version... ;-))

Hope you can put it in the next Beta.

When it is included I will put in a donation!
I think Aeon Labs’ Z-Stick 2S use cp210x driver and it is included in my builds.

Give me moore info.
What NAS?
What DSM version?
What driver is missing?

Re: domoticz in synology as package! Available now.

Posted: Monday 18 January 2016 8:10
by erikf
Jumbotroll,

DS211,
DSM 5.2-5644 Update 1
CP210x UART Bridge / myAVR mySmartUSB light - Cygnal Integrated Products, Inc.

I installed your software package and plugged the stick in and added it in the hardware section of Domoticz. It is mounted on /dev/ttyUSB1
But in settings nothing shows up.
In the log:

2016-01-18 09:47:52.898 Error: OpenZWave: Driver Failed!!
OpenZWave: Version: 1.4-3-g3f1d609

Hope you can help.

Best regards.

Re: domoticz in synology as package! Available now.

Posted: Monday 18 January 2016 14:02
by erikf
Jumbotroll,

I installed your latest Beta and removed the stick in the hardware menu and added it again.To my surprise it showed up in all its glory.
It works!!

No errors about the driver in the log anymore. Now I have to find out how to configure all those nice things etc etc...

Thanks.

(donation on the way!)

Re: domoticz in synology as package! Available now.

Posted: Monday 18 January 2016 15:09
by Alle

Code: Select all

https://www.domoticz.com/wiki/Evohome
Can the script for the RFG100 be added to the package?

Re: domoticz in synology as package! Available now.

Posted: Tuesday 19 January 2016 12:32
by jumbotroll
Alle wrote:

Code: Select all

https://www.domoticz.com/wiki/Evohome
Can the script for the RFG100 be added to the package?
This does not seem like a simple thing to do, so there are no plans to add at the moment.

Re: domoticz in synology as package! Available now.

Posted: Tuesday 19 January 2016 21:41
by cherowley
Hi!

Soo, what's the best way to send tcp commands from the command line so I can control stuff like the magic ufo rgbww controller or chinese wifi mains sockets?

Synology doesn't have netcat or socat. Didn't really want to mess around installing bootloaders/ipkg/reboots etc..

Tried using telnet and that seems ok for some things BUT i believe it won't do values 0 or 255? Also wouldn't be able to put chr(0) into a string to echo on the command line anyway I presume?

Example lua script I'm using:

function send(msg)
runcommand = "echo "..msg .."| telnet "..IP.." "..Port.." "
print (runcommand)
os.execute(runcommand)
end

if devicechanged[DomDevice] then

if(devicechanged[DomDevice]=='Off') then
print("Turning OFF")
-- send(string.char(49,12,39,128,255,1,15,243)) won't work as 255 present
-- send(string.char(49,12,39,128,0,1,15,243)) won't work as 0 present
send(string.char(113,36,15,164))
elseif (devicechanged[DomDevice]=='On') then
print("Turning On")
send(string.char(113,35,15,163))
else
print("Values: " .. otherdevices_svalues[DomDevice]);
end
end;

Cheers!

Re: domoticz in synology as package! Available now.

Posted: Friday 22 January 2016 15:33
by jumbotroll
@cherowley
Have you tested with ssh and root user or telnet root user?

ssh root@ip-adress

Re: domoticz in synology as package! Available now.

Posted: Friday 22 January 2016 15:35
by Alle
jumbotroll wrote:
Alle wrote:

Code: Select all

https://www.domoticz.com/wiki/Evohome
Can the script for the RFG100 be added to the package?
This does not seem like a simple thing to do, so there are no plans to add at the moment.
Too bad...

Verstuurd vanaf mijn E6653 met Tapatalk

Re: domoticz in synology as package! Available now.

Posted: Friday 22 January 2016 16:36
by cherowley
jumbotroll wrote:@cherowley
Have you tested with ssh and root user or telnet root user?

ssh root@ip-adress

Hi!

Thanks for the reply, i've typed "nc" at the command prompt whilst ssh'd into the box if that is what you mean?

Re: domoticz in synology as package! Available now.

Posted: Friday 22 January 2016 18:50
by Gravityz
@Jumbotroll.

is there a list of changes available throughout the various versions.

might be nice to know in what area things have changed(so you know if it is save to upgrade or not)

Re: domoticz in synology as package! Available now.

Posted: Friday 22 January 2016 22:27
by jumbotroll
Gravityz wrote:@Jumbotroll.

is there a list of changes available throughout the various versions.

might be nice to know in what area things have changed(so you know if it is save to upgrade or not)
https://github.com/domoticz/domoticz/commits/master

Re: domoticz in synology as package! Available now.

Posted: Saturday 23 January 2016 10:57
by Gravityz
thanks.

Re: domoticz in synology as package! Available now.

Posted: Saturday 23 January 2016 19:27
by AxelvanH
Has enyone experience with this package on DSM 6.2 beta?

It won't start on my device (DS414) :cry:

Re: domoticz in synology as package! Available now.

Posted: Saturday 23 January 2016 19:36
by Gravityz
Upgraded to 4298 today.

i noticed thee is a new device under the hardware tab called

4 Domoticz Internal Yes Domoticz Internal interface 1 Disabled

what is this for?

Re: domoticz in synology as package! Available now.

Posted: Sunday 24 January 2016 17:49
by Egregius
AxelvanH wrote:Has enyone experience with this package on DSM 6.2 beta?

It won't start on my device (DS414) :cry:
I was just trying to move from RPi to Syno (not that the RPi isn't stable, but to free him to use as camera).
Domoticz runs on DSM 6.0-7274 (I suppose you mean beta 2 instead of 6.2), but only one USB port is recognised instead of 2.
So need to figure out if it's the RFXCOM or the Zwave stick...

Re: domoticz in synology as package! Available now.

Posted: Sunday 24 January 2016 19:29
by Alle
I just installed domoticz on my 'old' DS710+, but the Aeon labs z-stick s2 is not recognized.