huyongji1.1-system/App/wendu/wendu.h

18 lines
410 B
C
Raw Normal View History

2025-04-16 09:58:09 +08:00
#ifndef __WENDU_H
#define __WENDU_H
#include "adc.h"
#include "stdio.h"
#include "math.h"
#include "Inf_4G.h"
#include "Driver.h"
extern uint16_t adc_value;
extern float voltage, temperature;
extern volatile float analog_status[3]; // 添加这行!
extern float temp_lower_limit; // 默认下限温度15℃
extern float temp_upper_limit; // 默认上限温度20℃
void Print_Temperature(void);
#endif