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 tilt_angles by
ENGO333_I2C.cpp
- Committer:
- mpetovello
- Date:
- 2016-11-24
- Revision:
- 0:3bffc1862262
File content as of revision 0:3bffc1862262:
#include "ENGO333_I2C.h" ENGO333_I2C::ENGO333_I2C(PinName sda, PinName scl) : i2c(sda, scl) { // Do nothing } ENGO333_I2C::~ENGO333_I2C() { // Do nothing } void ENGO333_I2C::setSpeed(int freq) { this->i2c.frequency(freq); } void ENGO333_I2C::writeOneByte(char deviceAddress, char registerAddress, char value) { char temp[2]; temp[0] = registerAddress; temp[1] = value; this->i2c.write(deviceAddress, temp, 2); } char ENGO333_I2C::readOneByte(char deviceAddress, char registerAddress) { char temp = 0; this->i2c.write(deviceAddress, ®isterAddress, 1); this->i2c.read(deviceAddress, &temp, 1); return (char)temp; } void ENGO333_I2C::readBytes(char deviceAddress, char registerAddress, char* value, int length) { this->i2c.write(deviceAddress, ®isterAddress, 1); this->i2c.read(deviceAddress, value, length); }