This MicroPython LED library is designed for any hardware platform that supports MicroPython such as Raspberry Pi Pico, ESP32, Micro:bit... to make it easy to control LED. It is easy to use for not only beginners but also experienced users...
It is created by DIYables to work with DIYables products, but also work with products from other brands. Please consider purchasing products from DIYables Store on Amazon from to support our work.
- Turn on/off
- Toggle between on and off
- Fade in/out
- Blink
- Blink with the number of times
- Blink in a period of time
- Cancel the blinking or fading anytime
- Support both control modes: CTRL_ANODE and CTRL_CATHODE
- Get the on/off LED's states: LED_OFF, LED_ON
- Get the operation LED's state: LED_IDLE, LED_DELAY, LED_FADING, LED_BLINKING
- All functions are non-blocking (without using delay() function)
- Easy to use with multiple LEDs
- __init__(pin, mode)
- turn_on(delay_time=0)
- turn_off(delay_time=0)
- toggle(delay_time=0)
- fade(fade_from, fade_to, fade_time, delay_time=0)
- blink(on_time, off_time, delay_time=0)
- blink_with_duration(on_time, off_time, blink_time, delay_time=0)
- blink_n_times(on_time, off_time, number_of_times, delay_time=0)
- cancel()
- get_on_off()
- get_state()
- loop()
- led_blink.py
- led_fade.py
- led_on_off.py
- led_toggle.py
- led_multiple.py
- led_blink_n_times.py
- led_blink_with_duration.py
- led_array.py