how to use a variable for pulsout command


Closed Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2012
    Location
    PERTH AUSTRALIA
    Posts
    838

    Default how to use a variable for pulsout command

    Hi guys , is there away to use a variable for the pulsout command , or a way around the same

    eg

    time var word

    one con 1000

    time = one

    pulsout GPIO.0,time

    regards

    sheldon

  2. #2
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,611


    Did you find this post helpful? Yes | No

    Default Re: how to use a variable for pulsout command

    Hi, Sheldon

    That's exactly what you do here ...

    1) you first set a constant to 1000
    2) you set a variable equal to this constant
    3) you output signal of the variable length ...

    so, step 1) is not necessary ...


    writing

    Code:
    Time VAR Word ; create your variable
    
    Time = 1000     ; set it to 1000
    
    PULSOUT pin, Time ; output your signal
    is the shortest way ... using a variable.

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  3. #3
    Join Date
    Feb 2012
    Location
    PERTH AUSTRALIA
    Posts
    838


    Did you find this post helpful? Yes | No

    Default Re: how to use a variable for pulsout command

    cheers for that

Members who have read this thread : 1

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