We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
According to the Documentation there is no DNRGBW
Looking at the code dnrgbw is in fact implemented, just not documented, as visible in udp.cpp
} else if (udpIn[0] == 4 && packetSize > 7) //dnrgb { unsigned id = ((udpIn[3] << 0) & 0xFF) + ((udpIn[2] << 8) & 0xFF00); for (size_t i = 4; i < packetSize -2 && id < totalLen; i += 3, id++) { setRealtimePixel(id, udpIn[i], udpIn[i+1], udpIn[i+2], 0); } } else if (udpIn[0] == 5 && packetSize > 8) //dnrgbw { unsigned id = ((udpIn[3] << 0) & 0xFF) + ((udpIn[2] << 8) & 0xFF00); for (size_t i = 4; i < packetSize -2 && id < totalLen; i += 4, id++) { setRealtimePixel(id, udpIn[i], udpIn[i+1], udpIn[i+2], udpIn[i+3]); } }
Sadly I don't know where / if the documentation source code is set and can't find it, so this fyi instead. Sorry.
The text was updated successfully, but these errors were encountered:
https://github.com/Aircoookie/WLED-Docs/pulls
Sorry, something went wrong.
Thanks, will adapt it there after testing if it acutally works.
No branches or pull requests
According to the Documentation there is no DNRGBW
![Image](https://private-user-images.githubusercontent.com/21364591/404024778-67d42a72-f3ff-4937-b21d-c85d71af0c2e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyOTMzMDksIm5iZiI6MTczOTI5MzAwOSwicGF0aCI6Ii8yMTM2NDU5MS80MDQwMjQ3NzgtNjdkNDJhNzItZjNmZi00OTM3LWIyMWQtYzg1ZDcxYWYwYzJlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDE2NTY0OVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWJiZGFlNjA0YTg4MmJiM2U0MDBkOTI4NmUxYWRjYmI0MmM5MTk1ZmQ3MTFjYmUxZDk0YTkxNGQwNzc4MGJlODMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.RX9QVk38EETNc3fYmsZt8S_7-cu0t46MPoO_p-uDqiA)
Looking at the code dnrgbw is in fact implemented, just not documented, as visible in udp.cpp
Sadly I don't know where / if the documentation source code is set and can't find it, so this fyi instead. Sorry.
The text was updated successfully, but these errors were encountered: