blob: 6d6ea662dc9380a44df57997005dced16736010b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef I2C_H
#define I2C_H
class I2C {
private:
I2C(const I2C ©);
public:
I2C () {}
signed char setup();
void scan(unsigned int *results);
signed char xmit(unsigned char address,
unsigned char tx_len, unsigned char *tx_buf,
unsigned char rx_len, unsigned char *rx_buf);
};
extern I2C i2c;
#endif
|