Connect Arcade Button to Rasberry Pi 5 and have the button read as a keyboard button?

Hello,

I want to create a project. I want to connect this Arcade Button to the Raspberry Pi 5, and it should be read as a keyboard, so to speak, but only for one button (e.g., the letter g). I want to use this to use the button as an input for a C# program. But I have absolutely no idea how to do this. Can someone help me?

(2 votes)
Loading...

Similar Posts

Subscribe
Notify of
1 Answer
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
theodoravontane
6 months ago

You connect the probe with one of the GPIO pins and a 3.3V pin.

Then you can read the status of the GPIO pin in the program.

Example: https://raspberrypihq.com/use-a-push-button-with-raspberry-pi-gpio/

The signal at the GPIO-Pin can then indicate how you want. You can also connect a USB keyboard to the Pi;)

Please note that the linked example refers to a Pi 3 and check the pin occupancy of Pi 5 beforehand. In case of doubt, you must choose other pins for your project.

Good luck.