LogicMachine Forum
Akuvox intercome - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2)
+--- Thread: Akuvox intercome (/showthread.php?tid=6156)



Akuvox intercome - khalil - 15.10.2025

Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command


RE: Akuvox intercome - davidchispas - 16.10.2025

(15.10.2025, 08:08)khalil Wrote: Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command



Yes, that works fine.

If the video intercom has the 'High Security Mode' option, you need to disable it.

Then add the following script to LM:

Code:
require('socket.http') url = 'http://{device_AKUVOX_IP}/fcgi/do?action=OpenDoor&UserName=admin&Password=12345&DoorNum=1' res, err = socket.http.request(url) log(res, err)



RE: Akuvox intercome - khalil - 19.10.2025

(16.10.2025, 11:16)davidchispas Wrote:
(15.10.2025, 08:08)khalil Wrote: Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command



Yes, that works fine.

If the video intercom has the 'High Security Mode' option, you need to disable it.

Then add the following script to LM:

Code:
require('socket.http') url = 'http://{device_AKUVOX_IP}/fcgi/do?action=OpenDoor&UserName=admin&Password=12345&DoorNum=1' res, err = socket.http.request(url) log(res, err)

Thank you dear


RE: Akuvox intercome - khalil - 14.07.2026

Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated


RE: Akuvox intercome - davidchispas - 15.07.2026

(Yesterday, 13:39)khalil Wrote: Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated

Hi! Regarding your question about connecting the S657 intercom with LogicMachine using HTTP commands, you need to follow these configuration steps on both devices:

1. S657 Configuration
  • Security: Go to the Security > Basic Settings panel and make sure to disable high security mode.
  • Actions: The S657 allows you to send HTTP commands either directly from the intercom call or via a configurable button. You can set this up under Display Settings and Relay.

2. LogicMachine Configuration
  • Enable service: Go to System Configuration > Services > Remote Services and enable the Remote Services option. This allows the device to receive external HTTP commands.
  • Credentials: The username will be
    remote
    . Make sure to set your own password in that same section.

3. Functionality Test
To verify everything is working correctly before programming it into the intercom, open any web browser on the same network and run this test command (replace the placeholder data in parentheses with your actual details):
http://remote:(your_password)@(your_LM_IP)/scada-remote?m=json&r=grp&fn=write&alias=1/1/1&value=true

If the group address changes its state, the communication is ready to go.


RE: Akuvox intercome - khalil - 15.07.2026

(Today, 06:50)davidchispas Wrote:
(Yesterday, 13:39)khalil Wrote: Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated

Hi! Regarding your question about connecting the S657 intercom with LogicMachine using HTTP commands, you need to follow these configuration steps on both devices:

1. S657 Configuration
  • Security: Go to the Security > Basic Settings panel and make sure to disable high security mode.
  • Actions: The S657 allows you to send HTTP commands either directly from the intercom call or via a configurable button. You can set this up under Display Settings and Relay.

2. LogicMachine Configuration
  • Enable service: Go to System Configuration > Services > Remote Services and enable the Remote Services option. This allows the device to receive external HTTP commands.
  • Credentials: The username will be
    remote
    . Make sure to set your own password in that same section.

3. Functionality Test
To verify everything is working correctly before programming it into the intercom, open any web browser on the same network and run this test command (replace the placeholder data in parentheses with your actual details):
http://remote:(your_password)@(your_LM_IP)/scada-remote?m=json&r=grp&fn=write&alias=1/1/1&value=true

If the group address changes its state, the communication is ready to go.

Thank you very much.
Clear steps, appreciate that.

is there a secure way to do this?
this command will be used to open the main door of the house!


RE: Akuvox intercome - admin - 15.07.2026

Try using HTTPS instead of HTTP and see if it works.