Joel Bender

Results 184 comments of Joel Bender

Don't forget that you can say `--debug __main__:snork.txt` and the debugging output will go to the text file rather than stderr.

This should be solved now, please install **v0.18.6** I just released. The fix includes a new _any_ command which just prints out I-Am's that are received without having to generate...

Yes, it's the same code. Note that a WebCTRL server doesn't have very much content that you can get via BACnet, it is a very simple BACnet server. It is...

First, just a small point to terminology, BACnet is a connection-less protocol based on UDP and not TCP. Once you know the address to communicate with another device you just...

In the configuration laptop #2 please confirm that you are using the CIDR notation for the address in the INI file, probably `10.0.1.75/24`. It needs to know the size of...

It would seem there is some tracking of what was previously reported that is getting cleared. Is this code using threads? I'm going to try and reproduce this error.

I added a new sample application [ReadObjectList.py](https://github.com/JoelBender/bacpypes/commit/fc2510cd5d2ed7a38764b065b4d0a43bfd5c4abd) to the `stage` branch so it will be included in the next release. You can filter out the objects you are not interested...

BACnet communications has a one-to-one relationship between a device and a BACnet address, so you cannot have multiple devices connected to a single IP address. A BACnet IP address includes...

postponed for a later release

I have some very old code that implemented a mostly hideous hardware handshake (RTS/CTS) half-duplex master/slave protocol using the [pySerial](https://github.com/pyserial/pyserial) library. Because it didn't have a `select()` socket-like API all...