Skip to content

Commit

Permalink
Merge pull request #1224 from samson0v/master
Browse files Browse the repository at this point in the history
Fixed BACnet application
  • Loading branch information
imbeacon authored Nov 9, 2023
2 parents 11e0eb4 + 8934f1f commit 6eada6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def __iam_cb(self, iocb: IOCB, vendor_id=None):
self._log.debug("Received IAm Response: %s", str(apdu))
if self.discovered_devices.get(apdu.pduSource) is None:
self.discovered_devices[apdu.pduSource] = {}
value = self.__connector.default_converters["uplink_converter"]("{}").convert(None, apdu)
value = self.__connector.default_converters["uplink_converter"]("{}", self._log).convert(None, apdu)
self._log.debug("Property: %s is %s", apdu.propertyIdentifier, value)
self.discovered_devices[apdu.pduSource].update({apdu.propertyIdentifier: value})
data_to_connector = {
Expand Down

0 comments on commit 6eada6a

Please sign in to comment.