mirror of
https://github.com/wled/WLED.git
synced 2025-04-19 20:37:23 +00:00
17 lines
247 B
C++
17 lines
247 B
C++
#include "wled.h"
|
|
|
|
uint32_t WASMFX::now() {
|
|
return strip.now;
|
|
}
|
|
|
|
uint32_t WASMFX::speed() {
|
|
return SEGMENT.speed;
|
|
}
|
|
|
|
uint32_t WASMFX::intensity() {
|
|
return SEGMENT.intensity;
|
|
}
|
|
|
|
uint32_t WASMFX::len() {
|
|
return strip._virtualSegmentLength;
|
|
} |