@@ -168,9 +168,35 @@ def is_valid(cls, value: str) -> bool:
168
168
169
169
170
170
class Gain (CV ):
171
- """Options for ``accelerometer_range``"""
171
+ """Options for ``accelerometer_range``
172
+
173
+ +-------------------------------+-------------------------+
174
+ | Setting | Gain Value |
175
+ +===============================+=========================+
176
+ | :py:const:`Gain.GAIN_0_5X` | 0.5 |
177
+ +-------------------------------+-------------------------+
178
+ | :py:const:`Gain.GAIN_1X` | 1 |
179
+ +-------------------------------+-------------------------+
180
+ | :py:const:`Gain.GAIN_2X` | 2 |
181
+ +-------------------------------+-------------------------+
182
+ | :py:const:`Gain.GAIN_4X` | 4 |
183
+ +-------------------------------+-------------------------+
184
+ | :py:const:`Gain.GAIN_8X` | 8 |
185
+ +-------------------------------+-------------------------+
186
+ | :py:const:`Gain.GAIN_16X` | 16 |
187
+ +-------------------------------+-------------------------+
188
+ | :py:const:`Gain.GAIN_32X` | 32 |
189
+ +-------------------------------+-------------------------+
190
+ | :py:const:`Gain.GAIN_64X` | 64 |
191
+ +-------------------------------+-------------------------+
192
+ | :py:const:`Gain.GAIN_128X` | 128 |
193
+ +-------------------------------+-------------------------+
194
+ | :py:const:`Gain.GAIN_256X` | 256 |
195
+ +-------------------------------+-------------------------+
196
+ | :py:const:`Gain.GAIN_512X` | 512 |
197
+ +-------------------------------+-------------------------+
172
198
173
- pass # pylint: disable=unnecessary-pass
199
+ """
174
200
175
201
176
202
Gain .add_values (
@@ -193,8 +219,6 @@ class Gain(CV):
193
219
class SMUX_OUT (CV ):
194
220
"""Options for ``smux_out``"""
195
221
196
- pass # pylint: disable=unnecessary-pass
197
-
198
222
199
223
SMUX_OUT .add_values (
200
224
(
@@ -212,8 +236,6 @@ class SMUX_OUT(CV):
212
236
class SMUX_IN (CV ):
213
237
"""Options for ``smux_in``"""
214
238
215
- pass # pylint: disable=unnecessary-pass
216
-
217
239
218
240
SMUX_IN .add_values (
219
241
(
0 commit comments