Hi
Im not able to choose the interface RFXCom transmitter to control my Waveman device (to turn it on/off).
I get the message "Selected interface does not support this devicetype!". Is this a bug? Or am i doing something wrong?
In the crfxcomtx.class i can see a Waveman procedure for the RFXMitter, so i thought that it could control my Waveman device.
Thanks
Not able to choose RFXmitter to control Waveman
Moderator: RDNZL
- RDNZL
- Forum Moderator
- Posts: 1008
- Joined: Sun Sep 24, 2006 1:45 pm
- Location: Dordrecht, The Netherlands
- Contact:
Re: Not able to choose RFXmitter to control Waveman
To be honest, I have ported raw code, and didn't implement it fully because I didn't know anyone having Waveman modules.
Will see if I can complete it, and you can test it, if you want it.
Just hold on.
Will see if I can complete it, and you can test it, if you want it.
Just hold on.
Regards, Ron.
Re: Not able to choose RFXmitter to control Waveman
Of course I will test it. That would be great! Thanks!
- RDNZL
- Forum Moderator
- Posts: 1008
- Joined: Sun Sep 24, 2006 1:45 pm
- Location: Dordrecht, The Netherlands
- Contact:
Re: Not able to choose RFXmitter to control Waveman
Well I have just tested it, and it works with version 0.1.195.
Do you run this version?
If you do can you post the result of this query, it should look like this:
Do you run this version?
If you do can you post the result of this query, it should look like this:
Code: Select all
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 280
Server version: 5.1.49-1ubuntu8.1 (Ubuntu)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use domotiga;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from interfaces where id=12;
+----+--------------------+-------------------------------------------------------------------------+------------+
| id | name | type | mode |
+----+--------------------+-------------------------------------------------------------------------+------------+
| 12 | RFXCom Transmitter | X10 ARC AC RFXCom Visonic HEEU Digimax Harrison Koppla Waveman Flamingo | Read Write |
+----+--------------------+-------------------------------------------------------------------------+------------+
1 row in set (0.00 sec)
Regards, Ron.
Re: Not able to choose RFXmitter to control Waveman
Here is the SQL dump:
*************************************************************************************
domotiga@ubuntu:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 155
Server version: 5.1.49-1ubuntu8.1 (Ubuntu)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use domotiga;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from interfaces where id=12;
+----+--------------------------------+-----------------------------------------------+-----------------+
| id | name | type | mode |
+----+--------------------------------+-----------------------------------------------+-----------------+
| 12 | RFXCom Transmitter | X10 ARC AC RFXCom Visonic | Read Write |
+----+--------------------------------+-----------------------------------------------+-----------------+
**************************************************************************************************
I use version 0.1.195 of Domotiga.
*************************************************************************************
domotiga@ubuntu:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 155
Server version: 5.1.49-1ubuntu8.1 (Ubuntu)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use domotiga;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from interfaces where id=12;
+----+--------------------------------+-----------------------------------------------+-----------------+
| id | name | type | mode |
+----+--------------------------------+-----------------------------------------------+-----------------+
| 12 | RFXCom Transmitter | X10 ARC AC RFXCom Visonic | Read Write |
+----+--------------------------------+-----------------------------------------------+-----------------+
**************************************************************************************************
I use version 0.1.195 of Domotiga.
- RDNZL
- Forum Moderator
- Posts: 1008
- Joined: Sun Sep 24, 2006 1:45 pm
- Location: Dordrecht, The Netherlands
- Contact:
Re: Not able to choose RFXmitter to control Waveman
My mistake, I was looking in my development database.
Please update yours with these commands, and try again, if all works, I will add it to the official version.
Please update yours with these commands, and try again, if all works, I will add it to the official version.
Code: Select all
$ mysql -u root -p
Enter password:
mysql> use domotiga;
mysql> UPDATE interfaces SET type = 'X10 ARC AC RFXCom Visonic Waveman' WHERE id = 12;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from interfaces where id = 12;
+----+--------------------+-----------------------------------+------------+
| id | name | type | mode |
+----+--------------------+-----------------------------------+------------+
| 12 | RFXCom Transmitter | X10 ARC AC RFXCom Visonic Waveman | Read Write |
+----+--------------------+-----------------------------------+------------+
1 row in set (0.00 sec)
Regards, Ron.
Re: Not able to choose RFXmitter to control Waveman
That did the trick. Now I can turn my device on/off. Superb!
Thanks for great support!!

Re: Not able to choose RFXmitter to control Waveman
Another question: On the receiver side (rfxcom receiver), do I need to do som database changes here too? To be able to receive from Waveman remote controllers? The log does not show any data received..
- b_weijenberg
- Forum Moderator
- Posts: 1746
- Joined: Sun May 14, 2006 4:32 pm
- Location: Netherlands
Re: Not able to choose RFXmitter to control Waveman
The receiver does not support the Waveman protocol.