Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
12/19/07 20:49
Read: times


 
#148526 - thanks for helping me
Responding to: ???'s previous message
Thanks for helping me guys. I know that I don't have many experience on microcontroller so i asking you to helping me. In the other hand, my english is not good and i can't talk/write too much about my project, it's really hard for me. But i dont't wanna make it problems because i was on learning. So please help me.

Relay driver is good to controlling that motor but unfortunately the microcontroller can't do it.
It means, before i use it with 8051, i check those driver first by connecting the control pin through Vcc supply (5V).

How were you driving the L298? Show your schematic
The schematic is similar with schematic in L298 datasheet. I paralleled those outputs to gain higher currents.

I don't really know about the motor specification but i think it require 12V and 5A for supply voltage

Actually this motor driver is connected with this program
.I connected those control pin at motor driver to P1 at 8051.
==================================================
M1	bit p1.0  ;M1 and M2 is motor polarity
M2	bit p1.1
TLS	bit p1.2  ;TLS=top limit switch
BLS	bit p1.3  ;BLS=bottom limit switch
SB	bit p1.4  ;SB=start button
start:	clr M1
	clr M2
	jb SB,up
	jmp start
up:	setb M1
	jb TLS,up
	clr M1
	setb M2
down:	jb BLS,down
	clr M2
	ret	
end
================================================
The motor only move up and can't move down until i pressed "SB" button because p1.0 or M1 still on "1" condition.




List of 16 messages in thread
TopicAuthorDate
[Ask] Controlling Power Window Motor Using 8051            01/01/70 00:00      
   What is hidden behind "Control"?            01/01/70 00:00      
   8051 has nothing to do with your problem            01/01/70 00:00      
   Needs more work            01/01/70 00:00      
   How "big" is the motor?            01/01/70 00:00      
      Windows DC motors take 5Amps or more            01/01/70 00:00      
         Is that Vista, or XP? ;-)            01/01/70 00:00      
            Only if the wind screen has a distinct blue color.            01/01/70 00:00      
         Karas are you talking about this exactly..            01/01/70 00:00      
            Not exactly.........            01/01/70 00:00      
               I have seen these 2 for real :-(            01/01/70 00:00      
      More than 5 Amps..            01/01/70 00:00      
   thanks for helping me            01/01/70 00:00      
      Limit switches            01/01/70 00:00      
      Needs more thought            01/01/70 00:00      
         howto            01/01/70 00:00      

Back to Subject List