Newbie remote control question?


Results 1 to 5 of 5

Threaded View

  1. #2
    Join Date
    May 2008
    Location
    Italy
    Posts
    825


    Did you find this post helpful? Yes | No

    Default

    Clodoaldo, you cannot transfer the pulsin value to the duty cycle without some math manipulation.

    Let's assume you want keep the velocity constant.

    You measure the pulse width using the pulsin function (use a word variable)

    You will have your motor running with duty cycle = 50%

    Now the millisecs returned in the word variable is the speed of your motor and you have to decide which value rappresent the speed that you want to keep put this value into the variable Your_Speed.

    Once you have done that, then the math could be as follow:

    Code:
    Read_Speed  Var Word
    Your_Speed  Var Word
    Deviation      Var Word
    Duty            var Byte
    Error_Flag       Var Bit
    
    Duty = 50
    
    Your_Speed = ?????
    
    Calculation:
    
    Deviation = Read_Speed * 100 / Your_speed
    
    Error_Flag = 0
    
    If Deviation > 100 then Duty=Duty-(Deviation-100)
    
    If Deviation <100 the Duty = Duty +(100-Deviation)
    
    If Duty > 100 the Error_Flag = 1
    
    Return
    Check Error_Flag before passing the new duty value to the PWM comand.
    A Pause value, to give the motor the time to gain the new speed is recommended.


    Al.
    Last edited by aratti; - 14th July 2009 at 07:19.
    All progress began with an idea

Similar Threads

  1. Remote PIC input question
    By Adrian in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 1st September 2007, 15:44
  2. IR Remote Control Issues
    By Kamikaze47 in forum mel PIC BASIC Pro
    Replies: 20
    Last Post: - 28th August 2007, 14:12
  3. No one-way approach to learning ir remote control frequencies
    By selbstdual in forum mel PIC BASIC Pro
    Replies: 41
    Last Post: - 22nd June 2007, 13:26
  4. IR Remote Control
    By mychangl in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 25th March 2007, 07:01
  5. Remote control
    By Radiance in forum General
    Replies: 2
    Last Post: - 6th August 2003, 15:13

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts