Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os by
features/unsupported/tests/peripherals/TMP102/TMP102.cpp
- Committer:
- elessair
- Date:
- 2016-10-23
- Revision:
- 0:f269e3021894
File content as of revision 0:f269e3021894:
#include "TMP102.h" #define TEMP_REG_ADDR 0x00 TMP102::TMP102(PinName sda, PinName scl, int addr) : m_i2c(sda, scl), m_addr(addr) { m_i2c.frequency(400000); } TMP102::~TMP102() { } float TMP102::read() { const char tempRegAddr = TEMP_REG_ADDR; m_i2c.write(m_addr, &tempRegAddr, 1); char reg[2] = {0,0}; m_i2c.read(m_addr, reg, 2); unsigned short res = (reg[0] << 4) | (reg[1] >> 4); float temp = (float) ((float)res * 0.0625); return temp; }