2024-12-25 00:37:53 +08:00

27 lines
530 B
C

//
// Created by dell on 24-12-20.
//
#ifndef TMP112_H
#define TMP112_H
#include "gd32e23x_it.h"
#include "gd32e23x.h"
#include "systick.h"
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "i2c.h"
/******************************************************************************/
#define TMP112A_ADDR (0x49 << 1)
/******************************************************************************/
uint32_t tmp112a_get_raw_channel_result(void);
#endif //TMP112_H