teams: Initial implementation

The driver adds support for the Veris TEAMS Temperature Transmitter.

It provides it's output via a 4-20ma current loop.  The supported
temperature range is 10C to 35C.

This sensor was developed with a Cooking Hacks (Libelium)
4-channel 4-20ma Arduino interface shield.  For this interface,
the receiver resistance (rResistor) was specified as 165.0
ohms.

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
Jon Trulson
2016-02-26 17:08:26 -07:00
committed by Abhishek Malik
parent a8d96bd2d9
commit 42ff8b3a6e
12 changed files with 631 additions and 0 deletions

5
src/teams/CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
set (libname "teams")
set (libdescription "upm Veris TEAMS Temperature transmitter")
set (module_src ${libname}.cxx)
set (module_h ${libname}.h)
upm_module_init()