Page 1 of 1
How to use more than one keyboard, one for each player?
Posted: Sat Jul 12, 2014 8:03 am
by SouL
I would like to use a different keyboard for each player but I don't know where to start looking.
I use GNU/Linux but I would like to know if something changes between different Operating Systems.
Thank you very much, any help is appreciated!
Re: How to use more than one keyboard, one for each player?
Posted: Sat Jul 12, 2014 11:33 pm
by miko
SouL wrote:I would like to use a different keyboard for each player but I don't know where to start looking.
I use GNU/Linux but I would like to know if something changes between different Operating Systems.
Thank you very much, any help is appreciated!
Under linux you could read /dev/input/event? (for each input device, i.e. keyboard) and decode it for yourself . That would be low-level and not portable.
Re: How to use more than one keyboard, one for each player?
Posted: Wed Jul 16, 2014 3:18 pm
by SouL
miko wrote:SouL wrote:I would like to use a different keyboard for each player but I don't know where to start looking.
I use GNU/Linux but I would like to know if something changes between different Operating Systems.
Thank you very much, any help is appreciated!
Under linux you could read /dev/input/event? (for each input device, i.e. keyboard) and decode it for yourself . That would be low-level and not portable.
Thank you, I'll keep investigating