16f877 with LM335 problem


Closed Thread
Results 1 to 40 of 47

Hybrid View

  1. #1
    Join Date
    Nov 2006
    Location
    Melbourne, Australia
    Posts
    25

    Default 16f877 with LM335 problem

    Hi all,

    am having problem with displaying deg C using the LM 335 temp sender
    i believe i have set the AD settings right for 16F877 RA0 pin
    have attached the prog and circuit

    thanks
    Attached Images Attached Images  
    Attached Files Attached Files
    IF ITS STOCK IT WONT ROCK

  2. #2
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,604


    Did you find this post helpful? Yes | No

    Default

    Hi,
    I've never used this sensor but are you sure you have it wired correct?
    As in you schematic,viewed from the top with the flat side "up" the left most pin should be GND. The middle pin then goes to the analog in of the PIC with a 12k pullup. At least that's how I read the datasheets example for the basic temp sensor circuit.

    /Henrik Olsson.

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


    Did you find this post helpful? Yes | No

    Default

    Hi, Cooter

    Your conversion formula is wrong ...

    °K = °C +273.15... and your scaling doesn't meet anything known.

    now, you MUST Download your sensor datasheet ... and wire it decently.

    Can't work at this time !!!

    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 " !!!
    *****************************************

  4. #4
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Acetronics View Post
    Hi, Cooter

    Your conversion formula is wrong ...

    °K = °C +273.15... and your scaling doesn't meet anything known.

    now, you MUST Download your sensor datasheet ... and wire it decently.

    Can't work at this time !!!

    Alain
    Oh ya, that circuit's is out in the weeds somewhere.
    And when you do get it working, the easiest way I've found to calibrate the system is to dip the sensor in ice water and set the reading to match, not change any resistors or rewire anything, just adjust the math on the PIC to match.
    And are you sure the A/D is working right? Have you tried putting a pot across the A/D input? Does that respond correctly?

  5. #5
    Join Date
    Nov 2006
    Location
    Melbourne, Australia
    Posts
    25


    Did you find this post helpful? Yes | No

    Angry 16f877 Adc Not Working

    hi all,
    am trying to understand how to implament the ADC on the pic 16f877
    my code is for a LM335 temp sensor connected to RA0(pin 2)
    the VDD and VSS is from a 7805 voltage reg that also supplies the LM335

    Cant get ADC to work from my circuit. or is it my code??????????????
    why cant i use decimal ie 0.46 in my maths routine?????????????

    This has had me up all week trying to get it to work

    PLZ someone guide me in the correct direction


    'PIC 16f877 with a LM335 temp sender
    '
    '
    define osc 20 ' 20mhz oscillator
    ' LCD ROUTINES
    DEFINE LCD_DREG PORTB
    DEFINE LCD_DBIT 4 '4,5,6,7
    DEFINE LCD_RSREG PORTB
    DEFINE LCD_RSBIT 3
    DEFINE LCD_EREG PORTB
    DEFINE LCD_EBIT 2
    DEFINE LCD_BITS 4
    DEFINE LCD_LINES 2
    DEFINE LCD_COMMANDUS 2000
    DEFINE LCD_DATAUS 50
    ' Define ADCIN parameters
    Define ADC_BITS 10 ' Set number of bits in result
    define ADC_CLOCK 3 ' Set clock source
    Define ADC_SAMPLEUS 50 ' Set sampling time in uS
    AD_RAW var word ' Create adval to store result
    AD_RESULT var word


    TRISA = %11111111 ' Set PORTA to all input
    ADCON1 = %10001110 ' Set PORTA analog and RIGHT justify result
    ADCON0 = %10000001 ' Configure and turn on A/D Module

    Pause 500 ' Wait .5 second

    loop:
    ADCIN 0, AD_RAW ' Read channel 0 to ad_raw
    AD_RESULT = (ad_raw *0.48828) - 273.15 ' Convert Kelvins to Degrees C

    Lcdout $fe, 1 ' Clear LCD
    Lcdout "TEMP ", DEC AD_Result ," C" ' Display the decimal value

    Pause 100 ' Wait .1 second

    Goto loop ' Do it forever
    End
    Attached Images Attached Images  
    IF ITS STOCK IT WONT ROCK

  6. #6
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,115


    Did you find this post helpful? Yes | No

    Default Here it goes again and again....

    Did you really bought the copy of PBP you have????

    Did it came with it a MANUAL ???

    Did you read the MANUAL ????

    Didn't find any reference as to that PBP is NOT supporting floating maths ???

    I am looking forward to you replying to the above so that we can continue support here.

    Ioannis


    P.S. If you are just connect the sensor to the PIC directly, your useful range will be limited (0C-100C is from 2,7315 to 3,7315 Volts). I suggest to use opamps and extend the range of the sensor from 0C->0Volts to 100C->5 Volts.

  7. #7
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    Did you really bought the copy of PBP you have????

    Did it came with it a MANUAL ???

    Did you read the MANUAL ????

    Didn't find any reference as to that PBP is NOT supporting floating maths ???
    Amazing isn't it?

  8. #8
    Join Date
    Jun 2006
    Location
    Greece
    Posts
    302


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    Did you really bought the copy of PBP you have????

    Did it came with it a MANUAL ???

    Did you read the MANUAL ????

    Didn't find any reference as to that PBP is NOT supporting floating maths ???

    I am looking forward to you replying to the above so that we can continue support here.
    Ton pethanes ton anthropo.

  9. #9
    Join Date
    Nov 2006
    Location
    Melbourne, Australia
    Posts
    25


    Did you find this post helpful? Yes | No

    Angry Still seeing red with the ADC

    Quote Originally Posted by Ioannis View Post
    Did you really bought the copy of PBP you have????

    Did it came with it a MANUAL ???

    Did you read the MANUAL ????

    Didn't find any reference as to that PBP is NOT supporting floating maths ???

    I am looking forward to you replying to the above so that we can continue support here.

    Ioannis


    P.S. If you are just connect the sensor to the PIC directly, your useful range will be limited (0C-100C is from 2,7315 to 3,7315 Volts). I suggest to use opamps and extend the range of the sensor from 0C->0Volts to 100C->5 Volts.
    thanks for the quick responce

    got PBP 2.47 from DONTRONICS here in melbourne

    Yes. Read the 213 pages and even been looking up web sites with references. downloaded the data sheet read the A2D converter module.. CH 11 pg 127

    ok just found 1 error in setting the TRISA had 8 bits set to 1 should have been 6 ie TRISA %111111 not TRISA %11111111

    still not workin. even connected a 5k lin pot and got no responce.


    and as Ioannis said using an opamp to extend the range i will be now

    MY CODE WILL NOT COMPILE WITH THIS LINE
    AD_RESULT = (ad_raw *0.48828) - 273.15

    Had to do it this way
    ad_result = (ad_raw * 48828)/1000
    ad_result = ad_result/100
    ad_result = (ad_result *27315)/100
    WHY????????????????????????????????????????
    HMMMMMMM very frustrating
    IF ITS STOCK IT WONT ROCK

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


    Did you find this post helpful? Yes | No

    Default Any schematic to achieve this please?

    Quote Originally Posted by Ioannis View Post
    If you are just connect the sensor to the PIC directly, your useful range will be limited (0C-100C is from 2,7315 to 3,7315 Volts). I suggest to use opamps and extend the range of the sensor from 0C->0Volts to 100C->5 Volts.
    Can anyone please help me with a schematic on how to achieve what Ioannis is suggesting or is the example below not far away from what I'm looking for?

    How do I "electronically" rescale 2,7315Volts to an ideal "0V" and/or a 3,7315Volts to an ideal "5V"?

    I don't know...

    As I'd like to use my sensor to control a freezer, the temperature range I need goes from -30°C to +30°C.

    I found quite some info, for example here and I've already ordered some LM358 opamps to build this circuit.

    It looks like this circuit will output 0V at 0°C and 1V at 100°C. It is still "loosing" 4 precious volts, isn't it?

    How can this circuit be modified to, again ideally, match something like -30°C = 0V and +30°C = 5V?



    Last edited by flotulopex; - 10th April 2015 at 22:19. Reason: typo
    Roger

Similar Threads

  1. 16F877 HSERIN problem with 3th party software
    By RFsolution in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 11th March 2009, 17:11
  2. LCD problem with 16F877
    By alexx_57 in forum General
    Replies: 10
    Last Post: - 25th July 2007, 13:47
  3. problem using 16f877
    By yrch in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 20th February 2006, 18:58
  4. 16F877 20MHz problem
    By swordman in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 31st July 2004, 10:02
  5. 16F877, DS18S20 and Serial Comm Problem
    By YellowTang in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 26th April 2004, 10:36

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