1kOhm RTD

This page describes the temperature-sensing element chosen for the sensor node of this project, a 1kOhm RTD.

typeL.jpg

Component Manufacture Info

The datasheet for our device can be found here.
The Mouser.ca link can be found here.

Resources for the RTD Software Interface in SSv5

The microprocessor that we are using has IADC capability on all the ports.

iadc0_pin_reference.PNG

Some considerations:

  1. We only need one IADC, so we can look to IADC0.
  2. Single-ended measurements (as opposed to differential measurements) take the voltage compared to the low-level ground common to all.
  3. I chose to prefer timing over interrupts, because I wanted to get familiar with other timing functions, like millis()-equivalents for data sync.

For these reasons, I chose to base my test code off of iadc_scan_timer. Ultimately I did not have time to get non-zero values from the IADC.

There are several software examples that could provide guidance for this peripheral - I tried to choose one that would not shut into a lower energy level for testing (since I do not predict wanting to use lower energy modes during data collection), however this could be useful later on if this proves false.

  • There is also a useful Arduino example on how to implement the algorithm yourself here.

Resources for the Circuit

To create the circuit around the RTD, a Wheatstone bridge is recommended for RTDs. The following references can be used for an estimate:

  • Wheatstone Bridge Calculator - For determining the three resistances needed to create a Wheatstone Bridge in the same range as what is needed for the IADC.
  • RTD Calculator - For determining the resistance of a standard RTD. We are using a 1kOhm RTD, which means it will be 1kOhm at 0°C.
  • More sophisticated circuit - if there are problems with stability.

References

Potential References

I have listed these in my log as potential sources, however I have not spent much time investigating them.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License