Replies: 2 comments 2 replies
-
Probably not the best way to do it but I think it would work if you also did: Most people wanting custom behaviour use a dashboard or take over the display, you can see there's a whole section of the documentation on taking over the display because it is such a common requirement - https://www.thecoderscorner.com/products/arduino-libraries/tc-menu/renderer-take-over-display/ |
Beta Was this translation helpful? Give feedback.
2 replies
-
See #351 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I made a volume controller that is controlled by tcmenu. I expect the volume item to be automatically activated after the menu times out, so that I can turn the rotary encoder directly to adjust the volume without pressing the OK button, so I added these codes, but the result is that it just navigates to the volume item without activating it. .Is there something I misunderstood?
`
renderer.setResetIntervalTimeSeconds(5);
renderer.setResetCallback([] {
menuMgr.activateMenuItem(&menuVolume);
});
`
I also tried menuMgr.setItemActive(&menuVolume) , but same result.
Beta Was this translation helpful? Give feedback.
All reactions