Skip to content

Commit 1586799

Browse files
committed
Fixed PR issues
1 parent b9abeda commit 1586799

File tree

1 file changed

+7
-2
lines changed
  • docs/source/components/nodes

1 file changed

+7
-2
lines changed

docs/source/components/nodes/imu.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ How to place it
1515
.. code-tab:: py
1616

1717
pipeline = dai.Pipeline()
18-
spi = pipeline.create(dai.node.IMU)
18+
imu = pipeline.create(dai.node.IMU)
1919

2020
.. code-tab:: c++
2121

2222
dai::Pipeline pipeline;
23-
auto spi = pipeline.create<dai::node::IMU>();
23+
auto imu = pipeline.create<dai::node::IMU>();
2424

2525

2626
Inputs and Outputs
@@ -101,6 +101,11 @@ When enabling the IMU sensors (:code:`imu.enableIMUSensor()`), you can select be
101101
- :code:`ARVR_STABILIZED_ROTATION_VECTOR`
102102
- :code:`ARVR_STABILIZED_GAME_ROTATION_VECTOR`
103103

104+
Here are **descriptions of all sensors**:
105+
106+
.. autoclass:: depthai.IMUSensor
107+
:noindex:
108+
104109
Examples of functionality
105110
#########################
106111

0 commit comments

Comments
 (0)