How to Control a Motor with Visual Basics and a Serial Port?

  • Thread starter Thread starter darkness_limits
  • Start date Start date
  • Tags Tags
    Basics Visual
AI Thread Summary
To control a motor connected to an electronic chip via a computer's serial port using Visual Basic, a direct connection is not feasible. Instead, a serial-to-TTL converter is required, which allows for pin control through the serial port. By sending commands like "on 1" or "off 1," users can manipulate a switch or relay to operate the motor. An IO-board can facilitate this process, enabling high/low outputs through simple commands such as 'getInput()', 'setDirection()', and 'setOutput()'. This setup effectively manages motor control through a circuit linked to the serial port.
darkness_limits
Messages
11
Reaction score
0
hi please can anyone tel me how to control a motor connectd to an electronic chip connected to the computer uning serial port , using visual basics(iknow how to use VB )
 
Technology news on Phys.org
You cannot connect a motor directly to a serial port
You need to get a serial-ttl converter - available from lots of robotics toy companies.
These will provide a pin that you can drive high or low from the serial port. You can use this to control a switch or relay to turn the motor on or off.
You normally control it by sending text such as "on 1" "off 1" to turn on pin 1 etc.
 
In electronics class we use something called an 'IO-board' which is connected through the serial port. Our teacher has written a script to run it and we can use simple commands to write high/Low out throught 8bit.
So we basically use homemade commands like 'getInput()','setDirection()' and 'setOutput()' that does the job.
This is how we do it, and then, as mgb_phys said, we connect the motor etc to a circuit which is controlled by the High/Low from the 8bit.

Hope I was of some help.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top