Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/render-documentation.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Alternative:
# https://github.com/ml-tooling/lazydocs

name: Render Documentation

on:
Expand Down
4 changes: 2 additions & 2 deletions src/modulino/lib/vl53l4cd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down