File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
docs/source/components/nodes Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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
2626Inputs 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+
104109Examples of functionality
105110#########################
106111
You can’t perform that action at this time.
0 commit comments