Looking for a lot of help here, The material is just not sitting right with me :
ID: 3742233 • Letter: L
Question
Looking for a lot of help here, The material is just not sitting right with me :(. Will rate. I seriously appreciate the help.
CSE 230 Project 2: LED Pattern Generator Learning Objectives e Use PLP branch instructions . Read from a memory mapped I/O device The Task: Write a program in PLP assembly that repeatedly reads the value of the switches (address: exf0100000) and displays a pattern on the LED array based on what switches. Each time the switch value is read, the pattern should be displayed (regardless of whether the switch value has changed or not since the last time it was read) The table below indicates the pattern that should be displayed for each possible switch setting Switch Hexadecima Binary Switch Switch Value 0x00000001 0b00000001 Turn all 8 LEDs on and then off 0x00000002 0b00000010Turn all even numbered LEDs on and LED Pattern Number Value then off 2 0x00000004 0b00000100 Turn all odd numbered LEDs on and then off 0x00000008 b00001000 Cycle through all 8 LEDs in order with only one LED on at a time (a marquee) Other Other Other All LEDs off Hint: Logical shifts are not required to complete this project, but they should make your program shorter and more readable than hard coding every value to be written to the LEDs. Shifts can also be helpful when determining the switch value Deliverables: 1. Take the Project 2 Pre Quiz (2 points) Submit your program on Blackboard with the format: lastname_project2.plp (11 points) Note: Please do not zip the project file or include any additional files in your submission Take the Project 2 Post Quiz (2 points) 2. 3.Explanation / Answer
Answer:
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.