DOC PREVIEW
UW-Madison ECE 353 - ECE 353 Week 3 Notes

This preview shows page 1-2-16-17-18-34-35 out of 35 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 35 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

ECE 353 Introduction to Microprocessor SystemsAdministrative MattersTopicsMechanical SwitchesSlide 5Keypads and KeyboardsRotary EncodersLED DisplaysLCD Display CharacteristicsLCD TechnologySlide 11Slide 12Slide 13Slide 14Slide 15LCD Character ModulesSlide 17LCD CommandsDesigning a Software InterfaceWrapping UpMatrix-Connected SwitchesKeypad ExampleMatrix Scanning Algorithm74C923 20-Key EncoderMaxim MAX6816/7/8Quadrature Rotary EncodersIndexed Rotary EncodersAbsolute Rotary EncodersRotary Encoder with InterruptsTypical LED CharacteristicsSlide 31MAX7219 Multiplexed Display DriverMultiplexed DisplayHW Switch DebouncingSlide 35ECE 353Introduction to Microprocessor SystemsMichael SchulteWeek 12Administrative MattersHomework #6 due Friday, May 9thReading for week 12 (switches, keypads, and displays)Textbook 7.6-7.10Supplement #5 (Learn@UW)Final exam on Saturday, May 17th from 7:45am to 9:45am in 3418 EHCumulative exam covering Modules 1-6More details coming soonTopicsDigital InputsMechanical switchesKeypads and keyboardsRotary encodersDisplaysLED displaysLCD displaysMechanical SwitchesTypes of switchesPolesThrowsContact actionConverting switch position to a logic levelMechanical contact bounceDebouncing in HardwareRS latchIntegrator/Schmitt-triggerDedicated ICs (MAX6816/7/8)Mechanical SwitchesDebouncing in SoftwareHow to do?Exercise1. Develop an algorithm for debouncing of a single pressed switch. (Assume 0 when pressed.)2. Draw a flowchart to implement your algorithm in an ISR that will be invoked by a periodic timer interrupt.Keypads and KeyboardsSwitch connectionsLinearMatrixKeypad scanningRow/column scanningAlgorithmDedicated keypad encoders (74C923)Keypad issuesPhantom keysRoll-overRotary EncodersConvert angular position to digital valueEncoding schemesQuadrature EncodersAbsolute EncodersIndexed EncodersInterfacingSoftwareUsing interruptsHardwareDesign logic or use dedicated devicesLED DisplaysCharacteristicsDriver requirementsDisplay typesDriversMultiplexed displaysDriver circuitsRefresh rateDuty cycleIntensity controlDisplay Driver ICsLED ISR algorithm and routineLCD Display CharacteristicsNumeric, text and/or graphic displaysExtremely low powerPassiveTemperature sensitiveComplex drivers required to create segment waveformsRequire no net DC offset on segments – on single polarity systems this adds to driver complexityLCD Technologyhttp://en .wikipedia.org/wiki/Liquid _crystal_displayNatural stateMolecules are arranged in a loosely ordered fashion with their long axes parallel. Aligned stateWhen coming into contact with a finely grooved surface (alignment layer), molecules line up in parallel along the grooves.LCD TechnologyWhen liquid crystals are sandwiched between upper and lower plates, they line up with grooves pointing in directions 'a' and 'b,' respectively. The molecules along the upper plate point in direction 'a' and those along the lower plate in direction 'b,' thus forcing the liquid crystals into a twisted structural arrangement. (figure shows a 90-degree twist) (TN type liquid crystal)LCD TechnologyLight passes through liquid crystals, following the direction in which the molecules are arranged. When the molecule arrangement is twisted 90 degrees as shown in the figure, the light also twists 90 degrees as it passes through the liquid crystals.LCD TechnologyThe molecules in liquid crystals are easily rearranged by applying voltage or another external force. When voltage is applied, molecules rearrange themselves vertically (along the electric field) and light passes straight through.LCD TechnologyLight passes when two polarizing filters are arranged with their axes aligned (left).Light is blocked when two polarizing filters are arranged with their axes perpendicular (right).LCD TechnologyA combination of polarizing filters and twisted liquid crystal is used to create a liquid crystal display.LCD Character ModulesBased on Hitachi LCD-II controller protocol1 to 4 lines, 8-20 characters per line4 or 8 bit parallel interfaceMotorola style control signals256 character font8 user defined characters (Character Generator RAM)Controllable cursor2 read/write registersInstruction/statusdataLCD Character ModulesStandard Hardware InterfaceContrast adjustmentTemperature considerationsControl bus connectionsRegister addressingBus Timing RequirementsOften slower than processor – may require wait statesSequential operations often require delayCan drive LCD module bus from I/O pins and manipulate to get proper waveforms (bit-banging)BacklightsLEDCCFL/ELLCD CommandsCommandsDisplay ClearCursor HomeEntry Mode SetDisplay On/Off ControlCursor/Display ShiftFunction SetSet CGRAM AddressSet DDRAM AddressUsing BUSY FlagDesigning a Software InterfaceWhat procedures would you write in order to create a higher-level software interface to the LCD display?Build a hierarchy using low-level procedures as building blocks –LCD InitializationSend Command (pass command)Send Data (pass data)Check if Busy (return state)Wait until Ready Write Character at Location (pass char, location)Write Character String (pass address)Write Character String at Location (pass addr, location)Wrapping UpHomework #6 due Friday, May 9thth.Final exam on Saturday, May 17th from 7:45am to 9:45am in 3418 EHCumulative exam covering Modules 1-6More details coming soonMatrix-Connected SwitchesEach switch connected between a row line and a column line.More complicated circuitry required to poll switches.Why connect in a matrix? Think about keyboard with 100+ keys...1 2345 67 8 9* 0 #BackKeypadExampleBack1 2345 67 8 9* 0 #D-FFBUFFERD0D1D2D3/ROW/COLVddOECLKD QMatrix Scanning AlgorithmAlgorithmDrive columns (or rows) low one at a time.Read the rows (or columns), any low rows (columns) correspond to pressed switches.Circuit RequirementsPull-up resistors to ensure that open rows (or columns) are high.Use open-drain / open-collector driver on each column (row) to avoid contention issues with multiple presses.Switch AmbiguitiesIf more than two switches are pressed, may “see” more switches active than there really are. (phantom paths)Can be solved by placing a series diode at each switch.Back74C923 20-Key EncoderBackMaxim MAX6816/7/8BackBackQuadrature Rotary EncodersThere are normally many


View Full Document

UW-Madison ECE 353 - ECE 353 Week 3 Notes

Download ECE 353 Week 3 Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view ECE 353 Week 3 Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view ECE 353 Week 3 Notes 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?