In the command line I can do things like this:
read 7 analogValue:10 presentValue
But how can I programatically read like this and store to a variable in python? Currently I'm trying like this:
this_console = BacnetClientConsoleCmd()
if _debug: _log.debug(" - this_console: %r", this_console)
# enable sleeping will help with threads
enable_sleeping()
_log.debug("running")
present_value = this_console.do_read("read 7 analogValue:10 presentValue")