From 7ff5e3c49b4fcec7f1cc692690942124c39bce48 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Thu, 16 Oct 2025 17:02:01 +0200 Subject: [PATCH 1/2] Temporarily disable model ID check --- src/modulino/lib/vl53l4cd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modulino/lib/vl53l4cd.py b/src/modulino/lib/vl53l4cd.py index e6ceb41..a302575 100644 --- a/src/modulino/lib/vl53l4cd.py +++ b/src/modulino/lib/vl53l4cd.py @@ -88,8 +88,8 @@ def __init__(self, i2c, address=41): self._i2c = i2c self._device_address = address model_id, module_type = self.model_info - if model_id != 0xEB or module_type != 0xAA: - raise RuntimeError(f"Wrong sensor ID ({model_id}) or type!") + # if model_id != 0xEB or module_type != 0xAA: + # raise RuntimeError(f"Wrong sensor ID ({model_id}) or type!") self._ranging = False self._sensor_init() From 7fbc346fed7ab985383026cd5ff35a0e4df611e5 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Thu, 16 Oct 2025 17:11:03 +0200 Subject: [PATCH 2/2] Add comment to workflow --- .github/workflows/render-documentation.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/render-documentation.yml b/.github/workflows/render-documentation.yml index 8b6235b..756a352 100644 --- a/.github/workflows/render-documentation.yml +++ b/.github/workflows/render-documentation.yml @@ -1,3 +1,6 @@ +# Alternative: +# https://github.com/ml-tooling/lazydocs + name: Render Documentation on: