Maximum value of ADCIN


Closed Thread
Results 1 to 21 of 21

Hybrid View

  1. #1
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default

    Tested and re-tested today both variant : Mr.Darrel's and Mr.Aratti.
    Still different results : 5mV vs. 24 mV. It's so strange for me...

  2. #2
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    fratello,
    I'm not sure what you've done in your code, but I've tested it here and it works.

    <object id='stUkhdQ01IR1FWRltYU1tYUVNR' width='425' height='344' type='application/x-shockwave-flash' data='http://www.screentoaster.com/swf/STPlayer.swf' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0'><param name='movie' value='http://www.screentoaster.com/swf/STPlayer.swf'/><param name='allowFullScreen' value='true'/><param name='allowScriptAccess' value='always'/><param name='flashvars' value='video=stUkhdQ01IR1FWRltYU1tYUVNR'/></object>
    Attached Files Attached Files
    DT

  3. #3
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default

    Wow, Thank You again Mr.Darrel !
    Maybe my code it's wrong ; I use
    Code:
    DEFINE OSC  4
    DEFINE ADC_BITS 10
    DEFINE ADC_CLOCK 3
    DEFINE ADC_SAMPLEUS 50
    instead
    Code:
    DEFINE ADC_BITS 10     ' ADCIN resolution  (Bits)
    DEFINE ADC_CLOCK 1     ' ADC clock source  (Fosc/8)
    DEFINE ADC_SAMPLEUS 11 ' ADC sampling time (uSec)
    This is the explanation, don't ?
    NO, I think this is NOT the explanation ! My math teacher it's verry, verry angry ...
    I learn more here : http://www.darreltaylor.com/DT_Analog/
    1 step=0.0048875. So, if I have Max_result 450, Volts= 450 * 0.0048875 =2.199 Volts; for 696 --> Volts= 696 * 0.0048875 =3.401 Volts...
    Stupid me, again
    Last edited by fratello; - 13th November 2010 at 16:54.

  4. #4
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    No, that won't matter.

    Can you post your Proteus files (zipped)?
    DT

  5. #5
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default

    Yes, all is OK now !
    If v_cal is 1023 (maximum 5.000V) it's correct this command for memorise in EEPROM :
    write 0, v_cal
    I read the PBP help, but I find only this : write 5,B0 ' Send value in B0 to EEPROM location 5.
    And I can read them when I need, with this command :
    read 0, v_cal ???
    It's enough like these or need more ?
    Thanks in advance and sorry for my ignorance...

  6. #6
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    If v_cal is 1023 (maximum 5.000V) it's correct this command for memorise in EEPROM :
    write 0, v_cal
    ...
    read 0, v_cal ???
    It's enough like these or need more ?
    If you have PBP 2.60, then you could ...

    Code:
    write 0, WORD v_cal
    
    read  0, WORD v_cal
    If you don't have 2.60 yet, you'll need to ...

    Code:
    write 0, v_cal.LowByte
    write 1, v_cal.HighByte
    
    read  0, v_cal.LowByte
    read  1, v_cal.HighByte
    DT

  7. #7
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default

    I understand now ; I read 10 pages of search "eeprom".
    Of course, the answer it's simple if somebody help ! Thanks, Mr.Darrel !
    ....
    So, if eeprom it's like in picture :
    75 (hex) = 117 (dec)
    v_cal = 117 * 4,8875 = 572 mVolts ?
    Attached Images Attached Images  
    Last edited by fratello; - 14th November 2010 at 16:31. Reason: adding picture

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