-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup is really easy, after first boot and WiFi/LEDs setup: go to wled.local/edit and upload a couple image to WLed's filesystem. Only PNG is supported right now, further support for GIF is planned. The image should be as wide as the 1D segment you want to apply to. When done, go to the Effect page on the UI, select "POV Image" effect. You could also update the image with a post to the JSON-API like this: curl -X POST http://[wled]/json/state -d '{"seg":{"id":0,"fx":114,"f":"/axel.png"}}' The segment should move at around 120RPM (that's 2revolutions per seconds) for an image to showup. More informations and pictures here : https://lumina.toys
- Loading branch information
Arthur Suzuki
committed
Aug 9, 2024
1 parent
d2401a2
commit ed5eb28
Showing
4 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
#pragma once | ||
#include "wled.h" | ||
#include <PNGdec.h> | ||
|
||
void * openFile(const char *filename, int32_t *size) { | ||
f = WLED_FS.open(filename); | ||
*size = f.size(); | ||
return &f; | ||
} | ||
|
||
void closeFile(void *handle) { | ||
if (f) f.close(); | ||
} | ||
|
||
int32_t readFile(PNGFILE *pFile, uint8_t *pBuf, int32_t iLen) | ||
{ | ||
int32_t iBytesRead; | ||
iBytesRead = iLen; | ||
File *f = static_cast<File *>(pFile->fHandle); | ||
// Note: If you read a file all the way to the last byte, seek() stops working | ||
if ((pFile->iSize - pFile->iPos) < iLen) | ||
iBytesRead = pFile->iSize - pFile->iPos - 1; // <-- ugly work-around | ||
if (iBytesRead <= 0) | ||
return 0; | ||
iBytesRead = (int32_t)f->read(pBuf, iBytesRead); | ||
pFile->iPos = f->position(); | ||
return iBytesRead; | ||
} | ||
|
||
int32_t seekFile(PNGFILE *pFile, int32_t iPosition) | ||
{ | ||
int i = micros(); | ||
File *f = static_cast<File *>(pFile->fHandle); | ||
f->seek(iPosition); | ||
pFile->iPos = (int32_t)f->position(); | ||
i = micros() - i; | ||
return pFile->iPos; | ||
} | ||
|
||
void draw(PNGDRAW *pDraw) { | ||
uint16_t usPixels[SEGLEN]; | ||
png.getLineAsRGB565(pDraw, usPixels, PNG_RGB565_LITTLE_ENDIAN, 0xffffffff); | ||
for(int x=0; x < SEGLEN; x++) { | ||
uint16_t color = usPixels[x]; | ||
byte r = ((color >> 11) & 0x1F); | ||
byte g = ((color >> 5) & 0x3F); | ||
byte b = (color & 0x1F); | ||
SEGMENT.setPixelColor(x, RGBW32(r,g,b,0)); | ||
} | ||
strip.show(); | ||
} | ||
|
||
uint16_t mode_pov_image(void) { | ||
const char * filepath = SEGMENT.name; | ||
int rc = png.open(filepath, openFile, closeFile, readFile, seekFile, draw); | ||
if (rc == PNG_SUCCESS) { | ||
rc = png.decode(NULL, 0); | ||
png.close(); | ||
return FRAMETIME; | ||
} | ||
return FRAMETIME; | ||
} | ||
|
||
class PovDisplayUsermod : public Usermod | ||
{ | ||
public: | ||
static const char _data_FX_MODE_POV_IMAGE[] PROGMEM = "POV Image@!;;;1"; | ||
|
||
PNG png; | ||
File f; | ||
|
||
void setup() { | ||
strip.addEffect(255, &mode_pov_image, _data_FX_MODE_POV_IMAGE); | ||
} | ||
|
||
void loop() { | ||
} | ||
|
||
uint16_t getId() | ||
{ | ||
return USERMOD_ID_POV_DISPLAY; | ||
} | ||
|
||
void connected() {} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters