JoelBender / BACpypes3

BACnet communications library
33 stars 7 forks source link

BACnetNodeType not fully implemented #44

Closed piotrwiniarczyk-silvair closed 1 month ago

piotrwiniarczyk-silvair commented 1 month ago

Some of the values of the BACnetNodeType are not implemented (

class NodeType(Enumerated):
    unknown = 0
    system = 1
    network = 2
    device = 3
    organizational = 4
    area = 5
    equipment = 6
    point = 7
    collection = 8
    property = 9
    functional = 10
    other = 11

vs

BACnetNodeType ::= ENUMERATED {
unknown(0),
system(1),
network(2),
device(3),
organizational(4),
area(5),
equipment(6),
point(7),
collection(8),
property(9),
functional(10),
other(11),
subsystem(12),
building(13),
floor(14),
section(15),
module(16),
tree(17),
member(18),
protocol(19),
room(20),
zone(21)
}
JoelBender commented 1 month ago

Thank you!