
My own InfraRed Journey
As mentioned previously, raspbian has problems with LIRC, the common IR library. So instead I'll go back 'to the roots', and by that I mean 'pigpio'. Going to keep track of what I did in case I need to come back 0. 'pip3 install --upgrade --force-reinstall pigpio' 1. Install 'sudo apt-get install pigpio python-pigpio python3-pigpio' 2. Check status 'sudo systemctl status pigpiod' 3. Start 'sudo systemctl start pigpiod' 4. Get ir_hasher 5. Pseudo Code: import time, pigpio, ir_hasher def callback(hash): print(f'hash={hash}') pi = pigpio.pi() ir = ir_hasher.hasher(pi, 17, callback, 5) time.sleep(30) pi.stop() Note: implement Markdown on website