Questions tagged [knx]

KNX is a standardized, OSI-based network communications protocol for intelligent buildings.

KNX is the successor to, and convergence of, three previous standards: the European Home Systems Protocol (EHS), BâtiBUS, and the European Installation Bus (EIB or Instabus). The KNX standard is administered by the KNX Association.

KNX defines several physical communication media:

  • Twisted pair wiring (inherited from the BatiBUS and EIB Instabus standards)
  • Powerline networking (inherited from EIB and EHS - similar to that used by X10)
  • Radio (KNX-RF)
  • Ethernet (also known as EIBnet/IP or KNXnet/IP)
21 questions
5
votes
2 answers

KNXnetIP implementation in C#

I'm developing an application in C# to control my KNX home system. So, i've used the software ETS3Demo, and using the software wireshark could "see" the IP datagrams sent by the ETS3 to the KNX/IP Interface. I've alredy succeed with the…
Canha
  • 103
  • 1
  • 7
3
votes
3 answers

Messaging to UI thread

I am developing a serialport application for knx modules in android. I can send and recieve commends to knx modulde. I want to change ui(for ex. button properties) when a message recieved from serialport. I tried it with handlers but i havent be…
Fatih POLAT
  • 147
  • 1
  • 4
  • 16
3
votes
4 answers

KNX and KNXnet/IP implementation in Python

I am looking high and low for anything related to KNX implementation in Python, especially KNXnet/IP. So far I couldn't find anything. I know there are few projects written in Java but I thought I'd give it a shot asking here before I start porting…
danielv
  • 3,039
  • 25
  • 40
2
votes
4 answers

Reading KNX using Raspberry Pi 3 GPIO

My dad wants me to make kind of a smart home. I would like to interface with KNX (a home automation protocol) using the GPIO on a Raspberry Pi 3. Ideally, I would like to build a web interface for it, but I don't have a clue how to interface with…
Simon Ber
  • 33
  • 1
  • 4
2
votes
2 answers

Configure openHAB to run over USB with KNX

I have some problems to establish a connection to my KNX over USB. There is no problem to run the demo-project or even my project. I have configured my rooms on openHAB but can't get a connection, even if the debug log tells my something other. My…
Obl Tobl
  • 5,604
  • 8
  • 41
  • 65
1
vote
1 answer

MODBUS RTU-RS485 ISSUE Temperature and Humidity, cannot read both at same time

I have a Temperature and Humidity Sensor (R444A01) connected to a LogicMachine (LM5LP2) via MODBUS RTU (RS485 port). Sensor R444A01 Datasheet (Please bear in mind we are talking about a non-expensive device, poorly documented and with no support,…
David
  • 21
  • 6
1
vote
1 answer

asio async_receive how to get sender ip address

I wrote a small protocol stack to connect to KNX/IP routers. The mechanism is as follows: Discovery_Channel: For discovery the client sends out an UDP/IP packet to multicast address 224.0.23.12. KNX/IP routers listen to this multicast address and…
1
vote
1 answer

Can KNX Falcon SDK be used to communicate with KNX Virtual?

I'm trying to create an application based on data generated by KNX devices on a smart home. For this reason I have downloaded the C# KNX Falcon SDK and use it to communicate with KNX Virtual. However, every time that I try to initiate a connection…
dpnevmatikos
  • 79
  • 1
  • 5
1
vote
1 answer

What parameters do i have to send to a server?

I can't send a valid request to a Server. I have this protocol description but I don't understand what thing i have to send with socat to the server. header Must always be transmitted in full, even if the command does not require any…
ShoxSpartan
  • 11
  • 1
  • 5
1
vote
1 answer

Calimero knx api on Android stop working

I wrote this simple code in Java for Android to connect to KNX bus over Ethernet (WiFi). Unfortunately not working public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { …
vsm
  • 41
  • 6
0
votes
1 answer

BACnet or KNX comparison with RabbitMQ or Kafka

I would like to see how BACnet and KNX functionalities in a lighting control system can be comparable with a lighting control system created using Kafka or RabbitMQ frameworks. I want to find the pro and cons of implementing a lighting control…
xeon123
  • 819
  • 1
  • 10
  • 25
0
votes
0 answers

Exception connecting to KNX IP Router - Invalid argument

I am using the Calimero library to try and connect to my KNX system. The stack trace that keeps coming up is this: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'knxNetworkLink' defined in class path resource…
user3235738
  • 335
  • 4
  • 22
0
votes
0 answers

Use Button to send value "false" to KNX group address via LogicMachine

I need some help with setting up a Button to control my lighting in one room. I have implemented WebSocket client in Android Studio. I have a Button that I want to send/write the value false for this KNX group address "1/0/4". Is there anyway to do…
Alex
  • 27
  • 8
0
votes
1 answer

How to find out if a KNX device is able to send extended frames?

I am currently working on adding auto-detection of KNX devices as part of the Apache PLC4X KNX drivers (Currently working on the Golang version). I have made great progress on inspection of KNX devices, but just encountered a situation where a…
Christofer Dutz
  • 2,305
  • 1
  • 23
  • 34
0
votes
0 answers

How Parse KNX/IP on Wireshark

I have recently purchased a drone and I downloaded the app that is used to control it. I was able to generate packet capture pcap file from the traffic between the drone and the app and saw on wireshark that it's using KNXIP protocol but don't know…
1
2