#ifndef __I2C_ANALOG_H #define __I2C_ANALOG_H #include "stm8s.h" void I2CC_Init(void); void I2C_Start(void) ; void I2C_Stop(void); void I2C_SendACK(uint8_t ack); uint8_t I2C_SendByte(uint8_t sendDAT); uint8_t I2C_RecvByte(void); #endif /*__I2C_ANALOG_H */