/* 
 * File:   I2C.h
 * Author: hamilton
 *
 * Created on October 24, 2019, 10:29 AM
 */

#ifndef I2C_H
#define	I2C_H
void WriteI2CData(char DeviceAddr,int RegisterAddr, char *data, int NumBytes);
void ReadI2CData(char DeviceAddr, int RegisterAddr, char *data, int NumBytes);
#endif	/* I2C_H */

