Christian Tremblay

Results 59 comments of Christian Tremblay

Is this controller leggit ? The datatype in the response is incorrect

Try removing the subnet in your request. OInly use subnet when you define your bacnet network. ```python import BAC0 myIPAddr = '10.192.62.18/24' bacnet = BAC0.connect(ip=myIPAddr) point = bacnet.read('10.192.62.15 analogValue 86...

what is the result of ```python bacnet.discover() ``` If you are using a BACnet/IP -> MSTP router, you will probably end up knowing on which BACnet network you find the...

Maybe another write at a higher priority ? Try ```python MyController['point'].priority ``` This will inform you about the priority array of the object.

Controller["point"] = x Will write at priority 16 by default if the object is a AnalogValue. BAC0 will use priority 8 for analog output or binary output as you will...

Sleep is bad... the thread are stopped... This is why in the while loop, I use a very small delay in the sleep function. This way, after 0.01sec, if the...

A bacpypes app is a BACnet device on your network. It's not only a client that make read requests on a network like you typically see on client server relationships....

I'm not making a pull request ritght now but code can be examied in issue-45 branch Please, only look for objects.py file... 3 others are there becasue I switched to...

Instances are not necessarily starting at 0. You need to read the objectList first.

And you will need to make a read request on that device to fetch the object name. It won't come with a simple WHOIS.