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
Join the discussion
Registration is free. Start your own thread to ask a follow-up.
2 replies · 3K views
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 )
 
Physics 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 through 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.