51系列单片机的一种万年历优化算法源程序

发布者:fnfeecjknquc最新更新时间:2015-12-22 来源: eefocus关键字:51系列  单片机  万年历  优化算法 手机看文章 扫描二维码
随时随地手机看文章
适用于51系列单片机的一种万年历优化算法源程序

一、 阳历算法

具体算法见函数Void get_solar_day_date(void),这样阳历日历的星期排法就确定了。

表1:

月份

 

1

 

2

 

3

 

4

 

5

 

6

 

7

 

8

 

9

 

10

 

11

 

12

 

闰年

 

31

 

29

 

31

 

30

 

31

 

30

 

31

 

31

 

30

 

31

 

30

 

31

 

非闰年

 

31

 

28

 

31

 

30

 

31

 

30

 

31

 

31

 

30

 

31

 

30

 

31

 

变量定义:

Public:

Unsigned int temp_total_day;

Unsigned char gc_solar_calendar_year;

Unsigned char gc_solar_calendar_month;

Unsigned char gc_solar_calendar_date;

Unsigned char gc_lunar_calendar_year;

Unsigned char gc_lunar_calendar_month;

Unsigned char gc_lunar_calendar_date;

Unsigned char start_day_of_week;

说明:函数get_solar_day_date(void)的输入变量:gc_solar_calendar_year和gc_solar_calendar_month

输出变量:start_day_of_week和temp_total_day

Void get_solar_day_date(void)

{

unsigned char temp01;

 

 

start_day_of_week = 2; temp_total_day = 0;calculate_temp = 1;

if(gc_solar_calendar_year > 99)

{start_day_of_week = 6;calculate_temp = 100;}

for(temp01 = calculate_temp; temp01

{ if(temp01%4 == 0){start_day_of_week +=2;temp_total_day += 366; }

else {start_day_of_week +=1;temp_total_day += 365;}}

for(temp01 = 1;temp01

{ switch(temp01)

{case 1,3,5,7,8,10,12: start_day_of_week +=3;temp_total_day +=31;break;

case 2: if(((gc_solar_calendar_year%4) == 0)&&(gc_solar_calendar_year != 200))

{start_day_of_week +=1; temp_total_day +=29;}

else {start_day_of_week +=0;temp_total_day +=28;} break;

case 4,6,9,11: start_day_of_week +=2; temp_total_day +=30; break;}}

start_day_of_week %=7;

 

}

二、 阴历算法

200年需要200 × 2 = 400个字节,构成阴历压缩数据表lunar_calendar_month_table[]如下:

const char lunar_calendar_month_table[]={ //从阴历年1900年到2100年

 

 

 

0x00,0x04,0xad,0x08,0x5a,0x01,0xd5,0x54,0xb4,0x09,0x64,0x05,0x59,0x45, 0x95,0x0a,0xa6,0x04,0x55,0x24,0xad,0x08,0x5a,0x62,0xda,0x04,0xb4,0x05, 0xb4,0x55,0x52,0x0d,0x94,0x0a,0x4a,0x2a,0x56,0x02,0x6d,0x71,0x6d,0x01, 0xda,0x02,0xd2,0x52,0xa9,0x05,0x49,0x0d,0x2a,0x45,0x2b,0x09,0x56,0x01, 0xb5,0x20,0x6d,0x01,0x59,0x69,0xd4,0x0a,0xa8,0x05,0xa9,0x56,0xa5,0x04, 0x2b,0x09,0x9e,0x38,0xb6,0x08,0xec,0x74,0x6c,0x05,0xd4,0x0a,0xe4,0x6a, 0x52,0x05,0x95,0x0a,0x5a,0x42,0x5b,0x04,0xb6,0x04,0xb4,0x22,0x6a,0x05, 0x52,0x75,0xc9,0x0a,0x52,0x05,0x35,0x55,0x4d,0x0a,0x5a,0x02,0x5d,0x31, 0xb5,0x02,0x6a,0x8a,0x68,0x05,0xa9,0x0a,0x8a,0x6a,0x2a,0x05,0x2d,0x09, 0xaa,0x48,0x5a,0x01,0xb5,0x09,0xb0,0x39,0x64,0x05,0x25,0x75,0x95,0x0a, 0x96,0x04,0x4d,0x54,0xad,0x04,0xda,0x04,0xd4,0x44,0xb4,0x05,0x54,0x85, 0x52,0x0d,0x92,0x0a,0x56,0x6a,0x56,0x02,0x6d,0x02,0x6a,0x41,0xda,0x02, 0xb2,0xa1,0xa9,0x05,0x49,0x0d,0x0a,0x6d,0x2a,0x09,0x56,0x01,0xad,0x50, 0x6d,0x01,0xd9,0x02,0xd1,0x3a,0xa8,0x05,0x29,0x85,0xa5,0x0c,0x2a,0x09, 0x96,0x54,0xb6,0x08,0x6c,0x09,0x64,0x45,0xd4,0x0a,0xa4,0x05,0x51,0x25, 0x95,0x0a,0x2a,0x72,0x5b,0x04,0xb6,0x04,0xac,0x52,0x6a,0x05,0xd2,0x0a, 0xa2,0x4a,0x4a,0x05,0x55,0x94,0x2d,0x0a,0x5a,0x02,0x75,0x61,0xb5,0x02, 0x6a,0x03,0x61,0x45,0xa9,0x0a,0x4a,0x05,0x25,0x25,0x2d,0x09,0x9a,0x68, 0xda,0x08,0xb4,0x09,0xa8,0x59,0x54,0x03,0xa5,0x0a,0x91,0x3a,0x96,0x04, 0xad,0xb0,0xad,0x04,0xda,0x04,0xf4,0x62,0xb4,0x05,0x54,0x0b,0x44,0x5d, 0x52,0x0a,0x95,0x04,0x55,0x22,0x6d,0x02,0x5a,0x71,0xda,0x02,0xaa,0x05, 0xb2,0x55,0x49,0x0b,0x4a,0x0a,0x2d,0x39,0x36,0x01,0x6d,0x80,0x6d,0x01, 0xd9,0x02,0xe9,0x6a,0xa8,0x05,0x29,0x0b,0x9a,0x4c,0xaa,0x08,0xb6,0x08, 0xb4,0x38,0x6c,0x09,0x54,0x75,0xd4,0x0a,0xa4,0x05,0x45,0x55,0x95,0x0a, 0x9a,0x04,0x55,0x44,0xb5,0x04,0x6a,0x82,0x6a,0x05,0xd2,0x0a,0x92,0x6a, 0x4a,0x05,0x55,0x0a,0x2a,0x4a,0x5a,0x02,0xb5,0x02,0xb2,0x31,0x69,0x03, 0x31,0x73,0xa9,0x0a,0x4a,0x05,0x2d,0x55,0x2d,0x09,0x5a,0x01,0xd5,0x48, 0xb4,0x09,0x68,0x89,0x54,0x0b,0xa4,0x0a,0xa5,0x6a,0x95,0x04,0xad,0x08, 0x6a,0x44,0xda,0x04,0x74,0x05,0xb0,0x25,0x54,0x03,};

确定阳历日和阴历日的对应关系的算法:

对于其他任何一个阳历日和阴历日的对应关系,都可以通过以下算法求得结果。具体算法由如下函数get_lunar_day(void)实现:

说明:函数get_lunar_day(void)的输入变量:gc_solar_calendar_year和gc_solar_calendar_month

输出变量:gc_lunar_calendar_year、gc_lunar_calendar_month和gc_lunar_calendar_date

void get_lunar_day(void)

{unsigned char temp_leap_month;

unsigned char temp_flag;

unsigned char calculate_temp;

unsigned char mc_tpumenus_temp_loop;

unsigned char mc_tpumenus_temp_01;

temp_leap_month = 0;temp_flag = 1;

//条件初始化二次,减少运算数据量.

if(gc_solar_calendar_year > 99)

{gc_lunar_calendar_year = 99;gc_lunar_calendar_month = 11;

gc_lunar_calendar_date = 25;temp_total_day += 25;calculate_temp = 100;}

else

{gc_lunar_calendar_year = 0;gc_lunar_calendar_month = 11;

gc_lunar_calendar_date = 11;temp_total_day += 11;calculate_temp = 1;}

if(gc_solar_calendar_year >calculate_temp||gc_solar_calendar_month>1)

{ for(mc_tpumenus_temp_loop = 1;mc_tpumenus_temp_loop>0;){

temp_total_day -=calendar_calculate_lunar_month_total_day();

temp_leap_month = tpumenus_lunar_calendar_month_table[2*gc_lunar_calendar_year + 1];

temp_leap_month = (temp_leap_month>>4)&0x0F;

if(gc_lunar_calendar_month == temp_leap_month)

{switch(gc_lunar_calendar_year)

{case 6,14,19,25,33,36,38,41,44,52,55,79,117,

136,147,150,155,158,185,193:

if(temp_total_day<31){gc_lunar_calendar_date = temp_total_day;

mc_tpumenus_temp_loop = 0;temp_flag = 0;}

else temp_total_day -= 30;

break; //current month:temp_leap_month

default:

if(temp_total_day < 30)

{gc_lunar_calendar_date = temp_total_day;mc_tpumenus_temp_loop = 0;

temp_flag = 0; }

else temp_total_day -= 29; break;}}

if(temp_flag){gc_lunar_calendar_month++;

if(gc_lunar_calendar_month == 13){gc_lunar_calendar_month = 1;

gc_lunar_calendar_year++;}

If(temp_total_day < 61) //if temp_total_day>60,ignore compare

{mc_tpumenus_temp_01 = calendar_calculate_lunar_month_total_day();

if(temp_total_day < (mc_tpumenus_temp_01 + 1))

{mc_tpumenus_temp_loop = 0;gc_lunar_calendar_date = temp_total_day;

} }

} } }

gc_lunar_leap_month = (temp_flag<<4)|temp_leap_month;

说明:函数calendar_calculate_lunar_month_total_day(void)根据输入变量gc_lunar_calendar_year和gc_lunar_calendar_month,结合压缩数据表lunar_calendar_month_table计算出对应阴历月的总的天数。[page]

unsigned char calendar_calculate_lunar_month_total_day(void)

{

unsigned char mc_tpumenus_temp_01;

unsigned char mc_tpumenus_temp_02;

if(gc_lunar_calendar_month < 9)

{mc_tpumenus_temp_01 = lunar_calendar_month_table[2*gc_lunar_calendar_year];

mc_tpumenus_temp_02 = gc_lunar_calendar_month - 1;}

else{

mc_tpumenus_temp_01 = lunar_calendar_month_table[2*gc_lunar_calendar_year + 1];

mc_tpumenus_temp_02 = gc_lunar_calendar_month - 9;}

if((mc_tpumenus_temp_01>> mc_tpumenus_temp_02)&0x01)return(29);

else return(30);}

阳历日和农历节气的对应关系

压缩节气数据表:

根据规律可以得到四个数据表(每个阳历月有两个节气,每个节气需要两个数据表):

const unsigned char calendar_solar_term_table_01[12][33] = {

{7,6,6,6,6,6,6,6,6,5,6,6,6,5,5,6,6,5,5,5,5,5,5,5,5,4,5,5}, //month 1

{5,4,5,5,5,4,4,5,5,4,4,4,4,4,4,4,4,3,4,4,4,3,3,4,4,3,3,3}, //2

{6,6,6,7,6,6,6,6,5,6,6,6,5,5,6,6,5,5,5,6,5,5,5,5,4,5,5,5,5}, //3

{5,5,6,6,5,5,5,6,5,5,5,5,4,5,5,5,4,4,5,5,4,4,4,5,4,4,4,4,5}, //4

{6,6,6,7,6,6,6,6,5,6,6,6,5,5,6,6,5,5,5,6,5,5,5,5,4,5,5,5,5}, //5

{6,6,7,7,6,6,6,7,6,6,6,6,5,6,6,6,5,5,6,6,5,5,5,6,5,5,5,5,4,5,5,5,5}, //6

{7,8,8,8,7,7,8,8,7,7,7,8,7,7,7,7,6,7,7,7,6,6,7,7,6,6,6,7,7}, //7

{8,8,8,9,8,8,8,8,7,8,8,8,7,7,8,8,7,7,7,8,7,7,7,7,6,7,7,7,6,6,7,7,7}, //8

{8,8,8,9,8,8,8,8,7,8,8,8,7,7,8,8,7,7,7,8,7,7,7,7,6,7,7,7,7}, //9

{9,9,9,9,8,9,9,9,8,8,9,9,8,8,8,9,8,8,8,8,7,8,8,8,7,7,8,8,8}, //10

{8,8,8,8,7,8,8,8,7,7,8,8,7,7,7,8,7,7,7,7,6,7,7,7,6,6,7,7,7}, //11

{7,8,8,8,7,7,8,8,7,7,7,8,7,7,7,7,6,7,7,7,6,6,7,7,6,6,6,7,7}, //12

}; //这个数据表表示了每个月第一个节气出现的规律

const unsigned char calendar_solar_term_year_01[12][9] = {

{13,49,85,117,149,185,201,250,250}, //month 1

{13,45,81,117,149,185,201,250,250}, //2

{13,48,84,112,148,184,200,201,250}, //3

{13,45,76,108,140,172,200,201,250}, //4

{13,44,72,104,132,168,200,201,250}, //5

{5 ,33,68,96 ,124,152,188,200,201}, //6

{29,57,85,120,148,176,200,201,250}, //7

{13,48,76,104,132,168,196,200,201}, //8

{25,60,88,120,148,184,200,201,250}, //9

{16,44,76,108,144,172,200,201,250}, //10

{28,60,92,124,160,192,200,201,250}, //11

{17,53,85,124,156,188,200,201,250}, //12

}; //这个数据表表示了每个月第一个节气出现规律对应的阳历年份范围

const unsigned char calendar_solar_term_table_02[12][29] = {

{21,21,21,21,21,20,21,21,21,20,20,21,21,20,20,20,20,20,20,20,20,19,20,20,20,19,19,20},

{20,19,19,20,20,19,19,19,19,19,19,19,19,18,19,19,19,18,18,19,19,18,18,18,18,18,18,18},

{21,21,21,22,21,21,21,21,20,21,21,21,20,20,21,21,20,20,20,21,20,20,20,20,19,20,20,20,20},

{20,21,21,21,20,20,21,21,20,20,20,21,20,20,20,20,19,20,20,20,19,19,20,20,19,19,19,20,20},

{21,22,22,22,21,21,22,22,21,21,21,22,21,21,21,21,20,21,21,21,20,20,21,21,20,20,20,21,21},

{22,22,22,22,21,22,22,22,21,21,22,22,21,21,21,22,21,21,21,21,20,21,21,21,20,20,21,21,21},

{23,23,24,24,23,23,23,24,23,23,23,23,22,23,23,23,22,22,23,23,22,22,22,23,22,22,22,22,23},

{23,24,24,24,23,23,24,24,23,23,23,24,23,23,23,23,22,23,23,23,22,22,23,23,22,22,22,23,23},

{23,24,24,24,23,23,24,24,23,23,23,24,23,23,23,23,22,23,23,23,22,22,23,23,22,22,22,23,23},

{24,24,24,24,23,24,24,24,23,23,24,24,23,23,23,24,23,23,23,23,22,23,23,23,22,22,23,23,23},

{23,23,23,23,22,23,23,23,22,22,23,23,22,22,22,23,22,22,22,22,21,22,22,22,21,21,22,22,22},

{22,22,23,23,22,22,22,23,22,22,22,22,21,22,22,22,21,21,22,22,21,21,21,22,21,21,21,21,22},

}; //这个数据表表示了每个月第二个节气出现的规律

const unsigned char calendar_solar_term_year_02[12][8] = {

{13,45,81,113,149,185,201},{21,57,93,125,161,193,201},{21,56,88,120,152,188,200,201},

{21,49,81,116,144,176,200,201},{17,49,77,112,140,168,200,201},

{28,60,88,116,148,180,200,201},{25,53,84,112,144,172,200,201},

{29,57,89,120,148,180,200,201},{17,45,73,108,140,168,200,201},

{28,60,92,124,160,192,200,201},{16,44,80,112,148,180,200,201},

{17,53,88,120,156,188,200,201},};

//这个数据表表示了每个月第二个节气出现规律对应的阳历年份范围

每个阳历月对应的两个农历节气出现的日期,可根据条件规律算法,分别由以下两个函数实现:

unsigned char calendar_calculate_solar_term_1(void)

{

zpage unsigned char done_index;

zpage unsigned char solar_term;

done_index = 0;

while(gc_solar_calendar_year >= calendar_solar_term_year_01[gc_solar_calendar_month - 1][done_index]) {done_index++;}

solar_term = calendar_solar_term_table_01[gc_solar_calendar_month - 1][4*done_index + gc_solar_calendar_year%4];

if((gc_solar_calendar_year == 121)&&(gc_solar_calendar_month == 4))solar_term = 5;

if((gc_solar_calendar_year == 132)&&(gc_solar_calendar_month == 4))solar_term = 5;

if((gc_solar_calendar_year == 194)&&(gc_solar_calendar_month == 6))solar_term = 6;

return(solar_term);

} //计算阳历月对应的第一个节气

unsigned char calendar_calculate_solar_term_2(void)

{

zpage unsigned char done_index;

zpage unsigned char solar_term;

done_index = 0;

while(gc_solar_calendar_year >= calendar_solar_term_year_02[gc_solar_calendar_month - 1][done_index]){done_index++;}

solar_term = calendar_solar_term_table_02[gc_solar_calendar_month - 1][4*done_index + gc_solar_calendar_year%4];

if((gc_solar_calendar_year == 171)&&(gc_solar_calendar_month == 3))solar_term = 21;

if((gc_solar_calendar_year == 181)&&(gc_solar_calendar_month == 5))solar_term = 21;

return(solar_term);

} //计算阳历月对应的第二个节气

以上就是万年历的完整算法。它首先计算出对应阳历月第一天对应是星期几,然后根据数据压缩算法确定,确定对应的阴历日期;而阴历节气,则有条件规律算法实现。

关键字:51系列  单片机  万年历  优化算法 引用地址:51系列单片机的一种万年历优化算法源程序

上一篇:89C52矩阵键盘的识别
下一篇:Philips增强型8051内核单片机的ISP简明操作步骤

推荐阅读最新更新时间:2024-03-16 14:41

基于51单片机的园艺温室智能监控系统设计
系统功能简介 本系统所要完成的任务如下: (1)人性化的设计。界限温度值及湿度能够由用户根据不同的需求输入并通过显示器显示,能够实时、准确的显示当前的温度值与湿度值。 (2)通过采集的温度值及湿度值,准确的判断预定值与当前值之间的差异,看是都符合预定值,及时的采取措施,使其到达设定的范围,若室内烟雾浓度过高时还会启动蜂鸣器报警装置,同时LED灯亮,从而达到提示的作用。 具体功能如下: 系统通过独立按键中的K1键选择改变最高温度、最低温度、最高湿度、最低湿度、烟雾浓度预定值,通过K2键调高设定的预定值,通过K3键调低设定的预定值。 当温度高于预定的最高值时,LED1灯亮,同时风扇工作;当温度低于预定的最低值时,LED2灯亮,
[单片机]
基于<font color='red'>51</font><font color='red'>单片机</font>的园艺温室智能监控系统设计
14.STC15W408AS单片机IIC驱动OLED
一、OLED显示屏 STC15W408AS单片机并没有提供IIC总线的接口,但是我们可以通过模拟IIC的方式实现。关于IIC总线的只是大家可以自行上网搜索。这里以驱动SSD1306芯片的0.96寸的128*64的OLED显示屏为例。下图为OLED的外观图。 二、SSD1306芯片的IIC时序图 这里我们需要看清楚START信号和STOP信号。关于时间,芯片的数据手册也有说明。 IIC数据传输格式 这个是芯片的数据传输格式。 2) The slave address is following the start condition for recognition use. For the SSD13
[单片机]
14.STC15W408AS<font color='red'>单片机</font>IIC驱动OLED
基于PIC单片机直流电压表的汇编程序分享
定义用户寄存器 WEI1EQUH’0C’;BIT0=MODS:选择模式位0:模式11:模式2 ;BIT1=BREK:断路判别位0:无断路1:有断路 ;BIT2= ;BIT3= ;BIT4= ;BIT5=慢响 ;BIT6=快响 ;BIT7=长响 WEI2EQUH’0D’;“百位值运算”的启始值 WEI3EQUH’0E’;“十位值运算”的启始值 WEI4EQUH’0F’;个位值 WEI5EQUH’10’;百位值 WEI6EQUH’11’;十位值 WEI7EQUH’12’; WEI8EQUH’13’; WEI9EQUH’14’; WEIAEQUH’15’; WEIBEQUH’16’ WEICEQUH’17’ WEIDEQUH’1
[单片机]
基于PIC<font color='red'>单片机</font>直流电压表的汇编程序分享
瑞萨电子推出内置2.5MB SRAM的SuperH微控制器
高级半导体解决方案的主要供应商瑞萨电子株式会社 (TSE: 6723,以下简称瑞萨电子)于2010年10月13日宣布推出两款新型32位微控制器(MCU)—— SH7268和SH7269。新产品在功能得到增强的同时,实现了针对采用彩色TFT-LCD的数字汽车音频、消费类电子和工业应用的小尺寸解决方案。 这些新型的MCU拥有以下优势:(1)大容量2.5 MB片上SRAM,是此前SH7266 MCU容量的二倍,在不采用任何外部RAM的情况下,能够显示WVGA分辨率的图片(800 × 480);(2)最大CPU工作频率增长了1.8倍(现在是266MHz),性能的提升能够处理额外的系统任务及数字音频信号处理;(3)增强型功能。如符
[单片机]
GD32F3系列Cortex®-M4 MCU荣获“2017年度产品奖”
集微网消息,GD32F3系列Cortex®-M4 MCU荣获《今日电子》杂志评选的 “2017年度产品奖”( "Product of the Year" Awards)。   《今日电子》的姊妹刊物Electronic Products是北美最具影响力的电子类刊物之一。自1977年起,Electronic Products杂志将年度产品奖授当年最杰出的电子产品。借由Electronic Products杂志三十余年的评选经验,根据三方面标准来评价、讨论并最终确定获奖名单。
[手机便携]
8051单片机的数据传输方式
单片机CPU与外部设备交换信息通常有如下几种方式:无条件传送方式,查询传送方式和中断传送方式。我们以单片机与微型打印机接口为例讲述这三种方式。假定用户要打印三个数据,这三个数据保存在单片机的内部数据存储器10H,11H,和12H中,8051用并口P2与微型打印机的并行数据口DB进行数据交换。 (1)无条件传送方式 这种数据传送方式中没有联络信号,即CPU总是认为打印机在如何时候都是处于“准备好”的状态。这种传送方式中只需要在程序中加入数据送往P2的指令,数据传送便可以实现。但这种数据传送方式有一个致命弱点,数据易丢失,这是因为CPU的速度相当快,而打印机的速度相对来说较慢,其结果是在打印机打印一个数据的时间内,CPU已
[单片机]
80<font color='red'>51</font><font color='red'>单片机</font>的数据传输方式
电子车速里程表的51单片机实现方案
1 概述 传统的汽车转速里程表的功能有两个,一是用指针指示汽车行驶的瞬时车速,二是用机械计数器记录汽车行驶的累计里程。现代汽车正向高速化方向发展,随着车速的提高,用软轴驱动的传统车速里程表受到前所未有的挑战,这是因为软轴在高速旋转时,由于受钢丝交变应力极限的限制而容易断裂,同时,软轴布置过长会出现形变过大或运动迟滞等现象,而且,对于不同的车型,转速里程表的安装位置也会受到软轴长度及弯曲度的限制。凡此种种,使得基于非接触式转速传感器的电子式转速里程表得以迅速发展。 2 里程累计实现原理 车速里程表的速比表示的是:车速里程表转轴(软轴)在汽车行驶一公里时所转过的转数。 基于单片机的车速里程表采用霍尔型非接触式转速传感器。这种车
[单片机]
电子车速里程表的<font color='red'>51</font><font color='red'>单片机</font>实现方案
PIC单片机SPI接口配置
一般所有单片机的SPI接口都需要配置以下几点内容(CPU作为SPI主模式): 1.引脚功能/方向配置:标准SPI接口由4根线组成,SCK,MISO(SDI),MOSI(SDO),SS(CS),其中SCK,MISO,MOSI都应设置成SPI功能,并且SCK和MOSI设置成输出引脚,MISO设置成输入引脚,SS引脚设置成普通GPIO功能,并且设置成输出。 2.SPI参数配置: (1)SPI的时钟频率设置,一般设置范围几K到几M不等,该频率决定SPI的时钟线和数据线的速率。 (2)SPI时钟极性 (3)SPI时钟相位(边沿) (4)数据宽度,一般选择8位或者16位 (5)位序,传输过程中是高位在前,还是低位在
[单片机]
PIC<font color='red'>单片机</font>SPI接口配置
小广播
添点儿料...
无论热点新闻、行业分析、技术干货……
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved