Post Reply 
[Request] for [theta x, t,] key
07-30-2016, 02:10 AM
Post: #1
[Request] for [theta x, t,] key
Hello

The [theta x, t,] key just put x repetitively, my idea is:

a tap x -> [x]

Double-click xx -> [y]

3 taps -> [z]

4 taps... -> [t]

5 taps... -> [theta]

Do you agree with this idea?
Find all posts by this user
Quote this message in a reply
07-31-2016, 11:21 PM
Post: #2
RE: [Request] for [theta x, t,] key
Better yet have the key put up a soft key menu: x, y, t, theta, n
Visit this user's website Find all posts by this user
Quote this message in a reply
08-01-2016, 12:47 AM
Post: #3
RE: [Request] for [theta x, t,] key
I think I saw somewhere the idea proposed (change variable in each new keystroke), you know that calculator?
Find all posts by this user
Quote this message in a reply
08-03-2016, 01:59 AM
Post: #4
RE: [Request] for [theta x, t,] key
Here's a teaser from one of the projects that I've been working on... hopefully things will be ready for a public release soon. :-)

With user keys on, pressing XTTN in the manner you described will return x,y,z,t,θ (and shift-XTTN will return in caps).


Code:

EXPORT MultiTap(K,L1)
BEGIN
  LOCAL Delay:=200;

  LOCAL C:=0;
  LOCAL P:=1;
  LOCAL T:=0;

  REPEAT 
    T:=TICKS;
 
    WHILE ISKEYDOWN(K)==P DO
      IF TICKS-Delay>T THEN
        IF P==1 THEN
          C:=C+1;
        END;

        BREAK 2;
      END;
    END;

    IF P==1 THEN
      C:=C+1;
    END;
 
    P:=ISKEYDOWN(K);

  UNTIL 0; 

  RETURN IFTE(C≥1 AND C≤SIZE(L1), L1(C), L1(1));

END;



KEY K_Xttn()
BEGIN
  LOCAL L1:={"x","y","z","t","θ"};
  LOCAL K:=17;

  RETURN MultiTap(K,L1); 
END;


KEY KS_Xttn()
BEGIN
  LOCAL L1:={"X","Y","Z","T","θ"};
  LOCAL K:=17;

  RETURN MultiTap(K,L1); 
END;
Find all posts by this user
Quote this message in a reply
08-03-2016, 06:16 AM
Post: #5
RE: [Request] for [theta x, t,] key
Hello,

Nice idea!

Cyrille

Although I work for the HP calculator group, the views and opinions I post here are my own. I do not speak for HP.
Find all posts by this user
Quote this message in a reply
08-03-2016, 12:49 PM (This post was last modified: 08-03-2016 12:51 PM by compsystems.)
Post: #6
RE: [Request] for [theta x, t,] key
thanks if is implemented in the next firmware
Find all posts by this user
Quote this message in a reply
Post Reply 




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