MitchCayCRC

Results 2 issues of MitchCayCRC

I created a new writeable analog value object class: ``` @register_object_type class WritableAnalogValueObject(AnalogValueObject): properties = [WritableProperty('presentValue', Real), WritableProperty('objectName', CharacterString, optional=False), WritableProperty('units', EngineeringUnits)] ``` Then later in the script when trying...

enhancement

I am looking for a way to do this (or am perhaps misunderstanding bacpypes functionality) but it creates communication issues. I am trying to read values from a device that...