帖子列表

登录后发帖
STM32光线传感器 STM32单片机
光线传感器 LightSensor.c [code-start language=c] #include "stm32f10x.h" // Device header void LightSensor_init()...
STM32按键控制LED灯 STM32单片机
驱动 led.c [code-start language=c] #include "stm32f10x.h" // Device header void LED_init(void) { RCC_APB2P...
OLED显示歌词2 STM32单片机
main.c代码 [code-start language=c] #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h"...
OLED显示 STM32单片机
显示歌词 [code-start language=python] import re import os import math # ========== 固定路径 ========== FONT_FILE = r"C:\Users\1380...
蜂鸣器 STM32单片机
[code-start language=c] #include "stm32f10x.h" // Device header #include "Delay.h" int main(void) { RCC_APB...
STM32点灯 STM32单片机
基本模板 [code-start language=c] #include "stm32f10x.h" // Device header int main(void) { while(1) { } ...