Questions tagged [bac0]

4 questions
0
votes
0 answers

BAC0 Lite not able to read from MS/TP controller

I am using the following code to read from the regular controller having ip address and it works fine but when I provide the address of MS/TP controller in notation net:mac the error thrown Traceback (most recent call last): File "read.py", line…
Zain Ul Abidin
  • 2,467
  • 1
  • 17
  • 29
0
votes
0 answers

BAC0 Python fastPoll issue

I'm trying to read an analog value from a Bacnet device every 100ms but the fastest i'm ables is every 1sec. Would anyone know why? import BAC0 import json import time from datetime import datetime bacnet = BAC0.lite(ip="192.168.1.8/24",…
0
votes
1 answer

Reading value from Real BACnet Device on using BAC0

I was trying to use BAC0 package in python 3 to get value from BACnet device available in BACnet network. import BAC0 bacnet = BAC0.lite(ip='192.168.5.10/24' ,port=47809) value = bacnet.read("192.168.5.13:47808 analogInput 1 presentValue") Where…
0
votes
1 answer

pyTest for UDP protocol scripts

Would anyone have a pyTest tip if its possible to use with a Python BACnet library called BAC0? I have never used pyTest before just curious if there would be any boiler plate scripts and if my ideology is on track or not. I have a BACnet server app…
bbartling
  • 3,288
  • 9
  • 43
  • 88