#ifndef _I2C_H
#define _I2C_H

#define I2C_ACK 0
#define I2C_NAK 1

void i2c_start();
void i2c_stop();
int i2c_write(int b);
int i2c_read(int ack);

#endif /* _I2C_H */
