Page 2 of 2

Posted: 16 Sep 2018, 21:04
by sail4sea
Thanks. I'd like to identify this symbol here: https://www.flickr.com/photos/obra/9664 ... 353286814/

Posted: 16 Sep 2018, 21:08
by Muirium
Looks like a phi to me.

https://en.wikipedia.org/wiki/Phi

Though I see this thread is all about false positives! These were cryptic boards.

Posted: 16 Sep 2018, 21:33
by sail4sea
Thanks. That was one I couldn't figure out as the legend was crooked, perhaps because it is lowercase. I got everything figured out except the double bars on front of the \| key.

Posted: 16 Sep 2018, 21:49
by Slom
Muirium wrote: Looks like a phi to me.

https://en.wikipedia.org/wiki/Phi

Though I see this thread is all about false positives! These were cryptic boards.
MMcM seems to agree:
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L866

Code: Select all

KEYSYM(KS_SC_013, ",righttack,phi");
which is then linked to the F key
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L950

Code: Select all

PC_KEY(013, HID_KEYBOARD_SC_F, KS_SC_013), /* f */
I also think he mixed up lefttack and righttack in his code ...

Posted: 16 Sep 2018, 21:50
by JP!
Slom wrote:
Muirium wrote: Looks like a phi to me.

https://en.wikipedia.org/wiki/Phi

Though I see this thread is all about false positives! These were cryptic boards.
MMcM seems to agree:
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L866

Code: Select all

KEYSYM(KS_SC_013, ",righttack,phi");
which is then linked to the F key
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L950

Code: Select all

PC_KEY(013, HID_KEYBOARD_SC_F, KS_SC_013), /* f */
Haha I was about to post this :lol:

Posted: 16 Sep 2018, 21:57
by Slom
sail4sea wrote: Thanks. That was one I couldn't figure out as the legend was crooked, perhaps because it is lowercase. I got everything figured out except the double bars on front of the \| key.
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L970

Code: Select all

 PC_KEY(037, HID_KEYBOARD_SC_BACKSLASH_AND_PIPE, KS_SC_037), /* back slash */
https://github.com/MMcM/lmkbd2/blob/mas ... ard.c#L876

Code: Select all

KEYSYM(KS_SC_037, ",,doublevertbar");
https://www.compart.com/en/unicode/U+2016


Here's the list from the names inside KEYSYM to unicode chars
https://github.com/MMcM/lmkbd2/blob/mas ... bd.el#L196

Posted: 16 Sep 2018, 21:59
by Slom
JP! wrote: [...]

Haha I was about to post this :lol:
:) had been reading this just recently

Posted: 19 Sep 2018, 10:23
by hhkbp2
sail4sea wrote:
Again, I don't know what you are trying to accomplish doing this, but I am working on a similar project.
I planned to try the idea of adding front-printed symbols for the keyset design that I ran. The keyset is:

https://geekhack.org/index.php?topic=94288.0

Posted: 30 Jul 2019, 12:38
by MMcM
Slom wrote: 16 Sep 2018, 21:49
Muirium wrote: Looks like a phi to me.
I also think he mixed up lefttack and righttack in his code ...
Yes, indeed. Fixed now. Thanks for the report.
Slom wrote: 16 Sep 2018, 21:57
sail4sea wrote: I got everything figured out except the double bars on front of the \| key.
Here's the list from the names inside KEYSYM to unicode chars
The tables in the driver have been reformatted into a wiki page.