this post was submitted on 08 Oct 2025
8 points (100.0% liked)

Raspberry Pi

3263 readers
1 users here now

Welcome to the programming.dev Raspberry Pi community!

Raspberry Pi is a series of small single-board computers. It is widely used in many areas because of its low cost, modularity, and open design. It is typically used by computer and electronic hobbyists.

Rules

Members of this community are expected to exhibit mature and respectful behavior.

Those who fail to uphold these standards may find their posts or comments removed, with repeat offenders potentially facing a permanent ban.

Please keep discussions in English so that they can be appropriately moderated.

Links

founded 2 years ago
MODERATORS
 

The built-in keyboard on my Pi 500 is acting up and, while I found a way online to fix it that looks simple enough, it'll be a few days before I have a chance to do it. In the meantime I've got another keyboard plugged into a USB port as a substitute.

The trouble is that after a couple hours the built-in keyboard starts repeatedly spamming the letter N on its own and I have to reboot to make it stop. Is there any way to tell the Pi to ignore its own keyboard inputs and only listen to the other keyboard for now, then reverse that when I get the main keyboard straightened out again?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] cmnybo@discuss.tchncs.de 9 points 6 days ago (1 children)

You can use xinput to temporarily disable a keyboard. Run xinput list to get its ID, then run xinput float ID to disable it.

[โ€“] PaulDrye 2 points 4 days ago

That worked, thank you.