TM1914 #778
-
Hi all, and Makuna in particular (you legend). I understand reading back through various issues threads that support for TM1914 has been added, I would like to test this with some ICs I have here with an ESP32, what is the best example to use for this and how do I configure it. Best, M |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Just use the NeoPixelTest example, modify it just a little. Use the specific TM1914 features Use the specific TM1914 method And make sure to call the |
Beta Was this translation helpful? Give feedback.
-
Thank you :)
…On Fri, Mar 8, 2024 at 3:32 PM Michael Miller ***@***.***> wrote:
Just use the NeoPixelTest example, modify it just a little.
Use the specific TM1914 features NeoRgbTm1914Feature or
NeoGrbTm1914Feature. If you need other color orders just create an issue,
they are simple to add.
Use the specific TM1914 method NeoTm1914Method or if you have an external
inverting circuit (often for level adjustment) then
NeoTm1914InvertedMethod. Note that all the normal ESP32 specific variants
are available like NeoEsp32I2s0Tm1914Method and NeoEsp32RmtNTm1914Method
and even the ESp32 parallel modes like NeoEsp32I2s1X8Tm1914Method.
And make sure to call the strip.SetPixelSettings(NeoTm1914Settings())
once before your first call to Show()
—
Reply to this email directly, view it on GitHub
<#778 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AY2ZEKFVK562NZMBO3DBCITYXEPKDAVCNFSM6AAAAABEL6LT6CVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DOMJUG4ZTM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
Just use the NeoPixelTest example, modify it just a little.
Use the specific TM1914 features
NeoRgbTm1914Feature
orNeoGrbTm1914Feature
. If you need other color orders just create an issue, they are simple to add.Use the specific TM1914 method
NeoTm1914Method
or if you have an external inverting circuit (often for level adjustment) thenNeoTm1914InvertedMethod
. Note that all the normal ESP32 specific variants are available likeNeoEsp32I2s0Tm1914Method
andNeoEsp32RmtNTm1914Method
and even the ESp32 parallel modes likeNeoEsp32I2s1X8Tm1914Method
.And make sure to call the
strip.SetPixelSettings(NeoTm1914Settings())
once before your first call toShow()