Post Reply 
A simple Entry Mode Switcher...
05-04-2016, 06:27 AM
Post: #8
RE: A simple Entry Mode Switcher...
Meaner, leaner, tighter (and works with the latest firmware)...
Code:

// Cycles over entry mode options. 
 KEY K_On() 
 BEGIN 
 LOCAL an:={"Textbook","Algebraic","RPN"}; 
 Entry:=(Entry+1) MOD 3; 

 STARTVIEW(-1,1); // Refresh Home view BEFORE tagging...

 TEXTOUT_P(an(Entry+1),G0,2,207,2,RGB(255,0,0));
 FREEZE; // the mean part!
 END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: A simple Entry Mode Switcher... - Cristóbal De Jesús - 05-04-2016 06:27 AM
RE: A simple Entry Mode Switcher... - dae - 07-27-2019, 10:26 PM



User(s) browsing this thread: 1 Guest(s)