diff --git a/dwm1001.py b/dwm1001.py index 88e2c92..6a6d37d 100644 --- a/dwm1001.py +++ b/dwm1001.py @@ -83,19 +83,6 @@ def system_info(self) -> SystemInfo: return SystemInfo.from_string(response) - @property - def uwb_address(self) -> TagId: - self.send_shell_command(ShellCommand.SI) - - response = self.get_shell_response().splitlines() - - # System info response has several lines, but we only care about the address - address_line = response[1] - address_text_start = address_line.find("addr=") - address_string = address_line[address_text_start:].strip() - - return TagId("0" + address_string.removeprefix("addr=")) - def send_shell_command(self, command: ShellCommand) -> None: self.serial_handle.write(command.value) self.serial_handle.write(ShellCommand.ENTER.value) diff --git a/pyproject.toml b/pyproject.toml index 784197f..b7fb54b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pydwm1001" -version = "0.11.0" +version = "0.12.0" authors = [ { name="Adam Morrissett", email="morrissettal2@vcu.edu" }, ]