How can I turn off and on the LCD on the TI-84 CE using C? I know that the LCD brightness can be changed with lcd_BacklightLevel, but I can't seem to find anything about turning the LCD off and on in either the examples or the header documentation.
Completely turning off the LCD is a long ordeal. However, you can achieve pretty much the same effect with:



Code:
#define LCD_POWER (1 << 11)

// lcd off
lcd_Control &= ~LCD_POWER;

// lcd on
lcd_Control |= LCD_POWER;

// lcd toggle
lcd_Control ^= LCD_POWER;


Hope this helps Smile
MateoConLechuga wrote:
Completely turning off the LCD is a long ordeal. However, you can achieve pretty much the same effect with:



Code:
// lcd off
lcd_Control &= ~(1 << 11);

// lcd on
lcd_Control |= 1 << 11;


Hope this helps Smile


That works, thanks!
Is it known how to do the same on Casio Prizm please?
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement