1 / 24

Understanding Computer Control Mechanisms: From Motors to Ports and Power Sensitivity

This document explores the intricacies of how computers control the world through various hardware mechanisms. It discusses the functionality of joints as motors, the importance of computer ports for memory interaction, and the critical nature of maintaining clean power levels for reliable operation. Topics include the handling of binary values, data memory management, and the implications of industrial power surges on computer hardware. Practical examples and programming concepts provide insights into the interplay between software and hardware.

edolie
Télécharger la présentation

Understanding Computer Control Mechanisms: From Motors to Ports and Power Sensitivity

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. A typical “hardware” standard

  2. How do computers control the world?

  3. Each joint is a motor that can be turned on and off with a switch

  4. 7 switches to control a whole robot

  5. A Computer “port” • Connects 1 byte of memory to outside world

  6. A printer “Port” • Computer connects an internal byte variable to the printer switches, and changes the values to tell the printer what to print

  7. Address Data Memory r/w

  8. I/0 Memory Data Memory Program Memory Fast Specialty Memory

  9. Memory mapped I/O 8-bit Your Program Driver Port A Decimal Variable A Binary Value A function call

  10. an example program Private Sub Write_Port(value As Integer) txtByteOut.Text = (value) 'decimal Status = cbUSBDOut(DeviceNum, RELAY_PORT, value) If value < 16 Then txtHexOut.Text = "0" & (Hex(value)) Else txtHexOut.Text = (Hex(value)) End If ' hex txtBinary.Text = CBin(value) 'binary End Sub

  11. the overriding concern • the computer power levels (+/- 5, +/- 12) are EXTREMELY sensitive to surges • industrial machinery regularly injects surges into its power lines (+24 vdc) • computer power (clean) MUST be kept separate from industrial power (dirty) • reference pt (ground) is connected between the two in ONE PLACE ONLY

  12. Optical Isolation

  13. motor, etc

  14. Computer “dirty” Environment

  15. Mechanical Relay

  16. Computer Environment

  17. Digital Input

  18. buying parts http://www.sparkfun.com

More Related