Skip to content

Commit 3c407e6

Browse files
committed
add branch update_baumer and update basic functionality for Baumer sensors
1 parent 744338b commit 3c407e6

File tree

6 files changed

+491
-125
lines changed

6 files changed

+491
-125
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.. automodule:: compas_fab.sensors

src/compas_fab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
compas_fab.backends
1717
compas_fab.robots
1818
compas_fab.utilities
19-
19+
compas_fab.sensors
2020
compas_fab.blender
2121
compas_fab.ghpython
2222
compas_fab.rhino

src/compas_fab/sensors/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
88
Package containing a common interface to integrate sensors of various vendors.
99
10+
Main classes
11+
------------
12+
1013
.. autosummary::
1114
:toctree: generated/
1215
:nosignatures:
1316
1417
SerialSensor
1518
1619
Baumer sensors
17-
==============
20+
--------------
1821
1922
.. currentmodule:: compas_fab.sensors.baumer
2023
@@ -25,7 +28,11 @@
2528
:nosignatures:
2629
2730
PosCon3D
31+
PosConCM
2832
2933
"""
3034

3135
from .base import *
36+
from .baumer import *
37+
38+
__all__ = [name for name in dir() if not name.startswith('_')]

0 commit comments

Comments
 (0)