AVR模数转换Atmega32

时间:2015-11-16 03:44:08

标签: c microcontroller avr adc

我正在制作一些测量环境光并关闭或打开灯开关的系统。要做到这一点,我必须使用Atmega微控制器。光测量使用LDR完成。 LDR始终输出模拟值,我必须使用AVR的ADC功能将其转换为数字值。我对微控制器编程知之甚少。我写了一些代码,但我不知道如何使用AVR打开继电器开关。

这是我的代码

#ifndef F_CPU
#define F_CPU 8000000UL
#endif

#include <avr/io.h>
#include <stdlib.h>
#include <avr/interrupt.h>


int main(void)
{

    ADCSRA |= 1<<ADPS2;
    ADMUX |= 1<<ADLAR;
    ADCSRA |= 1<<ADIE;
    ADCSRA |= 1<<ADEN;
    sei();
    ADCSRA |= 1<<ADSC;
    while(1)
    {


    }
}   

ISR(ADC_vect)
{

    char adcres[4];
    itoa (ADCH, adcres, 10);

    PORTC=0x01; // Turn ON relay switch

    ADCSRA |= 1<<ADSC;
}

我想使用附加的LDR测量模拟值并将其转换为数字值。然后在一些每个定义的数字继电器应该打开并

我需要像这样的事情

lux = ldr_digital_value

if (lux > 5 )
   { PORTC=0x00; }
else
   { PORTC=0x01; }

我该怎么做?

1 个答案:

答案 0 :(得分:0)

假设ATmega8(avrs之间存在一些差异)

#ifndef F_CPU
#define F_CPU 8000000UL
#endif

#include <avr/io.h>
#include <stdlib.h>
#include <avr/interrupt.h>

volatile unsigned char lux=0; // the trick is the volatile.

int main(void)
{

    ADCSRA = 1<<ADPS2; //slowest clock, ok
    ADMUX  = 1<<ADLAR; // you want 8 bit only? also channel 0 selected and external VREF.
    // I suggest you to use Internal AVCC or internal 2.56V ref at first
    ADCSRA |= 1<<ADIE; // with interrupts wow!
    ADCSRA |= 1<<ADEN; // enable!
    sei();
    ADCSRA |= 1<<ADSC; // start first convertion
    while(1)
    {
         if (lux > 5 ) //please choose an appropiate value.
            { PORTC=0x00; }
         else
            { PORTC=0x01; }

    }
}   

ISR(ADC_vect)
{    
    lux =ADCH;    
    ADCSRA |= 1<<ADSC;
}