Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Eric_O

  1. E

    [PIC] LM35CZ > Amplification Chain to DAC

    Thank you Klaus for your feedback. Could you explain to me more simply what you wrote to me ? I understand the 100 mV / 1.1 V ratio. But I'm afraid I didn't understand the whole thing well. Thank you.
  2. E

    [PIC] LM35CZ > Amplification Chain to DAC

    Concerning external Vref I will plan to use « LM385 Adjustable Micropower Voltage References » with a Vref of 1,3 V. Have to modify the MikroC source, calculations and setting VCFG0 - Voltage Reference bit of ADCON1 register of PIC16F887 to 1.
  3. E

    [PIC] LM35CZ > Amplification Chain to DAC

    Thank you for your feedback. Concerning LM35 and measurements of negatives temperatures, i tested the circuitery showed in the datasheet, here under. It works not too bad (except problem of ADC with VCC as Vref). Eric
  4. E

    [PIC] LM35CZ > Amplification Chain to DAC

    1) Calculation of the mounting characteristics for a full-scale variation of the ADC : I chose a measurement range between -10 °C and +100 °C with a 10-bit analog/digital conversion, i.e. from 0 to 1023, i.e. 1024 values. In absolute terms, the temperature range is therefore 10 °C + 100 °C...
  5. E

    [PIC] 16F887 > CAN > External voltage référence of 1,1 V or 1,2

    Could be till 0,05 °C ? Regards. Éric
  6. E

    [PIC] 16F887 > CAN > External voltage référence of 1,1 V or 1,2

    Regarding your recommandations after these experiments with LM35CZ, LM135 and MCP9701A, I will switch to DS1820 and will try LM73. I didn’t know this last device. 1707573421 OK. Instead of using next time CAN (Convertisseur Analogique Numérique) i will use « ADC ». No worries, i can find by...
  7. E

    [PIC] 16F887 > CAN > External voltage référence of 1,1 V or 1,2

    CAN, means Digital Analog converter in French. Looking at the link indicated above in my first message and looking at the datasheet of the 16F887 it seems that from the ADCON1 register we can indicate to the CAN another voltage range on which to make the conversion rather than 0 - 5V (VDD) ? -...
  8. E

    [PIC] 16F887 > CAN > External voltage référence of 1,1 V or 1,2

    The PIC 16F887 has a 10-bit analog / digital converter. With an LM35CZ or an LM135 or an MCP9701A I would like to measure temperatures between - 10°C and + 100ºC. For example, knowing that the LM35CZ delivers 10 mV / °C, the voltage range on its pin 2 (Vout), will vary from - 100 mV to + 1000...
  9. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Thanks, MCP9701A works well. Displayed temp on LCD meets room temp displayed on an digital thermometer. Needed to write a new mV to ºC formula according datasheet and considering the offset for negative temp. Now I plan to put MCP in a steel tube for different measurements. Have already an...
  10. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Thanks Brian. « The ADC input voltage and the LCD reading are in accord, aside from possibly being scaled by 10 so the ADC itself seems to be working OK. » : It is my opinion too. Multimeter was on Thank you Paul. Made corrections. 👍🏻 1703934005 Thank you Brian. Concerning your feedback « The...
  11. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Dear Brian, Regarding your advices, here under is the table of measurements values and the code in the attached file : Almost for each voltage value set every 0,25 V with potentiometer (values displayed on Multimeter > first column), voltages values dispayed on LCD (second column) switch to...
  12. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Do some body have an idea, concerning my problem ? Thanks 🙏🏻
  13. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Thank’s. I did correction. 👍🏻 Thank you for this smart remark. I make correction.
  14. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Merci ! I did that. When room temperature is 23°C, voltage between Vout (pin 2) and GND (pin 3) of LM35 is 230 mV … But when displayed temp on LCD change every 5 sec (due to the delay in my code) as shown on attached pics, temp is consistent only once every four samplings. 😕🤔 1697545394 Merci ...
  15. E

    [SOLVED] 16F887 with LM35DZ (measurement of positive temp only)

    Dear Susan, Here under are both subroutines for ADC : void ADC_initialization() { ADCON0 = 0b01000001; ADCON1 = 0b10000000; } unsigned int ADC_read(unsigned char channel) { static unsigned int k; ADCON0 = ADCON0 & 0b11000011; channel = channel << 2; ADCON0 = ADCON0 | channel...

Part and Inventory Search

Back
Top