mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
643 B
643 B
Controlling LEDs
You can control the vision LEDs of supported hardware via PhotonLib using the setLED() method on a PhotonCamera instance. In Java and C++, an VisionLEDMode enum class is provided to choose values from. These values include, kOff, kOn, kBlink, and kDefault. kDefault uses the default LED value from the selected pipeline.
.. tab-set-code::
.. code-block:: java
// Blink the LEDs.
camera.setLED(VisionLEDMode.kBlink);
.. code-block:: c++
// Blink the LEDs.
camera.SetLED(photonlib::VisionLEDMode::kBlink);
.. code-block:: python
# Coming Soon!