element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino wifi temp 3 wire
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 2 replies
  • Subscribers 416 subscribers
  • Views 458 views
  • Users 0 members are here
  • prototyping
Related

Arduino wifi temp 3 wire

e14 Contributor
e14 Contributor over 13 years ago

I'm new at using the arduino and I need some help I have been asked to design a arduino with wifi and using a 3 wire temperature probe capable of measuring down to -90 degrees C and a PC program capable of receiving the data and storing it in a file and activating an alarm when the temperature goes under or over set limits. preferable also to have a display on board for the temperature and the ability to calibrate the probe

 

Q1. What would the best arduino to use

Q2. Is there a kit for 3 wire probes I have had a look and all I can find is 1 wire

Q3. Would it be able to have more than one device running at the same time with no conflicts

Q4. Would anyone be able to design the device for me I am willing to negotiate on the price

 

Note the device is to be used in a bio storage freezer but I would like the adaptability to use it in the lab fridges as well

  • Sign in to reply
  • Cancel
Parents
  • e14 Contributor
    0 e14 Contributor over 13 years ago

    I can write the PC side software and have a reasonable grasp of the arduino and wifi board but I really need the help on the temp probe any help

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • shabaz
    0 shabaz over 13 years ago in reply to e14 Contributor

    Hi Phillip,

     

    Temp probes supply an analog value which won't interface with the arduino directly (or at least, not very well).

    You need to design some circuit that will convert the analog value into a digital value that the arduino can understand. Google for 'RTD ADC' - the circuits are not ideal for a beginner, they are quite advanced.

    Another way could be to use a multimeter with logging or a PC interface capability maybe this one, I've not checked in detail.

    It looks expensive, but factoring in your time and design, it could be cheaper than a custom design.

    If you want to do it yourself, one way (which will still involve work) it to purchase a reference design board for an ADC, such as this one which is very low cost ($35). However, you may need to desolder and replace some resistor values depending on your temperature range, to give you the resolution you may want. You'll need a temp probe (or desolder the one on the board and extend it with wires) and by studying the datasheets for that reference design, notice that a 4-wire cable is needed for best results.

    Also, you'll need to locate a reference table for your particular probe of choice, which shows a mapping between temperature and resistance (and interpolate in-between), to get a more accurate final value.

    That particular reference board is connected to an on-board PIC microcontroller; if you want to use your Arduino, you could sever the wires going to the PIC (so that it is not used), and solder on the wires to go to the Arduino. The interface is SPI, which is a popular one and there is lots of information on it online, and in the datasheet for the ADC on the reference board.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • shabaz
    0 shabaz over 13 years ago in reply to e14 Contributor

    Hi Phillip,

     

    Temp probes supply an analog value which won't interface with the arduino directly (or at least, not very well).

    You need to design some circuit that will convert the analog value into a digital value that the arduino can understand. Google for 'RTD ADC' - the circuits are not ideal for a beginner, they are quite advanced.

    Another way could be to use a multimeter with logging or a PC interface capability maybe this one, I've not checked in detail.

    It looks expensive, but factoring in your time and design, it could be cheaper than a custom design.

    If you want to do it yourself, one way (which will still involve work) it to purchase a reference design board for an ADC, such as this one which is very low cost ($35). However, you may need to desolder and replace some resistor values depending on your temperature range, to give you the resolution you may want. You'll need a temp probe (or desolder the one on the board and extend it with wires) and by studying the datasheets for that reference design, notice that a 4-wire cable is needed for best results.

    Also, you'll need to locate a reference table for your particular probe of choice, which shows a mapping between temperature and resistance (and interpolate in-between), to get a more accurate final value.

    That particular reference board is connected to an on-board PIC microcontroller; if you want to use your Arduino, you could sever the wires going to the PIC (so that it is not used), and solder on the wires to go to the Arduino. The interface is SPI, which is a popular one and there is lots of information on it online, and in the datasheet for the ADC on the reference board.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube