# light **Repository Path**: wqkuang/light ## Basic Information - **Project Name**: light - **Description**: 一点五编程up主的《第一人称视角,从0开始用C实现接口》课堂代码。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-01-22 - **Last Updated**: 2025-05-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 从0开始用C实现LED接口 该项目来自 **一点五编程** _《第一人称视角,从0开始用C实现接口》_ 展示了 LED驱动程序**分层设计** ## 项目架构 ```mermaid graph TD A1((light)) --I/O-bus--> B1(io_led) A1 -- other --> B2(lsd) A1 --i2c-bus--> B3(iic_led) B1 -- MCU stm32--> C1[io_led_stm32] B3 -- MCU stm32--> C2[iic_led_stm32] ``` ## build project ```sh mkdir build cd build cmake .. make ```