question1. Write a program to continuously read the DIP switches connected to PO
ID: 2248782 • Letter: Q
Question
question1. Write a program to continuously read the DIP switches connected to PORTA and send it to PORTB.
Question 2 pts
Assume that eight DIP switches are connected to PORTB and eight LEDs are connected to PORTC. Assume that the switch values are normally high. Turn all of the LEDs on and wait in a loop until one of the switches becomes zero. At that time, send 0x55 to PORTC.
Question 3
Write a C program to declare two character arrays called list1 and list2. Initialize list1 with your first and last name. Write the main code to copy list1 to list2.
Question 4
Write a function to convert a character to uppercase (if it is lowercase) and return the character. Hint: Subtracting 0x20 from the ASCII code of a lowercase character makes it an uppercase.
Question 5pts
Write a C program to convert a packed BCD at Port B to ASCII and display the bytes on PORTC and PORTD
Explanation / Answer
Problem 1:
#include <hidef.h>
#include "derivative.h"
void main(void)
{
unsigned char x
DDRB = 0xFF
DDRA = 0x00
for ( ) {
x = PORTA
PORTB = x
}
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.