You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "driver.hpp"
|
|
|
|
Driver::Driver(i2c_write_buffer_t& i2cWB) : i2cWriteBuffer(i2cWB)
|
|
{
|
|
|
|
}
|
|
|
|
void Driver::doSomething()
|
|
{
|
|
uint8_t a[] = {1,2,3,4};
|
|
i2cWriteBuffer(0x00,a,sizeof(a));
|
|
} |