Toggle auto screen advancement with keypad button?

moeburn

New member
I'd like to use one of my keypad buttons to toggle the screen advancement, similar to the "alt enabled" checkbox in the tray app. But i'm not sure which one of these DO types would work:

DO TYPES
DO_NONE 00
DO_SCREENA 01
DO_BRIGHTNESS 04
DO_CONTRAST 05
DO_BRIGHTNESSA 06
DO_CONTRASTA 07
DO_SCREEN 09
> 1000 = ID Number

I know that you use DO_SCREENA to jump to a specific screen, so I don't think its that one. Also, whats the difference between the ones with an A at the end and the ones without?
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 

CF Mark

Administrator
Unfortunately toggling auto alternating of screens cant be done using the events :(

The "A" on the end means absolute. Ie:
Setting DO_BRIGHTNESS with a value of 10, would increase the brightness by 10%.
Setting DO_BRIGHTNESSA with a value of 10, would set the brightness to 10%.
 

moeburn

New member
Unfortunately toggling auto alternating of screens cant be done using the events :(

The "A" on the end means absolute. Ie:
Setting DO_BRIGHTNESS with a value of 10, would increase the brightness by 10%.
Setting DO_BRIGHTNESSA with a value of 10, would set the brightness to 10%.
Ah okay, thanks for the reply!
 
Top