Write a complete C program to continuously read port B and t
Write a complete C program to continuously read port B and take the following actions based on the state of the input pins: Be sure you don\'t enable any pullups on the input pins when you are making your changes. Utilize the function you created in part a (you do not need to write the function again here, just make the call and include a prototype). #include #include
Solution
//the following program sends values 00-ff to port B
#include <avr/io.h>
Int main (viod)
{
Unsigned char z;
DDRB=0*FF; //port B is output
For(z=0;z<=255;z++)
Port=z;
Return0;
}
