22 lines
No EOL
411 B
ReStructuredText
22 lines
No EOL
411 B
ReStructuredText
.. _lib_irsensor:
|
|
|
|
Infrared Sensor
|
|
****************
|
|
|
|
.. autoclass:: compLib.IRSensor.IRSensor
|
|
:members:
|
|
|
|
Examples
|
|
=========
|
|
|
|
Testing analog sensors
|
|
-------------------------
|
|
|
|
.. code-block:: python
|
|
|
|
from compLib import IRSensor
|
|
|
|
ir = IRSensor.IRSensor()
|
|
|
|
while True:
|
|
print ("left: {} middle: {} right: {}".format(ir.bottom_left_analog(), ir.bottom_middle_analog(), ir.bottom_right_analog())) |