Page 1 of 1

Change Brightness Levels

Posted: Thu Nov 07, 2013 8:24 am
by daoa80
can we control the brightness of the screen either by code or some click event?

Thanks.

Change Brightness Levels

Posted: Thu Nov 07, 2013 8:49 am
by stuartm
Please see this attachment

Re: Change Brightness Levels

Posted: Fri Aug 29, 2014 8:54 am
by bennanio
Is there a method to have this setting persist through power on?
If I set an initial value the display will always set that value when it powers on.
If I don't set an initial value the display defaults to 0 brightness.
Attempting this:

Code: Select all

void SystemTagBacklightBrightnessLevel_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e)
		{
			if(Globals.Tags.SystemTagBacklightBrightnessLevel.Value < 5){ Globals.Tags.SystemTagBacklightBrightnessLevel.SetAnalog(10);}
		}
Normally value change events are fired at least once on power up, however this doesn't appear to work either.

How do I have a brightness slider in my application whose value persists through a power cycle?

Re: Change Brightness Levels

Posted: Tue Sep 02, 2014 2:28 pm
by Jeremy Richards
Just check the Non-Volatile check box on the SystemTagBacklightBrightnessLevel tag. That will cause the backlight to be persistent across reboots.

Note that the SystemTagBacklightBrightnessLevel and the "Show Backlight Settings" action do not play real well together, so you should use one or the other, but not both in your project.

Re: Change Brightness Levels

Posted: Wed May 13, 2015 5:51 am
by andrea
Are these settings valid for Microsoft Windows (XP or 7) pc?