You've seen them - those "Apple computers." Probably in the hands of some Hipster in Portland, while riding his fixie and wearing those thick framed glasses. That pulsating light when Apple laptops are asleep is so ... sooooothing. You just want to go to sleep watching it. You know you do.
Today, we're going to replicate that using our ATTiny85. It's really easy, and most of it can be implemented in hardware instead of code (!!!).
Remove these ads by
Signing UpStep 1: Supplies
- Breadboard
- Breadboard wires
- 1 LED
- ATTiny85 (the 45 or 25 will probably work, but I haven't tested them)
- An ISP programmer (or other, if you know how to use it) - I use the USBtinyISP.
- A computer with avrdude and avr-gcc
- Optional: an oscilloscope






































Visit Our Store »
Go Pro Today »




I'm diving back into 'lectronics* prototyping again after a 5 year break. I just got an Arduino Mega R3 and am loving it.
This is a cool project that's looks easy to complete because it's well documented with plenty of tips and suggestions. Great job...you've made it easier and fun for the rest of us.
*NOTE: 'lectronics - This is a term usually heard only in the US Southern States. Usually, it's being shouted over a 2W loudspeaker system in Walmart: " ... 'lectronics, Line 1...."
I'm just getting started with microcontrollers, and projects like this seem doable for a noob.
With some tweaking, this sketch would work on an Atmega chip as well, right?
It is definitely doable for someone inexperienced with microcontrollers who is just getting comfortable with the AVR platform. It could definitely be adapted to an ATmega - the only changes would be register naming I think. Just find the equivalent PWM registers in your datasheet and everything should work fine :).
Oh, and AFAIK, sketch refers to an Arduino program written in Processing. This is a program. It's fo' real, yo!
In Arduino, sketch refers to ANY program. They are called "sketches" to keep artsie folks from getting scared by the name.
To run this on an Arduino, you must change just one line:
DDRB |= _BV(DDB0); // for Attiny85 OC0A=PB0 (comment added)
-- to--:
DDRD |= _BV(DDB6); // for Arduino OC0A=PD6
-- or-- in the language of a sketch:
pinMode(6, OUTPUT); // enable OC0a output
The two forms do exactly the same thing and either works.
Now use digital pin 6 for your LED (with a current limiting resistor in series to ground)
// Use Fast PWM, OCRA TOP
TCCR0A |= _BV(WGM00);
TCCR0A |= _BV(WGM01);
//TCCR0B |= _BV(WGM02);
Seeing how TCCR0B is not assigned, the comment should read as follows per the datasheet:
// Use Fast PWM, OCR0A = 0xFF
TCCR0A |= _BV(WGM00);
TCCR0A |= _BV(WGM01);
Or does that matter as your code happens to assign 0xFF (255) to OCR0A via the following line and then later have a check for this value elsewhere in the code:
// General case - increment direction either way
OCR0A += dir;
Please advise,
Moe Howard (brother of Shemp)