How to use LogiLed#

Important

Before reading this, please check that you have installed the module, if not, here’s how to do it Installing LogiLed

First you need to import the module and load the dll

import logiled

logiled.load_dll()

Once dll is loaded, you can initialize LogitechLed

logi_led = logiled.LogitechLed()

Or NotTested if you want to use untested functions

logi_led_untested = logiled.NotTested()

All LogitechLed functions are available when you use NotTested. Allowing you to use both simultaneously

Note

The full list of functions is available here LogiLed

Best way to stop program#

Important

To terminate a program correctly, we recommend using the LogitechLed instance’s shutdown function

logi_led.shutdown()

You can go to Example to see what you can do with it.