AD conversion, the programmed registers are:
ADMUX: Multiplexer selection register. Reference voltage, alignment, analog channel and gain selection bits
ADCSR (A): enable, interrupt flag, interrupt enable, prescaler value, etc.
ADCL, ADCH: data register
SFI0R: Special Function Register
///////////////////////////////////////////////////// /////////////////////////////////////////////////////
#ifndef __AD_H__
#define __AD_H__
#include
#include
#define uchar unsigned char
#define uint unsigned int
extern uint mega16_ad(void);
#endif
///////////////////////////////////////////////////// /////////////////////////////////////////////////////
#include "ad.h"
uint mega16_ad(void)
{
uint addata;
DDRA&=~BIT(PA0);
PORTA&=~BIT(PA0);
ADMUX=0x00;
ADCSR=0X80;
ADCSR|=BIT(ADSC);
while(!(ADCSR&(BIT(ADIF))));//That is: while(!(ADCSR&0x10));
addata=ADCL;
addata=addata+ADCH*256;
return addata;
}
///////////////////////////////////////////////////// ///////////////////////////////////////////////////// /////
#include "ad.h"
#include "smg.h"
void main(void)
{
DDRA&=~BIT(PA0); //Select analog channel 0
PORTA&=~BIT(PA0);
SystemInit();
SystemInit();
while(1)
{
Show(mega16_ad()/1000,0);
Show(mega16_ad()%1000/100,1);
Show(mega16_ad()%100/10,2);
Show(mega16_ad()%100%10,3);
}
}
///////////////////////////////////////////////////// ///////////////////////////////////////////////////// ////
/*MCU:ATMEGA16
Crystal frequency: 8MHZ
Function: Digital tube dynamic scanning program
*/
#ifndef __SMG_H__
#define __SMG_H__
#include
#include
#define uchar unsigned char
#define uint unsigned int
extern const table[];
//**********1ms benchmark delay program***********************************
void DelayMs(unsigned int ms);
void SystemInit(void);
void Show(unsigned char ddata,unsigned char num);
#endif
///////////////////////////////////////////////////// ///////////////////////////////////////////////////// ///
/*MCU:ATMEGA16
Crystal frequency: 8MHZ
Function: Digital tube dynamic scanning program
*/
#include "smg.h"
#pragma data:code //Common anode digital tube code table
const table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,
0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0xb6};
//**********1ms benchmark delay program***********************************
void DelayMs(unsigned int ms)
{
unsigned int j;
while(--ms)
{
for(j=1141;j>0;--j);//1141
}
}
void SystemInit(void)
{
DDRA |= (1<<2)|(1<<3)|(1<<4)|(1<<6);
DDRB |= 0xFF;
PORTA |= (1<<2)|(1<<6);
PORTB = 0xFF;
PORTA &= (~(1<<2))&(~(1<<6));
}
void Show(unsigned char ddata,unsigned char num)
{
PORTA |= (1<<3);
PORTB = table[ddata];
PORTA &= ~(1<<3);
PORTB = 0x00;
PORTA |= (1<<4);
PORTB = (1<
Keywords:MEGA16
Reference address:MEGA16 MCU_AD conversion program
PORTA &= ~(1<<4);
DelayMs(2);
}
Previous article:AVR MCU T1 interrupt timing 1 second program
Next article:Learn MCU well, challenge high salary is not a dream
- Popular Resources
- Popular amplifiers
Recommended Content
Latest Microcontroller Articles
He Limin Column
Microcontroller and Embedded Systems Bible
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
MoreSelected Circuit Diagrams
MorePopular Articles
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
MoreDaily News
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
Guess you like