Total members 11890 |It is currently Fri Apr 19, 2024 8:00 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Motor is made to rotate clockwise for a time dictated by delay time
Code:
list p=16f877
include <p16f877.inc>
BANK0 macro
bcf STATUS
,RP0
bcf STATUS
,RP1
endm
BANK1 macro
bsf STATUS
,RP0
bcf STATUS
,RP1
endm

BANK2 macro
bcf STATUS
RP0
bsf STATUS
RP1
endm

BANK3 macro
bsf STATUS
RP0
bsf STATUS
RP1
endm

OFF EQU 0 
;MOTOR OFF
DELAY_VHI EQU 0x20
DELAY_HI EQU 0x21
DELAY_LO EQU 0x22
; ****
ORG 0
NOP
GOTO START

MAIN ROUTINE
 
ORG 0x20
START CALL INITP 
;INITIALISE PORT
AGAIN MOVLW 1 
;SET MOTOR CW
MOVWF PORTE 
;AND OUTPUT
MOVLW 0 
;SET MOTOR CW
MOVWF PORTA 
;AND OUTPUT
CALL DELAY 
;WAIT

MOVLW 0FF 
;SET MOTOR OFF
MOVWF PORTE 
;AND OUTPUT
MOVWF PORTA
CALL DELAY 
;WAIT

MOVLW 0 
;SET MOTOR ACW
MOVWF PORTE 
;AND oUTPUT
MOVLW 0x20 
;SET MOTOR ACW
MOVWF PORTA 
;AND oUTPUT
CALL DELAY 
;WAIT
MOVLW OFF 
;5ET MOTOR OFF
MOVWF PORTA 
;AND OUTPUT
MOVWF PORTE
CALL DELAY 
;WAIT
GOTO AGAIN 
;DO FOR EVER

SUBROUTINES

;DELAY
DELAY
MOVLW 0X01
MOVWF DELAY
.LO
MOVLW 0X80
MOVWF DELAY_HI
MOVLW 0XE0
MOVWF DELAY_VHI

BIG
OUTER
INNER

INCFSZ DELAY_LO
,1
GOTO INNER
INCFSZ DELAY_HI
,1
GOTO OUTER
INCFSZ DELAY_VHI
GOTO INNER
RETURN
PORT INITIALISATION


INITP BANK1 
;SET To BANK 1
MOVLW 06 
;MAKE PORT A DIGITAL
MOVWF ADCON1
BCF PORTA
,;MAKE BIT 5 OUTPUT
CLRF TRISE 
;SET PoRT E To otTPUT
BANK0 
;BACK To BANK 0
RETURN
END





_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Controlling the DC motor , Motor rotate clockwise Assembly
 Motor DC Speed Control by switching ON and OFF Assembly     -  
 Infra Read Sensor to Control DC motor Assembly     -  
 Controlling Web Application Behavior with web.xml     -  
 Transform Rotate Filter     -  
 rotate sphere in a circle with light     -  
 Bit operations-set-get-xor-rotate on bits arrays     -  
 Rotate Image with specific angle     -  
 PIC Assembly For Loop Example     -  
 multiply two numbers in PIC assembly     -  
 macro usage PIC assembly     -  



cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com