17 lines
295 B
C
17 lines
295 B
C
|
/*
|
||
|
* coulomb.h
|
||
|
*
|
||
|
* Created on: Apr 27, 2020
|
||
|
* Author: oarap
|
||
|
*/
|
||
|
|
||
|
#ifndef _COULOMB_H_
|
||
|
#define _COULOMB_H_
|
||
|
|
||
|
#define COULOMB_ADDR 0x64 //device address
|
||
|
#define COULOMB_WRITE_CMD 0x00 //coulomb write command
|
||
|
#define COULOMB_READ_CMD 0x01 //coulomb read command
|
||
|
|
||
|
|
||
|
#endif /* _COULOMB_H_ */
|