Trying to create an object on my device #437
Replies: 2 comments 9 replies
-
if you want to make a BACnet server maybe look at this as an example, its just a bunch of random points and simulate values. |
Beta Was this translation helpful? Give feedback.
-
so if you only want a BACnet client device to just read and write to other devices... This is a basic example of just making simple read requests. To me when someone states "objects" at least in my mind its affiliated with a BACnet server project where a client device is requesting some sort of data associated with an "object" like a point value or name or device description.... where then the client script requests whatever BACnet object that the server is hosting. I could be wrong with the terminology but that's my best guess... |
Beta Was this translation helpful? Give feedback.
-
I'm trying to create an object on my device (not create a local object), I'm using syntax:
bacnet.create_object(analog_value, device1, "TEST1", "Did this just get created?", presentValue=1.0, commandable=True)
But when this runs I get error AttributeError: 'Lite' object has no attribute 'create_object'.
I don't understand, I'm not starting in 'Lite' mode, I use this:
bacnet = BAC0.connect(ip='192.168.17.186/21')
Anyone with any insight? Appreciation in advance.
Beta Was this translation helpful? Give feedback.
All reactions