An ATTiny2313 powers this night light, driving multicolor LEDs diffused by ping-pong balls. nuumio writes:
Geir’s RGB night light was such an inspiration I just had to make my own. Instead of Picaxes I decided to use ATTiny 2313. At first I tried to program it with C but I ran to some “differences of opinions” with gcc when I tried to assign dedicated registers to variables holding duty cycle values (for speed optimizations). After some struggling I gave up and coded the whole thing in AVR assembly. I was quite surprised how easy it was after all. It took me about one weekend and I got first versions running nicely.
Great job, nuumio!
Have an amazing project to share? The Electronics Show and Tell is every Wednesday at 7:30pm ET! To join, head over to YouTube and check out the show’s live chat and our Discord!
Python for Microcontrollers – Adafruit Daily — Python on Microcontrollers Newsletter: A New Arduino MicroPython Package Manager, How-Tos and Much More! #CircuitPython #Python #micropython @ThePSF @Raspberry_Pi
EYE on NPI – Adafruit Daily — EYE on NPI Maxim’s Himalaya uSLIC Step-Down Power Module #EyeOnNPI @maximintegrated @digikey
Beware of circumventing gcc’s optimization engine. It’s better than you think it is.
Personally, I wouldn’t have jumped over assembly for this. You could simply let the compiler do the optimizations and give it the additional -E flag to tell gcc to output the equivalent assembly code. You could then review the output to determine if going the assembly route was really worth it (probably not, in my experience).
Beware of circumventing gcc’s optimization engine. It’s better than you think it is.
Personally, I wouldn’t have jumped over assembly for this. You could simply let the compiler do the optimizations and give it the additional -E flag to tell gcc to output the equivalent assembly code. You could then review the output to determine if going the assembly route was really worth it (probably not, in my experience).
Nice project though.