Hi,
I want to use a TSOP IR receiver on a custom board for sending different commands to my device through a remote controller. for example, if I use a Samsung TV controller, I can do the different tasks by pushing every key on the controller if I can decode every key individually on my device. To do so, I need to analyze 32 bits of data that are sent to the IR receiver to understand which key is pushed. one way is to connect the IR signal to a PWM input, but as much as I understand nRF52832 doesn't have such application. Another way is to connect the signal to a GPIO as an external interrupt and measure the pulse width of these 32 bits to find the data. to elaborate on this you can see what I am talking about in this link. Can you help me to do this thing in the simplest way? this configuration is part of a bigger program and I need it to be as simple as possible and low current consumption. Is there any proper and usable library for IR receivers for Nordic MCUs like Arduino or STMs?