Joel Bender
Joel Bender
I can clone that application to make the point writable and/or commandable, support COV notifications, etc., let me know. The point of this particular sample is to present a little...
The APDU requests that are created are given a BACnet address, in your case it will be the network number of the BACnet network on the "other side" of the...
All the virtual devices need to have unique BACnet addresses, so your BACnet IP device server will be a router to a virtual network of virtual devices like the sample....
There is a sample application `ReadWriteProperty.py` that you can run on as many devices as you would like. Let's say you are running it on a device **A** and sending...
1) The first parameter to `read` is the BACnet address. The format that you have provided is a _network number_ followed by the _address_ on that network. In this case...
If you are getting a segmentation not supported error from the device then chances are it is not you as a client that doesn't have a big enough **maxApduLengthAccepted** value,...
Based on a quick survey of the MicroPython language docs, then only thing that gives me pause is the [method resolution order](http://docs.micropython.org/en/latest/pyboard/genrst/core_language.html#method-resolution-order-mro-is-not-compliant-with-cpython) support, as long as you don't build "diamond"...
There are lots of libraries listed [here](https://github.com/micropython/micropython-lib), and the uasyncio family of libraries looks promising. I haven't stumbled across the procedures for including these libraries on a pyboard yet. If...
[This sample](https://github.com/JoelBender/bacpypes/blob/master/samples/HandsOnLab/Sample4_RandomAnalogValueObject.py) is a BACnet device that has a collection of random analog value objects, every time you read the `presentValue` property it returns a new number in the range...
What kinds of conditions would you like to have? I guessing that you would like the application to switch between multiple "states" given some event and the values of the...