Add IR remote as input to any PC Decoding NEC protocol IR pulses from remote control with a Pico and perform keypress as a USB keyboard (HID).
$ git clone https://github.com/gharishkumar/pico-ir-keyboard.git
$ cd pico-ir-keyboard
$ mkdir build
$ cd build
$ cmake ..
$ make -j4
You now have pico_ir_keyboard.elf
to load via a debugger, or pico_ir_keyboard.uf2
that can be installed and run on your Raspberry Pi Pico via drag and drop.
NOTE :
I also found a product by Adafruit pIRkey which does the same, but they discontinued it.
✔️ It’s a relatively simple and easy process available with TinyUSB, via CircuitPython, Arduino IDE (or) Raspberry Pi Pico SDK.
❌ but not MicroPython.
IRQ
, so no chance of running it in CircuitPython.