You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dmm-libs/include/twi.h

12 lines
244 B
C

#ifndef _TWI_H_
#define _TWI_H_
void TWI_Init (void);
int16_t TWI_Start (void);
int16_t TWI_Address_RW (uint8_t address);
int16_t TWI_Write (uint8_t data);
void TWI_Stop (void);
void LCD_BacklightLED (uint8_t led_selector);
#endif