For this assignment, you are allowed to work in small groups (preferably 2 but up to 3) and turn in the same code.  ALL group members names must be on any shared code file

This part should be written in ASSEMBLY.

Deliverable A:  Use your LED to count from 1 to 5. Write code so that the LED blinks 100ms on, 200ms off for the count that it is on. For example, count 3 would look like on 100ms, off 200ms, on 100ms, off 200ms, on 100ms. Pause 700ms before moving to the next number. Use a for or while loop to control your LEDs, do NOT hardcode 1-5. (HW4B in Assembly)
Deliverable B: Wire a button to a GPIO pin on your Pico. Create assembly code that constantly polls the button to see if it is pressed. Turn an LED (can be the onboard LED or another, as you wish) on when the button is pressed and off when it is not pressed. (HW5A in Assembly)
Rubric
  • Deliverable A:
    • Uses assembly effectively (5 points)
    • Demo
      • Turns LED off and on differently than demo code (5 points)
      • Counts 1-5 (5 points)
  • Deliverable B:
    • Uses assembly effectively (5 points)
    • Demo
      • Button provides input (5 points)
      • LED turns on only when button pressed (5 points)