File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ def frequency(self, val):
184
184
# pylint: disable=inconsistent-return-statements
185
185
@property
186
186
def proximity (self ):
187
- """Returns the detected proximity of an object in front of the sensor. This
187
+ """The detected proximity of an object in front of the sensor. This
188
188
is a unit-less unsigned 16-bit value (0-65535) INVERSELY proportional
189
189
to the distance of an object in front of the sensor (up to a max of
190
190
~200mm). For example a value of 10 is an object farther away than a
@@ -205,7 +205,7 @@ def proximity(self):
205
205
206
206
@property
207
207
def ambient (self ):
208
- """Returns the detected ambient light in front of the sensor. This is
208
+ """The detected ambient light in front of the sensor. This is
209
209
a unit-less unsigned 16-bit value (0-65535) with higher values for
210
210
more detected light. See the ambient_lux property for a value in lux.
211
211
"""
@@ -224,7 +224,7 @@ def ambient(self):
224
224
225
225
@property
226
226
def ambient_lux (self ):
227
- """Returns the detected ambient light in front of the sensor as a value in
227
+ """The detected ambient light in front of the sensor as a value in
228
228
lux.
229
229
"""
230
230
return self .ambient * _VCNL4010_AMBIENT_LUX_SCALE
You can’t perform that action at this time.
0 commit comments