我的任务是创建一个基于温度的风扇来控制PWM输出。我正在使用带有 AVRISPmkII 编程器和ATmega328控制器的Arduino Uno 。现在的任务是在I²C线上连接 4 个MLX90614传感器(我已经为每个传感器分配了不同的从地址,因为我无法在 I²C 上连接它们,每个传感器都有相同的地址)。
我能够读取每个传感器的温度并获得最高温度。但是当通过 PWM 控制四个风扇时,问题就来了。我必须从每个传感器获取温度读数,获取最高温度,然后根据设置的 PWM 输出温度范围控制风扇的速度。代码有什么问题?
#include <i2cmaster.h>
int PWMoutput=0;
int Temp[4];
int sensor[4]={0xAC<<1, 0xCC<<1, 0xC0<<1, 0xB0<<1}; // Array with address of four mlx90614 sensors
int Maxtemp;
int fan = 9; // FAN connected to digital pin 9
//------------------------------------------------//
//------------------SETUP-------------------------//
//------------------------------------------------//
void setup()
{
Serial.begin(9600); // Start serial communication at 9600 bit/s.
i2c_init(); // Initialise the I²C bus.
PORTC = (1 << PORTC4) | (1 << PORTC5); // Enable pullups.
// Initialize the digital pin as an output.
pinMode(fan, OUTPUT);
}
//------------------------------------------------//
//-------------------MAIN-------------------------//
//------------------------------------------------//
void loop()
{
Maxtemp=readtemp(0);
setfanmode(Maxtemp);
// Prints all readings in the serial port
i=0;
/*while(i<1)
{
Serial.print("Sensor");
Serial.println(i,DEC);
Serial.print("Celcius: ");
Serial.println(Temp[i],DEC);
i++;
}*/
Serial.print("Maximum: Celcius: ");
Serial.println(Maxtemp);
}
void setfanmode(int degree) // Setting the fan speed modes according to
// the temperature in Celcius
// with PWM Duty cycle to 0%, 50% and 100%.
{
if (degree<=30)
PWMoutput=0;
else if(degree<=60)
PWMoutput=127;
else if(degree<=80)
PWMoutput=255;
}
int maxtemp() // Reading max temperature
{
int i=1;
int temperature;
while (i<4)
{
if (Temp[i-1]<Temp[i])
temperature=Temp[i];
i++;
}
return(temperature);
}
float readtemp(int sensornumb)
{
int data_low = 0;
int data_high = 0;
int pec = 0;
// Write
i2c_start_wait(sensor[sensornumb]+I2C_WRITE);
i2c_write(0x07);
// Read
i2c_rep_start(sensor[sensornumb]+I2C_READ);
data_low = i2c_readAck(); // Read 1 byte and then send ack.
data_high = i2c_readAck(); // Read 1 byte and then send ack.
pec = i2c_readNak();
i2c_stop();
// This converts high and low bytes together and processes temperature,
// MSB is a error bit and is ignored for temperatures.
double tempFactor = 0.02; // 0.02 degrees per LSB (measurement
// resolution of the MLX90614).
double tempData = 0x0000; // Zero out the data.
int frac; // Data past the decimal point.
// This masks off the error bit of the high byte, then moves it left
// 8 bits and adds the low byte.
tempData = (double)(((data_high & 0x007F) << 8) + data_low);
tempData = (tempData * tempFactor)-0.01;
float celcius = tempData - 273.15;
// Returns temperature in Celcius.
return celcius;
}