Quote:
Originally Posted by MagNet
[*]When started the clock is offset by some 70pxs. This gets fixed after the first refresh.
|
The top panel is about 70px. Try SetPanelType(0) in your app initialization.
Quote:
Originally Posted by MagNet
[*]Frontlight intensity setting via touch (finding out if this can be done)
|
Functions are available in inkinternal.h (SDK481). Using them will limit the app to firmware 5.
Quote:
/*
* Returns frontlight state (0-100 - brightness, negative value if off)
* returns INT_MIN if can't read or not supported
*/
int GetFrontlightState(void);
/*
* Sets frontlight state (0-100 - brightness, negative value if off)
*/
void SetFrontlightState(int flstate);
/*
On/off FrontLight
*/
void SwitchFrontlightState();
|