#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