基于CW32的电压电流表 V1.0.0
一款物联网多功能电压电流表
 
载入中...
搜索中...
未找到
sht40.h
浏览该文件的文档.
1
11#ifndef SHT40_H_
12#define SHT40_H_
13
14 #include "board.h"
15 #include "key.h"
16 #include "GUI.h"
17 #include "Lcd_Driver.h"
18 #include <math.h>
19
20 //定义SCL和SDA的引脚
21 #define SDA_PIN GPIO_PIN_5
22 #define SDA_PORT CW_GPIOA
23 #define SCL_PIN GPIO_PIN_6
24 #define SCL_PORT CW_GPIOA
25
26 #define READ_SDA() GPIO_ReadPin(SDA_PORT, SDA_PIN)
27 #define SDA_HIGH() GPIO_WritePin(SDA_PORT, SDA_PIN, GPIO_Pin_SET)
28 #define SDA_LOW() GPIO_WritePin(SDA_PORT, SDA_PIN, GPIO_Pin_RESET)
29 #define SCL_HIGH() GPIO_WritePin(SCL_PORT, SCL_PIN, GPIO_Pin_SET)
30 #define SCL_LOW() GPIO_WritePin(SCL_PORT, SCL_PIN, GPIO_Pin_RESET)
31
32 // SHT40操作
33 #define SHT40_ADDRESS 0x44 // SHT40的I2C地址
34 #define SHT40_COMMAND_MEASURE_HIGH_PRECISION 0xFD //要发送的命令 0XFD
35
36 void SHT40_Show_Temp_Humid(void);
37
38#endif
GUI绘制相关头文件
LCD屏幕驱动头文件
按键相关操作的头文件