Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hari

Pages: 1 2 3 [4] 5 6 ... 163
46
you can revert the local changes in the sqlcvs section of the web admin

47
Installation issues / Re: Changing Parameters on Fibaro z-wave dimmer
« on: January 30, 2013, 10:55:55 am »
you want "Set Config Parameter"

48
this is untested but could work: http://svn.linuxmce.org/trac.cgi/changeset/27136

49
Another option would be to just set the port string to "usb" when the DATA_Get_COM_Port_on_PC() is empty (because no serial port was set in the web admin):

Code: [Select]
72         string port = TranslateSerialUSB(DATA_Get_COM_Port_on_PC());
73             if (port == "") port = "usb";

That would not allow people to use tcp or other connection methods, but it would at least fail back to USB when no serial port is set..

50
Adding other adapter types is straightforward. The OneWire DCE device uses the OWCAPI (the C API from the OWFS project). The initialisation is done with the ow_init() call described here: http://owfs.org/uploads/owcapi.1.html#sect8
As you can see it takes the same device options as owfs(5), so besides serial devices it is also possible to specify a tcp connection to an owserver instance or usb devices (e.g. "usb"). ow_init() is called here: http://svn.linuxmce.org/trac.cgi/browser/branches/LinuxMCE-1004/src/OneWire/OneWire.cpp#L78
Code: [Select]
72         string port = TranslateSerialUSB(DATA_Get_COM_Port_on_PC());
[…]
78         if (OW_init(port.c_str())==0) {
[…]
the "port" string would need to be assigned with other owfs device options to achieve the wanted behaviour. So one could probably add a device parameter for a specific owfs init string. If that is set it would take precedence over COM_Port_on_PC.

A quick hack in the database to test if I'm right could look like this:
update Device_DeviceData set IK_DeviceData='usb'  where FK_DeviceData=37 and FK_Device=<id of your OneWire device>;

51
Installation issues / Re: Changing Parameters on Fibaro z-wave dimmer
« on: January 29, 2013, 10:06:18 am »
this is the screen for associations.. you need to reload the web page and sleet the screen for config settings..

53
Installation issues / Re: Changing Parameters on Fibaro z-wave dimmer
« on: January 20, 2013, 09:48:39 pm »
yes, it is.

54
Installation issues / Re: Z-Wave - Aeon, HA07 and SUC/SIS
« on: January 07, 2013, 10:20:19 pm »
you should reset every device with a controller before including it again.

55
Users / Re: Welcome
« on: December 21, 2012, 02:40:30 pm »

56
Developers / Re: Elk Rs232 Protocol PDF links
« on: December 20, 2012, 08:09:27 pm »
come on.. scribd?? To download this document you must become a Premium Reader..

57
Installation issues / Re: Z-Wave - Aeon, HA07 and SUC/SIS
« on: December 17, 2012, 11:47:31 pm »
I don't like using the built in button in bigger networks as SIS mode makes things much easier and you get a flawless routing table.

58
Installation issues / Re: Z-Wave - Aeon, HA07 and SUC/SIS
« on: December 17, 2012, 12:00:28 pm »
 you should not add the devices with the aeon stick button but with an inclusion controller. I'm not sure if the HA07/09 can do this but all recently made portable controllers support inclusion controller mode. Use the "Add node" in the web admin to add the controller. You need to consult your controllers manual to identify the key press/sequence needed on the HA07/09 to get it included as inclusion controller. Then add your devices with the HA07/09.

br Hari

59
Users / Re: FreePbx
« on: December 10, 2012, 11:40:07 pm »
use ago control, you have to configure Asterisk yourself :-)

60
Users / Re: 64-bit support
« on: December 08, 2012, 12:20:34 pm »
if you want to unleash the power of 64bit, you can use ago control (http://www.agocontrol.com). It provides 64bit packages. Not that 64bits are better than 32 for home automation, but you were asking for it :-)

Pages: 1 2 3 [4] 5 6 ... 163