


Weekly Update
It's funny how weekly updates aren't actually weekly. Anyway, several things going on: 1. Rewrote the code that controls the board and made it 1000 times better. It gave me so much pleasure writing it! Fantastic! 2. Re.. Damn, taking care of infants is so freaking exhausting! 3. Filmed some footage for the project 4. Launched kickstarter To Dos: Time to become a professional producer and video editor I also want to start learning Django, since while flask is cool, Django seems to have more functionality, at least, easily accessible one
Comments (0)

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
Comments (0)
IR Remote Fiasco
So I've attempting to integrate the IR remote to my board. Hours and hours of errors, unsuccessful fixes and so on later, I found a forum at the corner of the internet dated to basically last couple of days, in which the problem I'm experiencing is due to some super late update. Jesus
Comments (0)