Read state of specific bit (i.ex. of a PORT)


Closed Thread
Results 1 to 4 of 4

Hybrid View

  1. #1
    Join Date
    May 2013
    Location
    australia
    Posts
    2,682


    Did you find this post helpful? Yes | No

    Default Re: Read state of specific bit (i.ex. of a PORT)

    if key active high

    WHILE PORTB >15 : WEND

    or

    WHILE (PORTB&$f0) : WEND


    or if active low

    WHILE (PORTB < 240) : WEND
    Last edited by richard; - 31st October 2020 at 13:45.
    Warning I'm not a teacher

  2. #2
    Join Date
    Aug 2006
    Location
    SWITZERLAND (french speaking)
    Posts
    938


    Did you find this post helpful? Yes | No

    Default Re: Read state of specific bit (i.ex. of a PORT)

    Thanks Richard

    Nevertheless, I still don't get it.

    Is this statment (version 2013-03-06) really correct?
    Attached Images Attached Images  
    Roger

Similar Threads

  1. Replies: 11
    Last Post: - 13th January 2013, 11:25
  2. How can I read a port's status
    By lecoind in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 3rd October 2009, 11:54
  3. PIN state VS Variable read
    By cburtis in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 14th December 2007, 12:54
  4. Replies: 2
    Last Post: - 27th March 2007, 13:48
  5. How to read data 4 bit
    By chai98a in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 11th December 2006, 06:07

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