1 /* 2 * Copyright (c) 2019 Actinius 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _SI7060_H 8 #define _SI7060_H 9 10 /* Si7060 register addresses */ 11 #define SI7060_REG_CHIP_INFO 0xC0 12 #define SI7060_REG_TEMP_HIGH 0xC1 13 #define SI7060_REG_TEMP_LOW 0xC2 14 #define SI7060_REG_CONFIG 0xC4 15 16 #define SI7060_CHIP_ID_VALUE 0x01 17 #define SI7060_ONE_BURST_VALUE 0x04 18 19 #endif /* _SI7060_H */ 20