From 37ada5852e8b4c42995451253de878d03bc5a22a Mon Sep 17 00:00:00 2001 From: Marcel Mueller Date: Tue, 2 Oct 2018 16:56:01 +0200 Subject: [PATCH] Added a note about ActionMessageCode to README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 26ef80b..1581497 100644 --- a/README.md +++ b/README.md @@ -134,3 +134,10 @@ If connecting in routing mode: If connecting in tunneling mode: * make sure the system firewall allows incoming connections to the specified `localPort` + +If sending actions is not working for you, you might need to define the parameter `ActionMessageCode` on the connection. Some KNX Router/Interfaces need this to be set to 0x29 for example. + +```csharp +connection = new KnxConnectionRouting(); +connection.ActionMessageCode = 0x29; +```