Difference between revisions of "LEDCtl (WS2812b LED Controller)"
Jump to navigation
Jump to search
(Created page with "Category:STM32 Hardware Development LED strips and panels based on some form of the WS2812 RGB LEDs have gained an enormous popularity the past couple of years wit...") |
|||
Line 1: | Line 1: | ||
[[Category:STM32 Hardware Development]] | [[Category:STM32 Hardware Development]] | ||
[[LED]] strips and panels based on some form of the [[WS2812]] RGB LEDs have gained an enormous popularity the past couple of years with the price of the individual LEDs dropping well below 10 cent each. These LEDS contain 3 individual LEDs: one red, one green and one blue and the intensity of each of these can be set at 256 different levels. | [[LED]] strips and panels based on some form of the [[WS2812]] RGB LEDs have gained an enormous popularity the past couple of years with the price of the individual LEDs dropping well below 10 cent each. These LEDS contain 3 individual LEDs: one red, one green and one blue and the intensity of each of these can be set at 256 different levels. | ||
+ | |||
+ | == Hayes Like Serial Interface == | ||
+ | |||
+ | To control the attached LEDs a simple serial interface is used. | ||
+ | |||
+ | === AT Commands === | ||
+ | |||
+ | {|class=wikitable | ||
+ | |- | ||
+ | ! Command | ||
+ | ! Parameters | ||
+ | ! Example | ||
+ | ! Response | ||
+ | ! Description | ||
+ | |- | ||
+ | | &F | ||
+ | | | ||
+ | | AT&F | ||
+ | | OK | ||
+ | | Factory reset | ||
+ | |- | ||
+ | | Z | ||
+ | | | ||
+ | | ATZ | ||
+ | | OK | ||
+ | | Reset device | ||
+ | |} |
Revision as of 02:48, 25 December 2020
LED strips and panels based on some form of the WS2812 RGB LEDs have gained an enormous popularity the past couple of years with the price of the individual LEDs dropping well below 10 cent each. These LEDS contain 3 individual LEDs: one red, one green and one blue and the intensity of each of these can be set at 256 different levels.
Hayes Like Serial Interface
To control the attached LEDs a simple serial interface is used.
AT Commands
Command | Parameters | Example | Response | Description |
---|---|---|---|---|
&F | AT&F | OK | Factory reset | |
Z | ATZ | OK | Reset device |