![]() |
|
Arylic integration via TCP API - Printable Version +- LogicMachine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Arylic integration via TCP API (/showthread.php?tid=6316) |
Arylic integration via TCP API - MantasJ - 18.02.2026 Hi guys, Arylic is a brand creating audio amplifiers, pre-amplifiers and streamers. It is pretty widely used due to its cost-effective price. It has multiple ways for integration into 3rd party systems, which include: TCP API: TCP API – Arylic Audio TCP API Interface HTTP API: HTTP API – Arylic Audio HTTP API We have made a working script for integration via HTTP API - if someone is interested I could post it here. Maybe it would be possible to get an example for integration via TCP API? Some of the newer Arylic devices does not support HTTP API anymore while continuing support for TCP API. Many thanks in advance! RE: Arylic integration via TCP API - admin - 19.02.2026 Here's an example of sending commands: Code: function encodeuint32(value)For full integration the response must be parsed. Since the device can only handle a single TCP connection you will need a resident script that handles both sending commands and receiving status message from the device. RE: Arylic integration via TCP API - MantasJ - 25.02.2026 Thanks, admin! Works perfectly, as always. |