rtos test

Dependencies:   mbed-rtos mbed

Fork of rtos-test by Ryuichiro Ohira

bldc/i2c_helper.h

Committer:
machines94
Date:
2016-05-14
Revision:
1:ae213d6a0adf

File content as of revision 1:ae213d6a0adf:

#ifndef I2C_HELPER_H
#define I2C_HELPER_H

#include "mbed.h"

class i2c_helper{
    public:
        i2c_helper(I2C* i2c, int addr);
        int write_message(char code, char byte1, char byte2, char cmd[]);
    
    private:
        int addr;
        I2C* i2c;
};
#endif