Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team

Question
Matt654 0
Hello, not sure if it should be here or other topics..
I need some help with creating a virtual device for Anthem MRX 720. I am just after basic working out the format, i will create the control after..
I have tried it like below and doesn't work. the amp freezes and wont take any more input by remote or physical on panel.. i have to unplug after i tried fibaro command and the reset.
I am new to virtual device for AVR so i have taken some code from DENON remote
(Device ip 192.168.1.7 and port is 14999) - should i use this port, or port 80?
Thanks
fibaro:log("Connecting...");
local selfId = fibaro:getSelfId();
local icon = fibaro:get(selfId, "deviceIcon");
fibaro:call(selfId, "setProperty", "currentIcon", icon)
local ip = fibaro:get(selfId, 'IPAddress');
local port = fibaro:get(selfId, 'TCPPort');
tcpSocket = Net.FTcpSocket(ip, port);
tcpSocket:setReadTimeout(2000);
tcpSocket:write("Z1POW1")
fibaro:sleep(1000);
result, err = tcpSocket:read();
tcpSocket:disconnect();
if (err == 0) then
fibaro:log("transfer OK");
fibaro:debug("transfer OK");
else
fibaro:log("transfer failed");
fibaro:debug("transfer failed");
end
Please login or register to see this attachment.
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.