New component for keyboards and panels.
A poor quality video proving that it works:
It can take either 7i73-style scancodes from a 7i73 or from matrix_kb, and can also generate key events from plain bit HAL pins.
Intended for MDI keyboards and GUI interaction. Use to control actual machine movements is very much discouraged.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
Please Log in or Create an account to join the conversation.
Roughly speaking, not yet looked at code, this is "stuffing" scan codes into the OS ?
Not exactly. The HAL component tells the system that it is a USB keyboard, "and here are some key events"
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
That's pretty cool.
Please Log in or Create an account to join the conversation.
In the man page, this link is not working for me though:
wiki.linuxcnc.org/cgi−bin/wiki.pl?Scancodes
And thanks for sharing this!
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19188
- Thank you received: 6432
Still 404.In the man page, this link is not working for me though:
wiki.linuxcnc.org/cgi−bin/wiki.pl?Scancodes
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
wiki.linuxcnc.org/cgi-bin/wiki.pl?Scancodes
Looks like an issue with hyphens.
It's an ASCII 2D minus sign in the source code.
I need to se how to force asciidoc to not convert to hyphen.
Please Log in or Create an account to join the conversation.
It's an ASCII 2D minus sign in the source code.
I need to se how to force asciidoc to not convert to hyphen.
And the URL is fine in the html docs generated on my test machine too!
I am a bit stumped.
Please Log in or Create an account to join the conversation.
Looks like an issue with hyphens.
Exactly the hyphen in the link I posted is a bit longer then in the one you posted.
This seems to be the same issue that has come up a few times when people copy/paste HAL pin names from man pages into their HAL files and the pin names are not recognized because the hyphen is a bit longer. I wonder if it depends on the users PC though because I'm sure a lot of people do that and the issue does not come up very often in the forum.
How can there be two different hyphens?
ASCII code 45 = - ( Hyphen , minus sign )
The only other similar symbol I see is this. But it seems much longer.
ASCII code 196 = ─ ( Box drawing character single horizontal line )
[edit]
Ok, wikipedia just told me that in unicode there are a few different symbols:
There are at least eight different horizontal dash-like characters of varying lengths defined in Unicode
Please Log in or Create an account to join the conversation.