Questions tagged [bacnet4j]

A high-performance implementation of the BACnet I/P protocol written for Java.

A high-performance implementation of the BACnet I/P protocol written for Java (minimum version 1.5) by Serotonin Software. Supports all BACnet services and full message segregation. Can be used for field devices or for control platforms.

20 questions
2
votes
1 answer

How to use BAC0 readRange in Python

Hi every one I try to use BAC0 package in python 3 to get value of multiple point in bacnet network. I user something like following: bacnet = BAC0.lite(ip=x.x.x.x) tmp_points = bacnet.readRange("11:2 analogInput 0 presentValue"); and it seems not…
Babak no'doust
  • 631
  • 7
  • 18
1
vote
1 answer

BACNet4J: How get and set values?

i'm working with bacnet through java, bacnet4j project. I could realize how get the values of my devices, my analog and digital values. But how can i change them ? How get/set values using bacnet4j ? Best regards, Valter Henrique.
Valter Silva
  • 16,446
  • 52
  • 137
  • 218
1
vote
2 answers

Discover BACnet device in different network with bacnet4j

I am using bacnet4j library to discover Remote BACnet devices. In the same network, everything is working as expected. But I could not find the BACnet controller device located in the different network. String hostAddress="10.8.102.28"; IpNetwork…
krishna
  • 123
  • 1
  • 1
  • 12
1
vote
1 answer

Getting Error of no class definition in bacnet4j

I am trying to work with bacnet4j. but unable to find any tutorial or guide. I am using Bacnet-stack simulator for testing. I tried this code to check i am functionality and I have also tried localdevice but both the cases i am getting error of no…
1
vote
2 answers

BacNet/IP Broadcast from Raspberry OS not working

Please find below code, which runs fine on Windows 10 System and is able to discover remote devices across the network. On Linux we are creating a jar out of the code and running it using java -jar test.jar package main; import…
Rahul
  • 51
  • 1
  • 4
1
vote
1 answer

Can bacnet4j work in android

I want to make a BACnet client in an android tablet. Is it possible to use BACnet4J in Android? If yes, is there a different jar file for Android?
st lip
  • 23
  • 5
0
votes
2 answers

How to handle BACnet/SC Certificate expiry in BACnet devices

I need help with implementing an alarm/event to notify when a certificate in BACnet secure connect links is going to expire within the next 90 days. Should I use event notifications or directly use the BACnet Multi-state/analog Value point Object to…
0
votes
1 answer

bacnet inside docker container

I want to run my bacnet application in a docker launched with docker compose. The host machine is on the bacnet network. I would like to be able to discover the bacnet network in my application. My application is unable to send the broadcast…
0
votes
2 answers

How to use BAC0 read value in Python?

I was trying to use BAC0 to get values of multiple points in BACnet system, I tried all the Posters and Getting starts, but no one works.... I can get value from BACnet tools which means the connection should be right: enter image description…
Zjiang
  • 1
0
votes
1 answer

How to automate reading and writing values in yabe with bacnet4j Jar

I am new to bacnet automation and to bacnet4j, We have a bacnet server that broadcast bacnet points and I could see that in yabe manually by adding the device. In this case, my laptop and the server are connected to the same network. How can i…
0
votes
1 answer

Spring boot and BACnet4j

I'm trying to run BACnet4j with spring boot together. BACnet4j is implementation of BACnet protocol, in my case it is BACnet IP (UDP communication on port ex.47808). When I start my BACnet app alone it's working fine. (application is simple BACnet…
piotrekotw
  • 43
  • 5
0
votes
2 answers

Read Objects and Properties from BACnet interface

I am trying to read Objects and Properties from BACnet interface. We are using example code of BACnet4J where our client code is expected to communicate with BACnet interface provided by LumInsight Desktop(Propriety Software). So, in our case the…
Ishan
  • 13
  • 7
0
votes
3 answers

BACnet client not connecting to BACnet interface using BACnet4j

I am a newbie to BACnet and other automation protocols.We are going to write one BACnet client which is expected to connect to BACnet interface to fetch the objects and further we are going to ingest these objects in our microservices layer.Our…
Ishan
  • 13
  • 7
0
votes
2 answers

How bacnet device reply Iam message

I been trying to understand how bacnet java works on device reply “iam” message to the respective call For example: 1. Device 5678 send broadcast message with new whois message(device id 1234) 2. Device 1234 replies “iam” message to device…
SorC
  • 11
  • 1
  • 5
0
votes
1 answer

Bacnet on Raspberry Pi

Currently I am working on simulation of SCADA system using bacnet protocol for network communication with my Raspberrry Pi for my final year project. Current status: Raspberry Pi 2 able to run openplc (act like PLC) done installing ScadaBR (act like…
SorC
  • 11
  • 1
  • 5
1
2