mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 22:32:44 +01:00
15 lines
253 B
C
15 lines
253 B
C
#ifndef __LTC4150_H
|
|
#define __LTC4150_H
|
|
|
|
#include <ltc4150_arch.h>
|
|
|
|
void ltc4150_init();
|
|
void ltc4150_start();
|
|
void ltc4150_stop();
|
|
|
|
double ltc4150_get_current_mA();
|
|
double ltc4150_get_total_mA();
|
|
double ltc4150_get_avg_mA();
|
|
|
|
#endif /* __LTC4150_H */
|