Proteus8.9 VSM Studio Keil编译器仿真freeRTOS_STM32F103R6_系列11_lcd1602并口仿真代码和仿真操作实验
2021-11-18 09:15:28 1.09MB freeRTOS VSMStudio Keil stm32
1
Proteus8.9 VSM Studio Keil编译器仿真RtThreadSTD3.1.3_STM32F103R6_系列011_lcd1602并口仿真代码和仿真操作实验
2021-11-07 17:15:06 1.05MB RT-Thread Keil VSNStudio STM32
1
Proteus8.9 VSM Studio Keil编译器仿真freeRTOS_STM32F103R6_系列001_跑马灯仿真代码和仿真操作实验
2021-10-12 08:24:49 943KB freeRTOS VSMStudio Keil stm32
1
Proteus8.9 VSM Studio Keil编译器仿真STM32F103R6系列_023_ili9340 16BUS编程代码和仿真操作实验
2021-10-09 09:21:26 1.28MB Proteus Keil STM32 ILI9340
1
自己根据库函数新建的STM32F103R6工程模板,网上找了很久都没有找到合适的,新手小白自己尝试新建了一份,编译无错误,无警告,利用Proteus 8 与板子验证效果正常,欢迎大家交流。
1
Proteus8.9 VSM Studio Keil编译器仿真UCOSII_STM32F103R6_系列11_lcd1602并口仿真代码和仿真操作实验
2021-07-05 15:06:59 1.05MB UCOSII VSMStudio stm32 keil
1
Proteus8.9 VSM Studio Keil编译器仿真UCOSII_STM32F103R6_系列001__01_跑马灯仿真代码和仿真操作实验
2021-05-25 17:00:09 896KB UCOSII VSMStudio Keil stm32
1
m32f103r6仿真计数器程序+Proteus 单片机源程序如下: #include "stm32f10x.h" #include "Delay.h" #include "smg.h" #include "sys.h" #include "timer.h" #include "led.h" #include "fmq.h" #include "key.h" #include "stm32f10x_tim.h" uint16_t table[] = { /* 0, 1, 2, 3, 4, 5, 6, 7, 8, */ 0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07, 0x7F, /* 9, A, B, C, D, E, F, ., none */ 0x6F, 0x77, 0x7C, 0x39, 0x5E, 0x79, 0x71, 0x80, 0x00 }; uint16_t t; uint16_t num[3],inc = 0x00; int main(void) { SMG_Init(); GPIO_Write(GPIOA, 0x3f3f); GPIO_Write(GPIOB, 0xff3f); while (1) { t=KEY_Scan_KEY_INC(); //得到键值 if(t) //if(条件)t!=0真 { inc++; if(inc <= 0xff) { num[2]=inc%10; num[1]=inc/10%10; num[0]=inc/100; GPIO_Write(GPIOB,((~inc) <<8) + table[num[2]]); GPIO_Write(GPIOA,(table[num[1]] <<8) + table[num[0]]); } else { inc = 0xff; } } } }
2021-05-14 09:35:41 6.32MB stm32f103r6 Proteus led计数器
1
使用STM32中的SPI总线,连接一个LCD显示屏IL9341和一个温度传感器(TC77/TC72)二选一。在LCD显示屏上显示测量出的温度值,温度变化时,屏幕的温度显示随之变化
2021-05-11 14:01:49 9.03MB TC77+ILI9341
1
资源清单:proteus电路图;keil工程代码 功能:利用按键和一个4位LED数码管实现数字电压表设计。要求通过按键实现量程变换。对一路0—5V电压进行测量,并把结果显示在LED数码管上。 软件版本:keil 5;proteus8.9 芯片型号:STM32F103R6
2021-05-01 10:52:03 5.65MB stm32 嵌入式
1