Implemented usage example

This commit is contained in:
2020-02-21 15:10:45 +01:00
parent 4075cb4e63
commit e82fb9971e
2 changed files with 14 additions and 1 deletions

Submodule i2c/i2c updated: 939cdc1196...629be83f8a

View File

@@ -8,8 +8,21 @@ void i2cTest()
using config = Hardware<Prescaler::PRESCALER_1, 100000>;
I2c<config> twi;
constexpr auto I2CADDRESS = 0x4B;
twi.init();
if (!twi.start<I2CADDRESS>(false)) {
twi.stop();
return;
}
if (!twi.write(0x7F)) {
twi.stop();
return;
}
twi.stop();
}
int main()