VS1838B remote


Closed Thread
Results 1 to 19 of 19

Thread: VS1838B remote

Hybrid View

  1. #1


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    Never used pulsin. So if I knew the pulse width of the 38khz signal, I can compare it to a result pulsin gives? I just read something where it says it measures just one pulse, either low or high state and then goes to next instruction? Why a word variable if it just measures once?

    I get frustrated with some of the PBP commands. The manual is too vague. Wish for every command they could have done another page just with code examples and an explanation of what's going on. (just me venting).

  2. #2


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    I found that Rentron code. Wow. It's all there and well commented -- I'll try it out. His comments really spell it out and teach.

  3. #3


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    Pulsin works great. Heck, I just used the first part of that rentron code and did this with it --
    I get a perfect momentary on/off with a bit of needed pause.


    Main:
    PULSIN PORTB.0,0,Leader ' leader pulse is ~9mS low-going
    IF Leader < 850 THEN
    LOW PORTB.2
    GOTO Main
    ENDIF

    IF LEADER > 850 THEN
    HIGH PORTB.2
    PAUSE 300
    ENDIF

    LEADER = 0
    PAUSE 100

    GOTO MAIN

  4. #4
    Join Date
    May 2012
    Location
    Merseyside, UK
    Posts
    237


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    Quote Originally Posted by Michael View Post
    Pulsin works great. Heck, I just used the first part of that rentron code and did this with it --
    I get a perfect momentary on/off with a bit of needed pause.


    Main:
    PULSIN PORTB.0,0,Leader ' leader pulse is ~9mS low-going
    IF Leader < 850 THEN
    LOW PORTB.2
    GOTO Main
    ENDIF

    IF LEADER > 850 THEN
    HIGH PORTB.2
    PAUSE 300
    ENDIF

    LEADER = 0
    PAUSE 100

    GOTO MAIN
    Just a question ......Why:-

    GOTO Main
    ENDIF
    I would assume the other way round .....Genuine question. I can never understand software fully :-)

    Andy

  5. #5
    Join Date
    Apr 2014
    Location
    OK
    Posts
    557


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    I think it's a method of skipping other IF/THEN options.

    It could also be structured with...

    IF This THEN
    do something
    ELSEIF That THEN
    do something else
    ELSE None of the above
    Don't do anything
    ENDIF

    Only 1 option will be selected, forcing a break from the test once a match is found.

  6. #6
    Join Date
    May 2012
    Location
    Merseyside, UK
    Posts
    237


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    Quote Originally Posted by mpgmike View Post
    I think it's a method of skipping other IF/THEN options.

    It could also be structured with...

    IF This THEN
    do something
    ELSEIF That THEN
    do something else
    ELSE None of the above
    Don't do anything
    ENDIF

    Only 1 option will be selected, forcing a break from the test once a match is found.
    Got it

    Thank you

  7. #7


    Did you find this post helpful? Yes | No

    Default Re: VS1838B remote

    it's working fine but I added leader = 0 to clear it out (duh)
    should have thought of that.
    I need to put the breadboard in the sunshine and see if it stays stable.
    if not, I'll just add his decoding the bytes data

    kind of nice using any button on the remote

    Main:
    PULSIN PORTB.0,0,LEADER ' leader pulse is ~9mS low-going
    IF Leader < 850 THEN
    LOW PORTB.2
    LEADER = 0
    GOTO Main
    ENDIF

    and yes, could have used else but so simple just wanted to see if functions.
    Last edited by Michael; - 3rd April 2020 at 14:24.

Similar Threads

  1. Remote Ip remote relay switch
    By jetpr in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 23rd June 2014, 17:07
  2. Remote control help
    By paulthegulll in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 2nd November 2010, 09:01
  3. IR/RF Remote Control
    By jhorsburgh in forum General
    Replies: 2
    Last Post: - 6th February 2008, 02:23
  4. need help in decoding RC-5 IR-remote
    By vu2iia in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 14th August 2007, 04:34
  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