Difference between revisions of "EGR 224/Arduino Interfacing With Hardware Supplement"

From PrattWiki
Jump to navigation Jump to search
(Going Through the Module with Your Kits)
(Going Through the Module with Your Kits)
Line 19: Line 19:
 
* Build the circuit and run the code for "Displaying random numbers and scrolling."  Take a video of your LCD displaying some random numbers.
 
* Build the circuit and run the code for "Displaying random numbers and scrolling."  Take a video of your LCD displaying some random numbers.
 
* Build the circuit and run the code that ends with "The shiftOut command."  '''''EXCEPT''''' instead of having a wire from the middle top and bottom pins of the 7-segment display, use a 330 Ohm resistor.  Note that you will not be required to build the direct-drive version of the 7-segment LED.  It is *very rare* to directly drive a 7-segment display because of the number of pins that ties up. Take a video of your 7-segment display counting from 0 to 9.
 
* Build the circuit and run the code that ends with "The shiftOut command."  '''''EXCEPT''''' instead of having a wire from the middle top and bottom pins of the 7-segment display, use a 330 Ohm resistor.  Note that you will not be required to build the direct-drive version of the 7-segment LED.  It is *very rare* to directly drive a 7-segment display because of the number of pins that ties up. Take a video of your 7-segment display counting from 0 to 9.
 +
* Note that your actual 7-segment display in the kit is a common '''cathode''' display.  What you will need to do to get your simulation to work the way it will work on your real circuit is as follows:
 +
** Save your circuit, then duplicate it and give it a new name that indicates you are working on common cathode.
 +
** Move the 330 Ohm resistors to go from the common pins of the 7SD to '''ground''' instead of 5 V.
 +
** Change the 0s to 1s and the 1s to zeros in the dataArray
 
* Build the circuit and run the code that ends with "Combine them all."  Take a video showing you pushing the various buttons.
 
* Build the circuit and run the code that ends with "Combine them all."  Take a video showing you pushing the various buttons.
  

Revision as of 20:34, 8 June 2020

The following represents a supplement to the LinkedIn Learning module "Learning Arduino: Interfacing with Hardware" by Zahraa Khalil. Duke people should go through Access LinkedIn Learning for Duke to get to LinkedIn Learning, then you can search for the module (or once you have logged in you can click directly).

For EGR 224, students should first go through the module using a virtual Arduino on Tinkercad and then later go through the process of building the actual circuit with their Arduino kit. Everything necessary for the circuit is in the kit.

Going Through the Module with Tinkercad

  • Interface with an LCD
    • Tinkercad has a Circuit Assembly for controlling a 16x2 LCD. Start a new circuit in Tinkercad. In the components drop down at the top right, select "Starters - Arduino." Drag an "LCD" circuit into your model and follow along with the movie; note that the wiring is already done and matches the wiring in the video.
    • Go through the Optional videos in this section.
    • Duplicate this circuit in Tinkercad, then change the code in the duplicate to match the "Displaying random numbers and scrolling" section.
  • Interface with a 7-Segment LED
    • There is no starter for this in Tinkercad, so you will need to generate this model from scratch.
    • For the last part, write subfunctions for each digit to turn on the appropriate sections.
    • Tinkercad and your kits have the shift register chip (74HC595) so go through that part as well.
  • Interface with a Keypad
    • The keypad on Tinkercad and in your kit is a 4x4 keypad versus a 4x3.
    • For "Combine them all" - the Tinkercad UNO does not have enough pins; you will only be able to do this one with your real-world Mega; watch the videos, though, to see how it all comes together.

Going Through the Module with Your Kits

  • Build the circuit and run the code for "Displaying random numbers and scrolling." Take a video of your LCD displaying some random numbers.
  • Build the circuit and run the code that ends with "The shiftOut command." EXCEPT instead of having a wire from the middle top and bottom pins of the 7-segment display, use a 330 Ohm resistor. Note that you will not be required to build the direct-drive version of the 7-segment LED. It is *very rare* to directly drive a 7-segment display because of the number of pins that ties up. Take a video of your 7-segment display counting from 0 to 9.
  • Note that your actual 7-segment display in the kit is a common cathode display. What you will need to do to get your simulation to work the way it will work on your real circuit is as follows:
    • Save your circuit, then duplicate it and give it a new name that indicates you are working on common cathode.
    • Move the 330 Ohm resistors to go from the common pins of the 7SD to ground instead of 5 V.
    • Change the 0s to 1s and the 1s to zeros in the dataArray
  • Build the circuit and run the code that ends with "Combine them all." Take a video showing you pushing the various buttons.

Beyond the Module

  • Figure out how to make the final circuit above work with the letters "A" through "D" on the keypad. Take a video showing you pushing the various buttons. You will also be uploading your code for this to Sakai.

Turning Things In

  • Put the links to the Tinkercad models created when you go through the modules in the text attachment part of the Sakai assignment.
  • Attach the four videos and the one code.