drivers/ws281x: fix documentation

extend ws281x documentation with usage for ESP32 and VT100

fix indendation
This commit is contained in:
mtreffers 2020-04-06 02:44:22 +02:00
parent 34e3861498
commit 1ca28b8181

View File

@ -40,7 +40,7 @@
* ## ESP32
*
* The ESP32 implementation is frequency independent, as frequencies above 80MHz
* are high enough to support big banging without assembly.
* are high enough to support bit banging without assembly.
*
* ## Native/VT100
*
@ -48,12 +48,23 @@
*
* ### Usage
*
* Add the following to your `Makefile` to use the ATmega backend:
* Add the following to your `Makefile` to use:
*
* * the ATmega backend:
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Makefile
* USEMODULE += ws281x_atmega
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* * the ESP32 backend:
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Makefile
* USEMODULE += ws281x_esp32
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* * the native/VT100 backend:
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Makefile
* USEMODULE += ws281x_vt100
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* @{
*
* @file