Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / autonomous_recharging / dragonfly / recharge_i2c.h @ 882

History | View | Annotate | Download (403 Bytes)

1
/**
2
 * @file recharge_i2c.h Recharge_I2C
3
 *
4
 * Functions for receiving and using i2c data from charge board.
5
 **/
6
 
7
void recharge_i2c_init(void);
8

    
9
/** @brief Seek the charging station **/
10
int recharge_i2c_get_homing_reading(void);
11
int recharge_i2c_is_battery_full(void);
12
int recharge_i2c_is_battery_charging(void);
13

    
14
void recharge_i2c_set_battery_full(int full);
15
void recharge_i2c_receive(char i2c_byte);