20 lines
377 B
C
20 lines
377 B
C
|
/*
|
||
|
* Copyright (c) 2019 Actinius
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef _SI7060_H
|
||
|
#define _SI7060_H
|
||
|
|
||
|
/* Si7060 register addresses */
|
||
|
#define SI7060_REG_CHIP_INFO 0xC0
|
||
|
#define SI7060_REG_TEMP_HIGH 0xC1
|
||
|
#define SI7060_REG_TEMP_LOW 0xC2
|
||
|
#define SI7060_REG_CONFIG 0xC4
|
||
|
|
||
|
#define SI7060_CHIP_ID_VALUE 0x01
|
||
|
#define SI7060_ONE_BURST_VALUE 0x04
|
||
|
|
||
|
#endif /* _SI7060_H */
|