Write C code for Atmega32 programming for the following scenario:
Create a LED pattern with 8 LEDs which will represent the BCD value of the last two digits of your ID. (last two digit of my ID is: 58).
For example, your ID is 201400076. Then the pattern will be 0111 0110.
The pattern will then start to loop in the following order.
Loop:
{
First 0111 will be on and 0110 will be off for 2.5 seconds.
Next, 0111 will be off and 0110 will be on for 2.5 seconds.
Next all 0111 and 0110 will be on for 2.5 seconds.
Next all will be off for 2.5 seconds.
}
Comments
Leave a comment